-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVDFparse.csproj
30 lines (22 loc) · 912 Bytes
/
VDFparse.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>VDFparse</Product>
<Description>Convert binary Steam .vdf files to JSON</Description>
<Version>4.2</Version>
<Authors>Simon Sawicki (Grub4K)</Authors>
<Copyright>Copyright (c) 2021-2024 Simon Sawicki</Copyright>
<TargetFramework>net8</TargetFramework>
<LangVersion>latest</LangVersion>
<OutputType>Exe</OutputType>
<AnalysisMode>Recommended</AnalysisMode>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Deterministic>true</Deterministic>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Commandline" Version="[2.0.0-beta4.22272.1,]" />
</ItemGroup>
</Project>