aspnetcore/test/TestAssets/Directory.Build.props

12 lines
655 B
XML

<Project>
<!-- Skip the parent directory so test asset projects don't get xunit and other test package references. -->
<Import Project="..\..\Directory.Build.props" />
<PropertyGroup>
<DeveloperBuildTestAssetTfms>netcoreapp2.2</DeveloperBuildTestAssetTfms>
<StandardTestAssetTfms>$(DeveloperBuildTestAssetTfms)</StandardTestAssetTfms>
<StandardTestAssetTfms Condition=" '$(DeveloperBuild)' != 'true' ">$(StandardTestAssetTfms)</StandardTestAssetTfms>
<StandardTestAssetTfms Condition=" '$(DeveloperBuild)' != 'true' AND '$(OS)' == 'Windows_NT' ">$(StandardTestAssetTfms);net461</StandardTestAssetTfms>
</PropertyGroup>
</Project>