Don't batch SDK test projects or continue on error

This commit is contained in:
Daniel Plaisted 2019-05-20 16:21:14 -07:00
parent 9795567194
commit 50f3eff571

View file

@ -160,11 +160,15 @@
<SdkTest Include="$(ToolTestName)" /> <SdkTest Include="$(ToolTestName)" />
</ItemGroup> </ItemGroup>
<MSBuild Projects="$(MSBuildProjectFullPath)" <ItemGroup>
<TestProjectToRun Include="$(MSBuildProjectFullPath)">
<AdditionalProperties>ToolTestName=%(SdkTest.Identity)</AdditionalProperties>
</TestProjectToRun>
</ItemGroup>
<MSBuild Projects="@(TestProjectToRun)"
Targets="RunTestsAsTool" Targets="RunTestsAsTool"
Properties="ToolTestName=%(SdkTest.Identity)"
BuildInParallel="true" BuildInParallel="true"
ContinueOnError="true"
/> />
</Target> </Target>