summaryrefslogtreecommitdiff
path: root/tests/dir.props
diff options
context:
space:
mode:
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>