Fix building on non-AppVeyor machines without breaking AppVeyor
hopefully
This commit is contained in:
parent
ec61aad159
commit
a060c4e600
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"sdk": {
|
||||
"version": "3.1.100",
|
||||
"version": "5.0.100",
|
||||
"rollForward": "latestFeature"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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" />
|
||||
|
|
Loading…
Reference in New Issue