From b17b00b5410fdcc253f2e1c14c37ed093ff4cf95 Mon Sep 17 00:00:00 2001
From: Jan Tattermusch <jtattermusch@google.com>
Date: Tue, 24 Feb 2015 09:13:48 -0800
Subject: [PATCH] Fix to make the conditional include under Windows

---
 src/csharp/Grpc.Core/Grpc.Core.csproj | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/csharp/Grpc.Core/Grpc.Core.csproj b/src/csharp/Grpc.Core/Grpc.Core.csproj
index b5c15ee374..183c442358 100644
--- a/src/csharp/Grpc.Core/Grpc.Core.csproj
+++ b/src/csharp/Grpc.Core/Grpc.Core.csproj
@@ -69,7 +69,7 @@
   <Choose>
     <!-- Under Windows, automatically copy the C core library to output dir.
          Under Monodevelop it's not supported so it has no effect. -->
-    <When Condition=" '$(Platform)' == 'x86' ">
+    <When Condition=" '$(Platform)' == 'AnyCPU' ">
       <ItemGroup>
         <Content Include="..\..\..\vsprojects\vs2013\Debug\grpc_csharp_ext.dll">
           <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
-- 
GitLab