NETStandard.Library.targets 1.2 KB

1234567891011121314151617181920212223
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <NETStandardLibraryPackageVersion>2.0.0</NETStandardLibraryPackageVersion>
  4. </PropertyGroup>
  5. <ItemGroup>
  6. <Reference Condition="'$(_NetStandardLibraryRefPath)' != ''" Include="$(_NetStandardLibraryRefPath)*.dll">
  7. <!-- Private = false to make these reference only -->
  8. <Private>false</Private>
  9. <!-- hide these from Assemblies view in Solution Explorer, they will be shown under packages -->
  10. <Visible>false</Visible>
  11. <Facade Condition="'%(FileName)' != 'netstandard'">true</Facade>
  12. <NuGetPackageId>NETStandard.Library</NuGetPackageId>
  13. <NuGetPackageVersion>$(NETStandardLibraryPackageVersion)</NuGetPackageVersion>
  14. </Reference>
  15. <ReferenceCopyLocalPaths Condition="'$(_NetStandardLibraryLibPath)' != ''" Include="$(_NetStandardLibraryLibPath)*.dll">
  16. <Private>false</Private>
  17. <Facade Condition="'%(FileName)' != 'netstandard'">true</Facade>
  18. <NuGetPackageId>NETStandard.Library</NuGetPackageId>
  19. <NuGetPackageVersion>$(NETStandardLibraryPackageVersion)</NuGetPackageVersion>
  20. </ReferenceCopyLocalPaths>
  21. </ItemGroup>
  22. </Project>