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:
authorChristopher Costa <chcosta@microsoft.com>2016-08-18 18:09:10 +0300
committerChristopher Costa <chcosta@microsoft.com>2016-08-18 18:09:10 +0300
commite507775dc783b9a32ebdbe3b4e5275a478cb3b68 (patch)
tree87a7a0ee5f7d5e61d278b19bf33bae966999a489 /dir.props
parent5655325eeaeef348d4d83d7cab5503736d1c0d2c (diff)
Add back OS based import condition
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props3
1 files changed, 2 insertions, 1 deletions
diff --git a/dir.props b/dir.props
index 67fca7c763..8c97825d93 100644
--- a/dir.props
+++ b/dir.props
@@ -579,5 +579,6 @@
</PropertyGroup>
<!-- Use Roslyn Compilers to build -->
- <Import Project="$(RoslynPropsFile)" Condition="Exists('$(RoslynPropsFile)') and '$(UseRoslynCompilers)'!='false'" />
+ <Import Project="$(RoslynPropsFile)" Condition="'$(OSEnvironment)'!='Unix' and Exists('$(RoslynPropsFile)') and '$(UseRoslynCompilers)'!='false'" />
+ <Import Project="$(RoslynPropsFile)" Condition="'$(OSEnvironment)'=='Unix' and Exists('$(RoslynPropsFile)')" />
</Project>