forked from ManifestHub/ManifestHub
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathManifestHub.csproj
39 lines (31 loc) · 1.11 KB
/
ManifestHub.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1"/>
<PackageReference Include="Gameloop.Vdf" Version="0.6.2"/>
<PackageReference Include="LibGit2Sharp" Version="0.30.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
</ItemGroup>
<ItemGroup>
<Content Include=".github\workflows\download.yml" />
<Content Include=".github\workflows\dynamic.yml" />
</ItemGroup>
<ItemGroup>
<Compile Remove="SteamKit\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="SteamKit\**" />
</ItemGroup>
<ItemGroup>
<None Remove="SteamKit\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="SteamKit\SteamKit2\SteamKit2\SteamKit2.csproj" />
</ItemGroup>
</Project>