-
Notifications
You must be signed in to change notification settings - Fork 0
/
GW2_Legendaries.csproj
49 lines (40 loc) · 1.28 KB
/
GW2_Legendaries.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<ApplicationIcon>GW21.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Compile Remove="ViewModel\ItemsListPageVM.cs" />
<Compile Remove="View\ItemsListPage.xaml.cs" />
</ItemGroup>
<ItemGroup>
<None Remove="bg.jpg" />
<None Remove="logo.png" />
<None Remove="Resources\Data\Items.json" />
<None Remove="Resources\Data\LegendaryItemsList" />
<None Remove="View\bg.jpg" />
<None Remove="View\logo.png" />
</ItemGroup>
<ItemGroup>
<Page Remove="View\ItemsListPage.xaml" />
</ItemGroup>
<ItemGroup>
<Content Include="GW21.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Data\Items.json" />
<EmbeddedResource Include="Resources\Data\LegendaryItemsList" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
<ItemGroup>
<Resource Include="View\bg.jpg" />
<Resource Include="View\logo.png" />
</ItemGroup>
</Project>