Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Kuhne <jeremy.kuhne@microsoft.com>2016-07-01 03:43:57 +0300
committerJeremy Kuhne <jeremy.kuhne@microsoft.com>2016-09-19 21:16:22 +0300
commit387cf98c410bdca8fd195b28cbe53af578698f94 (patch)
tree70be6f87470938ce0cefd32c4f923f58e17ab0aa /dir.props
parent2cba5a1931a0bc054b17140c5f1271a59423f1b7 (diff)
Add Path.GetRelativePath
This change adds Path.GetRelativePath, which will calculate the relative path from one directory to another file/directory. This change also adds support for targetting netcoreapp
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/dir.props b/dir.props
index 80aa264931..ecd04db426 100644
--- a/dir.props
+++ b/dir.props
@@ -467,7 +467,7 @@
<!-- Default Test platform to deploy the netstandard compiled tests to -->
<PropertyGroup>
- <TestTFM Condition="'$(TestTFM)'=='' AND '$(TargetGroup)'=='netstandard1.7'">netcoreapp1.1</TestTFM>
+ <TestTFM Condition="'$(TestTFM)'=='' and ('$(TargetGroup)'=='netstandard1.7' or '$(TargetGroup)'=='netcoreapp1.1')">netcoreapp1.1</TestTFM>
<TestTFM Condition="'$(TestTFM)'==''">netcoreapp1.0</TestTFM>
<!-- we default FilterToTestTFM to netcoreapp1.1 if it is not explicity defined -->
<FilterToTestTFM Condition="'$(FilterToTestTFM)'==''">netcoreapp1.1</FilterToTestTFM>