Skip to content

Commit

Permalink
Merge pull request #937 from dotnet/fix-define
Browse files Browse the repository at this point in the history
Add .NET Standard 2.0 defines
  • Loading branch information
Oren Novotny authored Jun 14, 2019
2 parents b1dd092 + 1510f20 commit d71e2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ix.NET/Source/Directory.build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PropertyGroup Condition="'$(TargetFramework)' == 'net46' or '$(TargetFramework)' == 'net461'">
<DefineConstants>$(DefineConstants);USE_ASYNC_ITERATOR</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0' or '$(TargetFramework)' == 'netstandard2.1'">
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0' or '$(TargetFramework)' == 'netstandard2.1' or '$(TargetFramework)' == 'netstandard2.0'">
<DefineConstants>$(DefineConstants);USE_ASYNC_ITERATOR;HAS_ASYNCENUMERABLE;HAS_ASYNCDISPOSABLE;BCL_HAS_CONFIGUREAWAIT;HAS_VALUETUPLE</DefineConstants>
</PropertyGroup>

Expand Down

0 comments on commit d71e2b2

Please sign in to comment.