32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Drawing" />
|
|
<Reference Include="System.Windows.Forms" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.*" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Label="Kit">
|
|
<Kit>$([System.Convert]::ToBoolean(true))</Kit>
|
|
<Bin />
|
|
<Bin Condition="Exists('..\..\..\Bin')">..\..\..\Bin</Bin>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition="$(Kit)" Label="Kit References">
|
|
<Reference Include="HLAPI">
|
|
<HintPath>$(Bin)\HLAPI.dll</HintPath>
|
|
</Reference>
|
|
<Compile Include="..\..\Common\ProgramInput.cs" />
|
|
</ItemGroup>
|
|
</Project> |