-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSic.csproj
More file actions
68 lines (62 loc) · 3.14 KB
/
Copy pathSic.csproj
File metadata and controls
68 lines (62 loc) · 3.14 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>x64</Platforms>
<Platform>x64</Platform>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<SatelliteResourceLanguages>en;fr;de;uk;ru</SatelliteResourceLanguages>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<AnalysisLevel>latest</AnalysisLevel>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<Product>SIC!</Product>
<Description>SIC! — Simple Image Converter</Description>
<Company>Oire Software</Company>
<Copyright>Copyright © 2026 Oire Software SARL.</Copyright>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<ApplicationIcon>sic.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DebugSymbols>false</DebugSymbols>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GetText.NET.WindowsForms" Version="10.0.1" NoWarn="NU1701" />
<PackageReference Include="Magick.NET-Q16-x64" Version="14.14.0" />
<PackageReference Include="GitVersion.MsBuild" Version="6.7.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="NetSparkleUpdater.SparkleUpdater" Version="3.1.0" />
<PackageReference Include="NetSparkleUpdater.UI.WinForms.NetCore" Version="3.1.0" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="Serilog.Formatting.Compact" Version="3.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="GetText.NET" Version="10.0.1" />
<PackageReference Include="System.CommandLine" Version="2.0.9" />
<PackageReference Include="sharpconfig-huanlin" Version="4.2.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="5.3.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.301" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Update="locale\**\*.mo">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="help\**\*.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="help\logo.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>