summaryrefslogtreecommitdiff
path: root/src/mscorlib
diff options
context:
space:
mode:
authorAlex Ghiondea <ghiondea.alexandru@microsoft.com>2016-06-02 19:31:04 -0700
committerAlex Ghiondea <ghiondea.alexandru@microsoft.com>2016-06-02 19:31:04 -0700
commit9804bd17ceb7c9c9e34f1091729f236f05ebc856 (patch)
treefff2537f5f18c48d5c5fcf30ff0a17b4341fc009 /src/mscorlib
parent0cf1848d2cf3baa4631010fa9ad8b08731423749 (diff)
downloadcoreclr-9804bd17ceb7c9c9e34f1091729f236f05ebc856.tar.gz
coreclr-9804bd17ceb7c9c9e34f1091729f236f05ebc856.tar.bz2
coreclr-9804bd17ceb7c9c9e34f1091729f236f05ebc856.zip
Some types were only supposed to be present when FEATURE_COMINTEROP was set.
This change fixes that. [tfs-changeset: 1610157]
Diffstat (limited to 'src/mscorlib')
-rw-r--r--src/mscorlib/ref/mscorlib.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mscorlib/ref/mscorlib.cs b/src/mscorlib/ref/mscorlib.cs
index 62a5de6d21..25222410f5 100644
--- a/src/mscorlib/ref/mscorlib.cs
+++ b/src/mscorlib/ref/mscorlib.cs
@@ -13349,6 +13349,7 @@ namespace System.Threading
}
namespace System.Threading.Tasks
{
+#if FEATURE_COMINTEROP
[System.Runtime.CompilerServices.FriendAccessAllowedAttribute]
internal enum AsyncCausalityStatus
{
@@ -13411,6 +13412,8 @@ namespace System.Threading.Tasks
Required = 0,
Verbose = 2,
}
+#endif
+
[System.Diagnostics.DebuggerDisplayAttribute("Concurrent={ConcurrentTaskCountForDebugger}, Exclusive={ExclusiveTaskCountForDebugger}, Mode={ModeForDebugger}")]
public partial class ConcurrentExclusiveSchedulerPair
{
@@ -13898,6 +13901,8 @@ namespace System.Security.Cryptography
OFB = 3,
}
}
+
+#if FEATURE_COMINTEROP
namespace Windows.Foundation.Diagnostics
{
internal enum AsyncCausalityStatus
@@ -13958,6 +13963,7 @@ namespace Windows.Foundation.Diagnostics
public Windows.Foundation.Diagnostics.CausalityTraceLevel TraceLevel { [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.InternalCall)]get { return default(Windows.Foundation.Diagnostics.CausalityTraceLevel); } }
}
}
+#endif
namespace System.Security.Claims
{