|
|
@ -221,6 +221,20 @@ |
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_WINDOWS_RUNTIME</DefineConstants> |
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_WINDOWS_RUNTIME</DefineConstants> |
|
|
</PropertyGroup> |
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
|
|
<!-- |
|
|
|
|
|
Note: Entity Framework Core 2.x references System.Interactive.Async 3.x, that includes |
|
|
|
|
|
its own IAsyncEnumerable. To work around collisions between this type and the new type |
|
|
|
|
|
now included in the BCL (System.Runtime), an alias is added to System.Interactive.Async. |
|
|
|
|
|
--> |
|
|
|
|
|
|
|
|
|
|
|
<Target Name="AddAssemblyAliasToReactiveAsync" AfterTargets="ResolveAssemblyReferences"> |
|
|
|
|
|
<ItemGroup> |
|
|
|
|
|
<ReferencePath Condition=" '%(FileName)' == 'System.Interactive.Async' "> |
|
|
|
|
|
<Aliases>reactive</Aliases> |
|
|
|
|
|
</ReferencePath> |
|
|
|
|
|
</ItemGroup> |
|
|
|
|
|
</Target> |
|
|
|
|
|
|
|
|
<!-- |
|
|
<!-- |
|
|
Note: metapackages don't include any build output. To ensure the TFM-specific folders under |
|
|
Note: metapackages don't include any build output. To ensure the TFM-specific folders under |
|
|
/lib are preserved, a placeholder file is added for each supported target framework moniker. |
|
|
/lib are preserved, a placeholder file is added for each supported target framework moniker. |
|
|
|