aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/Internal/PlatformApis.cs
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@users.noreply.github.com>2016-06-22 08:49:37 -0700
committerGravatar GitHub <noreply@github.com>2016-06-22 08:49:37 -0700
commitcfce066be8781262000c891260271fb84d0bba82 (patch)
treea1ed6e9d126c365b0e73a51004205afd142b9440 /src/csharp/Grpc.Core/Internal/PlatformApis.cs
parentb2a18c8758053b94e56d5b29a6d80fa78997e978 (diff)
parent743decdafa3fe9b5e315748e61ff368245ec4b9d (diff)
Merge pull request #6104 from jtattermusch/coreclr_support
Add experimental CoreCLR support
Diffstat (limited to 'src/csharp/Grpc.Core/Internal/PlatformApis.cs')
-rw-r--r--src/csharp/Grpc.Core/Internal/PlatformApis.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core/Internal/PlatformApis.cs b/src/csharp/Grpc.Core/Internal/PlatformApis.cs
index 5d8c44b589..15391ddc64 100644
--- a/src/csharp/Grpc.Core/Internal/PlatformApis.cs
+++ b/src/csharp/Grpc.Core/Internal/PlatformApis.cs
@@ -53,7 +53,7 @@ namespace Grpc.Core.Internal
static PlatformApis()
{
-#if DNXCORE50
+#if NETSTANDARD1_5
isLinux = RuntimeInformation.IsOSPlatform(OSPlatform.Linux);
isMacOSX = RuntimeInformation.IsOSPlatform(OSPlatform.OSX);
isWindows = RuntimeInformation.IsOSPlatform(OSPlatform.Windows);