-
Notifications
You must be signed in to change notification settings - Fork 143
/
hygge-imaotai.csproj
71 lines (63 loc) · 2.52 KB
/
hygge-imaotai.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<RootNamespace>hygge_imaotai</RootNamespace>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<StartupObject>hygge_imaotai.App</StartupObject>
<AllowedReferenceRelatedFileExtensions>.allowedextension</AllowedReferenceRelatedFileExtensions>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Page\**" />
<EmbeddedResource Remove="Page\**" />
<None Remove="Page\**" />
<Page Remove="Page\**" />
</ItemGroup>
<ItemGroup>
<None Remove="favicon.ico" />
<None Remove="Resources\Chartridge046_small.jpg" />
<None Remove="Resources\Contact.png" />
<None Remove="Resources\favicon.ico" />
<None Remove="Resources\ms-icon-310x310.png" />
<None Remove="Resources\ProfilePic.jpg" />
</ItemGroup>
<ItemGroup>
<COMReference Include="{d37e2a3e-8545-3a39-9f4f-31827c9124ab}">
<WrapperTool>tlbimp</WrapperTool>
<VersionMinor>4</VersionMinor>
<VersionMajor>2</VersionMajor>
<Guid>d37e2a3e-8545-3a39-9f4f-31827c9124ab</Guid>
</COMReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Flurl" Version="3.0.7" />
<PackageReference Include="Flurl.Http" Version="3.2.4" />
<PackageReference Include="FreeSql" Version="3.2.698" />
<PackageReference Include="FreeSql.Provider.Sqlite" Version="3.2.698" />
<PackageReference Include="Hardcodet.NotifyIcon.Wpf" Version="1.1.0" />
<PackageReference Include="MaterialDesignThemes" Version="4.9.0" />
<PackageReference Include="NLog" Version="5.2.2" />
<PackageReference Include="Quartz" Version="3.6.3" />
</ItemGroup>
<ItemGroup>
<Resource Include="favicon.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\Chartridge046_small.jpg" />
<Resource Include="Resources\Contact.png" />
<Resource Include="Resources\favicon.ico" />
<Resource Include="Resources\ms-icon-310x310.png" />
<Resource Include="Resources\ProfilePic.jpg" />
</ItemGroup>
<ItemGroup>
<None Update="nlog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>