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

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