-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGameLib.Demo.Wpf.csproj
105 lines (96 loc) · 4.75 KB
/
GameLib.Demo.Wpf.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<ApplicationIcon>Resources\icon.ico</ApplicationIcon>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1293.44" />
<PackageReference Include="WpfAnimatedGif" Version="2.0.2" />
</ItemGroup>
<!--
// Temporary bug fix for duplicating code from source code generators in .NET 6.0 (MVVM Toolkit)
// (https://github.com/dotnet/core/blob/main/release-notes/6.0/known-issues.md#issues-building-wpf-application-with-windows-desktop-607-and-608)
-->
<Target Name="RemoveDuplicateAnalyzers" BeforeTargets="CoreCompile">
<ItemGroup>
<FilteredAnalyzer Include="@(Analyzer->Distinct())" />
<Analyzer Remove="@(Analyzer)" />
<Analyzer Include="@(FilteredAnalyzer)" />
</ItemGroup>
</Target>
<ItemGroup>
<None Remove="Resources\about-black.png" />
<None Remove="Resources\about-white.png" />
<None Remove="Resources\check-color.png" />
<None Remove="Resources\contribute-black.png" />
<None Remove="Resources\contribute-white.png" />
<None Remove="Resources\copy-black.png" />
<None Remove="Resources\copy-white.png" />
<None Remove="Resources\cross-color.png" />
<None Remove="Resources\game-black.png" />
<None Remove="Resources\game-white.png" />
<None Remove="Resources\GameLibNET-Logo-64px.png" />
<None Remove="Resources\github-black.png" />
<None Remove="Resources\github-white.png" />
<None Remove="Resources\home-black.png" />
<None Remove="Resources\home-white.png" />
<None Remove="Resources\icon.ico" />
<None Remove="Resources\launcher-black.png" />
<None Remove="Resources\launcher-white.png" />
<None Remove="Resources\navigation-drawer-black.png" />
<None Remove="Resources\navigation-drawer-white.png" />
<None Remove="Resources\open-black.png" />
<None Remove="Resources\open-white.png" />
<None Remove="Resources\play-black.png" />
<None Remove="Resources\play-white.png" />
<None Remove="Resources\refresh-black.png" />
<None Remove="Resources\refresh-white.png" />
<None Remove="Resources\spinner-white.gif" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\GameLib.Plugin\GameLib.Plugin.RiotGames\GameLib.Plugin.RiotGames.csproj" />
<ProjectReference Include="..\..\GameLib\GameLib.csproj" />
<ProjectReference Include="..\..\GameLib.Plugin\GameLib.Plugin.BattleNet\GameLib.Plugin.BattleNet.csproj" />
<ProjectReference Include="..\..\GameLib.Plugin\GameLib.Plugin.Epic\GameLib.Plugin.Epic.csproj" />
<ProjectReference Include="..\..\GameLib.Plugin\GameLib.Plugin.Gog\GameLib.Plugin.Gog.csproj" />
<ProjectReference Include="..\..\GameLib.Plugin\GameLib.Plugin.Origin\GameLib.Plugin.Origin.csproj" />
<ProjectReference Include="..\..\GameLib.Plugin\GameLib.Plugin.Rockstar\GameLib.Plugin.Rockstar.csproj" />
<ProjectReference Include="..\..\GameLib.Plugin\GameLib.Plugin.Steam\GameLib.Plugin.Steam.csproj" />
<ProjectReference Include="..\..\GameLib.Plugin\GameLib.Plugin.Ubisoft\GameLib.Plugin.Ubisoft.csproj" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\about-black.png" />
<Resource Include="Resources\about-white.png" />
<Resource Include="Resources\check-color.png" />
<Resource Include="Resources\contribute-black.png" />
<Resource Include="Resources\contribute-white.png" />
<Resource Include="Resources\copy-black.png" />
<Resource Include="Resources\copy-white.png" />
<Resource Include="Resources\cross-color.png" />
<Resource Include="Resources\game-black.png" />
<Resource Include="Resources\game-white.png" />
<Resource Include="Resources\GameLibNET-Logo-64px.png" />
<Resource Include="Resources\github-black.png" />
<Resource Include="Resources\github-white.png" />
<Resource Include="Resources\home-black.png" />
<Resource Include="Resources\home-white.png" />
<Resource Include="Resources\icon.ico" />
<Resource Include="Resources\launcher-black.png" />
<Resource Include="Resources\launcher-white.png" />
<Resource Include="Resources\navigation-drawer-black.png" />
<Resource Include="Resources\navigation-drawer-white.png" />
<Resource Include="Resources\open-black.png" />
<Resource Include="Resources\open-white.png" />
<Resource Include="Resources\play-black.png" />
<Resource Include="Resources\play-white.png" />
<Resource Include="Resources\refresh-black.png" />
<Resource Include="Resources\refresh-white.png" />
<Resource Include="Resources\spinner-white.gif" />
</ItemGroup>
</Project>