This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
FrostyFix5.csproj
50 lines (42 loc) · 1.58 KB
/
FrostyFix5.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
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>disable</Nullable>
<UseWPF>true</UseWPF>
<StartupObject>FrostyFix.App</StartupObject>
<ApplicationIcon>Resources\FrostyFix.ico</ApplicationIcon>
<AssemblyName>FrostyFix</AssemblyName>
<Version>5.3.0</Version>
<Copyright>Copyright © 2022 Dyvinia</Copyright>
<Company>Dyvinia</Company>
<WeaverConfiguration>
<Weavers>
<PropertyChanged />
</Weavers>
</WeaverConfiguration>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="Fonts\GillSansNova-Bold.ttf" />
<None Remove="Fonts\GillSansNova-Book.ttf" />
<None Remove="Fonts\GillSansNova-CnBold.ttf" />
<None Remove="Fonts\GillSansNova-SemiBold.ttf" />
<None Remove="Fonts\GillSansNovaInline-Bold.ttf" />
<None Remove="Resources\FrostyFixNB.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Fonts\GillSansNova-Bold.ttf" />
<Resource Include="Fonts\GillSansNova-Book.ttf" />
<Resource Include="Fonts\GillSansNova-CnBold.ttf" />
<Resource Include="Fonts\GillSansNova-SemiBold.ttf" />
<Resource Include="Fonts\GillSansNovaInline-Bold.ttf" />
<Resource Include="Resources\FrostyFix.ico" />
<Resource Include="Resources\FrostyFixNB.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Gapotchenko.FX.Diagnostics.Process" Version="2022.2.7" />
<PackageReference Include="PropertyChanged.Fody" Version="3.4.1" />
</ItemGroup>
</Project>