ad19f5ecb7
Thanks for the investigation, @cdmihai
22 lines
No EOL
962 B
XML
22 lines
No EOL
962 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTarget="RunTest" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!-- workaround for https://github.com/Microsoft/msbuild/issues/885 -->
|
|
<!-- renaming the property because the original property is a global property and therefore
|
|
cannot be redefined at runtime. -->
|
|
<PropertyGroup>
|
|
<CLIBuildDllPath>$([MSBuild]::Unescape($(CLIBuildDll)))</CLIBuildDllPath>
|
|
</PropertyGroup>
|
|
|
|
<UsingTask TaskName="DotNetTest" AssemblyFile="$(CLIBuildDllPath)" />
|
|
|
|
<Target Name="RunTest">
|
|
<DotNetTest WorkingDirectory="$(WorkingDirectory)"
|
|
EnvironmentVariables="$(EnvironmentVariables)"
|
|
ToolPath="$(ToolPath)"
|
|
Configuration="$(Configuration)"
|
|
NoBuild="True"
|
|
NoTrait="category=failing"
|
|
Xml="$(TestResultXmlDir)/$(TestProjectName)-testResults.xml" />
|
|
</Target>
|
|
</Project> |