Directory.Build.targets 777 B

1234567891011
  1. <Project>
  2. <PropertyGroup>
  3. <RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.1' ">$(MicrosoftNETCoreApp21PackageVersion)</RuntimeFrameworkVersion>
  4. <RuntimeFrameworkVersion Condition=" '$(TargetFramework)' == 'netcoreapp2.2' ">$(MicrosoftNETCoreApp22PackageVersion)</RuntimeFrameworkVersion>
  5. <NETStandardImplicitPackageVersion Condition=" '$(TargetFramework)' == 'netstandard2.0' ">$(NETStandardLibrary20PackageVersion)</NETStandardImplicitPackageVersion>
  6. <!-- aspnet/BuildTools#662 Don't police what version of NetCoreApp we use -->
  7. <NETCoreAppMaximumVersion>99.9</NETCoreAppMaximumVersion>
  8. </PropertyGroup>
  9. <Import Project="eng\targets\Wix.Common.targets" Condition="'$(MSBuildProjectExtension)' == '.wixproj'" />
  10. </Project>