Skip to content

Commit

Permalink
Support .NET Core App 3.1 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali Bahrami committed Mar 11, 2020
1 parent 18f1482 commit 0a6cce0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@
<Platforms>AnyCPU</Platforms>
</PropertyGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0'">
<DefineConstants>$(DefineConstants);CORE</DefineConstants>
<RuntimeFrameworkVersion>2.0.5</RuntimeFrameworkVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp3.1'">
<DefineConstants>$(DefineConstants);CORE</DefineConstants>
<RuntimeFrameworkVersion>3.1.2</RuntimeFrameworkVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'MonoRelease' ">
<DefineConstants>$(DefineConstants);MONO</DefineConstants>
</PropertyGroup>
Expand Down

0 comments on commit 0a6cce0

Please sign in to comment.