22 lines
619 B
XML
22 lines
619 B
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<BaseIntermediateOutputPath>.net/obj</BaseIntermediateOutputPath>
|
|
<BaseOutputPath>.net/bin</BaseOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
|
|
<!-- aspnet/BuildTools#662 Don't police what version of NetCoreApp we use -->
|
|
<NETCoreAppMaximumVersion>99.9</NETCoreAppMaximumVersion>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
</Project>
|