Skip to content

Commit

Permalink
Provide .NET Standard facades as seperate lists of ref and runtime as…
Browse files Browse the repository at this point in the history
…semblies
  • Loading branch information
dsplaisted committed Sep 27, 2017
1 parent ce15281 commit d065d44
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,14 @@ Copyright (c) .NET Foundation. All rights reserved.
targets. -->
<Reference Remove="%(_NETStandardLibraryNETFrameworkLib.FileName)" />

<Reference Include="@(_NETStandardLibraryNETFrameworkLib)">
<!-- netfx.force.conflicts is only needed at compile time. -->
<Private Condition="'%(FileName)' == 'netfx.force.conflicts'">false</Private>
<Reference Include="@(_NETStandardLibraryNETFrameworkLib.FileName)">
<HintPath>%(_NETStandardLibraryNETFrameworkLib.Identity)</HintPath>
<Private>false</Private>
</Reference>
<!-- netfx.force.conflicts is only needed at compile time. -->
<ReferenceCopyLocalPaths Include="@(_NETStandardLibraryNETFrameworkLib)" Condition="'%(FileName)' != 'netfx.force.conflicts'">
<Private>false</Private>
</ReferenceCopyLocalPaths>
</ItemGroup>
</Target>
</Project>

0 comments on commit d065d44

Please sign in to comment.