29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<OutputType>Exe</OutputType>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Data" />
|
|
<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> |