Fix building on non-AppVeyor machines without breaking AppVeyor

hopefully
This commit is contained in:
YoshiRulz 2020-12-04 06:12:01 +10:00
parent ec61aad159
commit a060c4e600
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"sdk": {
"version": "3.1.100",
"version": "5.0.100",
"rollForward": "latestFeature"
}
}

View File

@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework Condition=" '$(APPVEYOR)' == '' ">net5.0</TargetFramework>
<TargetFramework Condition=" '$(APPVEYOR)' != '' ">netcoreapp3.1</TargetFramework>
</PropertyGroup>
<Import Project="../MainSlnCommon.props" />
<Import Project="../../CommonNullable.props" />