NETStandard.Library.targets 655 B

123456789101112
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <!-- Only add references if we're actually targeting .NETStandard.
  3. If the project is targeting some other TFM that is compatible with NETStandard we expect
  4. that framework to provide all references for NETStandard, mscorlib, System.* in their own
  5. targeting pack / SDK. -->
  6. <PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETStandard'">
  7. <_NetStandardLibraryRefPath>$(MSBuildThisFileDirectory)\ref\</_NetStandardLibraryRefPath>
  8. </PropertyGroup>
  9. <!-- import the TFM-agnostic targets -->
  10. <Import Project="..\$(MSBuildThisFile)"/>
  11. </Project>