19 lines
605 B
XML
19 lines
605 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<RootNamespace>BeatSaber_Versions</RootNamespace>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Platforms>AnyCPU;x86</Platforms>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Gameloop.Vdf" Version="0.6.2" />
|
|
<PackageReference Include="YamlDotNet" Version="11.2.1" />
|
|
</ItemGroup>
|
|
|
|
</Project> |