This repository has been archived on 2025-09-07. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
dotnet-installer/build/test/RunTest.proj

21 lines
872 B
Text
Raw Normal View History

2016-08-09 15:39:12 -07:00
<?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)" />
2016-08-09 15:39:12 -07:00
<Target Name="RunTest">
<DotNetTest EnvironmentVariables="$(EnvironmentVariables)"
2016-08-09 15:39:12 -07:00
ToolPath="$(ToolPath)"
Configuration="$(Configuration)"
NoBuild="True"
Logger="trx"
ProjectPath="$(TestProject)" />
2016-08-09 15:39:12 -07:00
</Target>
</Project>