-
Notifications
You must be signed in to change notification settings - Fork 0
/
FGH3ChartBrowser.csproj
37 lines (31 loc) · 1.02 KB
/
FGH3ChartBrowser.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<PackageIcon>icon.png</PackageIcon>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<AssemblyVersion>1.2.2</AssemblyVersion>
<FileVersion>1.2.2</FileVersion>
<Configurations>Debug;Release</Configurations>
<Version>$(VersionPrefix)1.2.2</Version>
</PropertyGroup>
<ItemGroup>
<None Remove="icon.png" />
</ItemGroup>
<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.Ini" Version="9.0.0" />
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
</ItemGroup>
<ItemGroup>
<Resource Include="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</Resource>
</ItemGroup>
</Project>