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:
authorEric St. John <ericstj@microsoft.com>2017-01-30 03:41:53 +0300
committerEric St. John <ericstj@microsoft.com>2017-01-30 22:14:09 +0300
commit170dcef69fe1ed44eb3f94873299075e0a0d9d7e (patch)
tree9ac98035fb348babe55719a3620591ba90e59243 /dir.props
parent28097ca87cc2e8bcf7760f05732464b2c00eeaa4 (diff)
Fix tests after setting appropriate ref folder
Currently tests will still build against the build-configuration specific ref folder rather than the one appropriate for their configuration. This is the same as happened before the fixes to RefPath.
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props2
1 files changed, 2 insertions, 0 deletions
diff --git a/dir.props b/dir.props
index b3f03819ee..5b13996baa 100644
--- a/dir.props
+++ b/dir.props
@@ -250,6 +250,8 @@
<RefRootPath>$(BinDir)ref/</RefRootPath>
<BuildConfigurationRefPath>$(RefRootPath)$(_bc_TargetGroup)/</BuildConfigurationRefPath>
<RefPath>$(RefRootPath)$(TargetGroup)/</RefPath>
+ <!-- tests don't yet set appropriate configurations -->
+ <RefPath Condition="'$(IsTestProject)' == 'true'">$(BuildConfigurationRefPath)</RefPath>
<NetStandardRefPath>$(RefRootPath)netstandard/</NetStandardRefPath>
<NetFxRefPath>$(RefRootPath)netfx/</NetFxRefPath>