-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathICOforge.csproj
More file actions
43 lines (36 loc) · 1.42 KB
/
ICOforge.csproj
File metadata and controls
43 lines (36 loc) · 1.42 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<Version>1.5.0</Version>
<UseWPF>true</UseWPF>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<ApplicationIcon>assets\icons\icoforge.ico</ApplicationIcon>
<Platforms>x64</Platforms>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WindowsForms" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="Svg.Skia" Version="3.2.1" />
<PackageReference Include="WPF-UI" Version="4.0.3" />
<PackageReference Include="System.Text.Json" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="assets\icons\icoforge.ico" />
<Resource Include="assets\fonts\SourceCodePro-Regular.ttf" />
<Resource Include="assets\icons\paint-bucket.png" />
</ItemGroup>
<ItemGroup>
<Content Include="tools\oxipng.exe">
<Link>oxipng.exe</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="assets\favicon_template.html" />
</ItemGroup>
</Project>