14 lines
358 B
XML
14 lines
358 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework Condition=" '$(IsCentos)' == '' ">net8.0</TargetFramework>
|
|
<TargetFramework Condition=" '$(IsCentos)' != '' ">net7.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|