summaryrefslogtreecommitdiff
path: root/tests/dir.props
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2017-01-17 14:47:51 -0800
committerwtgodbe <wigodbe@microsoft.com>2017-01-24 12:35:50 -0800
commiteb610f615bc4076ad950c98157e83bc34649064f (patch)
tree111869be6a4bba0ff85583c7fe2997fd9ddc37f2 /tests/dir.props
parent6a3c584b80dde7752a595344b3dc727918c94183 (diff)
downloadcoreclr-eb610f615bc4076ad950c98157e83bc34649064f.tar.gz
coreclr-eb610f615bc4076ad950c98157e83bc34649064f.tar.bz2
coreclr-eb610f615bc4076ad950c98157e83bc34649064f.zip
Add support for running CoreCLR Tests in Helix
Diffstat (limited to 'tests/dir.props')
-rw-r--r--tests/dir.props8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/dir.props b/tests/dir.props
index dcaee88fc3..0c45096844 100644
--- a/tests/dir.props
+++ b/tests/dir.props
@@ -39,6 +39,14 @@
<RootBinDir Condition="'$(__RootBinDir)'==''">$(ProjectDir)bin\</RootBinDir>
</PropertyGroup>
+<!-- Default Test platform to deploy the netstandard compiled tests to -->
+ <PropertyGroup>
+ <!-- we default TestTFM and FilterToTestTFM to netcoreapp1.0 if they are not explicity defined -->
+ <DefaultTestTFM Condition="'$(DefaultTestTFM)'==''">netcoreapp1.0</DefaultTestTFM>
+ <TestTFM Condition="'$(TestTFM)'==''">$(DefaultTestTFM)</TestTFM>
+ <FilterToTestTFM Condition="'$(FilterToTestTFM)'==''">$(DefaultTestTFM)</FilterToTestTFM>
+ </PropertyGroup>
+
<!-- Output paths -->
<PropertyGroup>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)' == ''">$(RootBinDir)obj\</BaseIntermediateOutputPath>