-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGameFinder.Example.csproj
37 lines (31 loc) · 1.74 KB
/
GameFinder.Example.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>
<!-- Enabling trimming disables COM, which is required for WMI -->
<PublishTrimmed>false</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\GameFinder.Launcher.Heroic\GameFinder.Launcher.Heroic.csproj" />
<ProjectReference Include="..\..\src\GameFinder.StoreHandlers.EGS\GameFinder.StoreHandlers.EGS.csproj" />
<ProjectReference Include="..\..\src\GameFinder.StoreHandlers.GOG\GameFinder.StoreHandlers.GOG.csproj" />
<ProjectReference Include="..\..\src\GameFinder.StoreHandlers.Origin\GameFinder.StoreHandlers.Origin.csproj" />
<ProjectReference Include="..\..\src\GameFinder.StoreHandlers.Steam\GameFinder.StoreHandlers.Steam.csproj" />
<ProjectReference Include="..\..\src\GameFinder.StoreHandlers.Xbox\GameFinder.StoreHandlers.Xbox.csproj" />
<ProjectReference Include="..\..\src\GameFinder.Wine\GameFinder.Wine.csproj" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\GameFinder.StoreHandlers.EADesktop\GameFinder.StoreHandlers.EADesktop.csproj" />
<TrimmerRootAssembly Include="GameFinder.StoreHandlers.EADesktop" />
<TrimmerRootAssembly Include="System.Management" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" />
<TrimmerRootAssembly Include="CommandLine" />
<PackageReference Include="NLog" />
<TrimmerRootAssembly Include="NLog" />
<PackageReference Include="NLog.Extensions.Logging" />
<TrimmerRootAssembly Include="NLog.Extensions.Logging" />
</ItemGroup>
<ItemGroup>
<TrimmerRootDescriptor Include="GameFinderRoots.xml" />
</ItemGroup>
</Project>