Simplify global properties passed to run SDK tests

This commit is contained in:
Daniel Plaisted 2019-04-17 14:30:42 -07:00
parent ee7bc290b7
commit b1b0b43d4f

View file

@ -93,12 +93,14 @@
<MSBuild Projects="$(MSBuildProjectFullPath)"
Targets="RunTestsAsTool"
Properties="ToolCommandName=testSdk%(SdkTest.Identity);TestProjectName=Microsoft.NET.%(SdkTest.Identity).Tests"
Properties="ToolTestName=%(SdkTest.Identity)"
BuildInParallel="true"/>
</Target>
<Target Name="RunTestsAsTool">
<PropertyGroup>
<ToolCommandName>testSdk$(ToolTestName)</ToolCommandName>
<TestProjectName>Microsoft.NET.$(ToolTestName).Tests</TestProjectName>
<TestLocalToolFolder>$(ArtifactsTmpDir)$(ToolCommandName)\</TestLocalToolFolder>
</PropertyGroup>