summaryrefslogtreecommitdiff
path: root/clr.coreclr.props
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2015-02-11 22:20:12 -0500
committerStephen Toub <stoub@microsoft.com>2015-02-11 22:20:12 -0500
commit4953e867c1656992834417459449f4a681ec5631 (patch)
treeaa54284ef77d15131084ab4b552b419cf313277b /clr.coreclr.props
parent0d626131357039cae3dd97afd115b113b7c1a6ac (diff)
downloadcoreclr-4953e867c1656992834417459449f4a681ec5631.tar.gz
coreclr-4953e867c1656992834417459449f4a681ec5631.tar.bz2
coreclr-4953e867c1656992834417459449f4a681ec5631.zip
Invert ETW condition in clr.coreclr.props
Change a condition to be == Windows_NT rather than != Unix.
Diffstat (limited to 'clr.coreclr.props')
-rw-r--r--clr.coreclr.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/clr.coreclr.props b/clr.coreclr.props
index 9788642cba..d02e990068 100644
--- a/clr.coreclr.props
+++ b/clr.coreclr.props
@@ -78,7 +78,7 @@
<!-- The rejit feature is available only on supported architectures (x86 & x64) -->
<FeatureReJIT Condition="('$(TargetArch)' == 'i386') or ('$(TargetArch)' == 'amd64')">true</FeatureReJIT>
<FeatureWindowsPhone>true</FeatureWindowsPhone>
- <FeatureManagedEtw Condition="'$(OS)' != 'Unix'">true</FeatureManagedEtw>
+ <FeatureManagedEtw Condition="'$(OS)' == 'Windows_NT'">true</FeatureManagedEtw>
<FeatureManagedEtwChannels>true</FeatureManagedEtwChannels>
<FeatureHostedBinder>true</FeatureHostedBinder>
<BinderDebugLog Condition="'$(_BuildType)'=='dbg'">true</BinderDebugLog>