-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPostExporter.csproj
More file actions
70 lines (65 loc) · 3.08 KB
/
Copy pathPostExporter.csproj
File metadata and controls
70 lines (65 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<TargetFramework>net9.0-windows</TargetFramework>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishTrimmed>false</PublishTrimmed>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<VersionPrefix>2.19.0.0</VersionPrefix>
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
<LangVersion>default</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0" />
<PackageReference Include="FontAwesome6.Svg" Version="2.5.1" />
<PackageReference Include="HtmlAgilityPack" Version="1.12.3" />
<PackageReference Include="HtmlToOpenXml.dll" Version="3.2.7" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.2" />
<PackageReference Include="Meziantou.Framework.Win32.CredentialManager" Version="1.7.6" />
<PackageReference Include="Sentry" Version="5.15.1" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Resources\Localization\Resources.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Resources\Localization\Resources.de.resx">
<Generator>PublicResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.de.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="Resources\Localization\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Update="Resources\Localization\Resources.de.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.de.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.9" />
<None Remove="Resources\splash-screen-logo.png" />
<SplashScreen Include="Resources\splash-screen-logo.png" />
<None Remove="Resources\icon.ico" />
<Resource Include="Resources\icon.ico">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<None Remove="Resources\Images\flag-german.png" />
<Resource Include="Resources\Images\flag-german.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<None Remove="Resources\Images\flag-united-kingdom.png" />
<Resource Include="Resources\Images\flag-united-kingdom.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
</Project>