25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<Project>
|
|
<PropertyGroup>
|
|
<SolutionDirectory Condition="'$(SolutionDirectory)'==''">$(MSBuildThisFileDirectory)..\</SolutionDirectory>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(SolutionDirectory)Directory.Build.props" />
|
|
|
|
<PropertyGroup>
|
|
<DeveloperBuildTestAppTfms>netcoreapp2.2</DeveloperBuildTestAppTfms>
|
|
<StandardTestAppTfms>$(DeveloperBuildTestAppTfms)</StandardTestAppTfms>
|
|
<StandardTestAppTfms Condition=" '$(DeveloperBuild)' != 'true' ">netcoreapp2.2;netcoreapp2.0</StandardTestAppTfms>
|
|
<StandardTestAppTfms Condition=" '$(DeveloperBuild)' != 'true' AND '$(OS)' == 'Windows_NT' ">$(StandardTestAppTfms);net461</StandardTestAppTfms>
|
|
|
|
<!-- Bug in SelfHostDeployer prevents desktop applications from being published without a rid. -->
|
|
<RuntimeIdentifier Condition="'$(TargetFramework)' == 'net461'">win7-x64</RuntimeIdentifier>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!-- Override some repo-level properties not required for tests. -->
|
|
<Version>1.0.0</Version>
|
|
<SignAssembly>false</SignAssembly>
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">false</PublicSign>
|
|
</PropertyGroup>
|
|
</Project>
|