Skip to content
Snippets Groups Projects
Commit e0c553cc authored by Michael Lumish's avatar Michael Lumish
Browse files

Merge pull request #881 from jtattermusch/csharp_docker

Fix conditional inclusion of grpc_csharp_ext.dll
parents 5c599255 bd3df5f5
Branches
Tags
No related merge requests found
...@@ -67,9 +67,9 @@ ...@@ -67,9 +67,9 @@
<Compile Include="Utils\ExceptionHelper.cs" /> <Compile Include="Utils\ExceptionHelper.cs" />
</ItemGroup> </ItemGroup>
<Choose> <Choose>
<!-- Under Windows, automatically copy the C core library to output dir. <!-- Under older versions of Monodevelop, Choose is not supported and is just
Under Monodevelop it's not supported so it has no effect. --> ignored, which gives us the desired effect. -->
<When Condition=" '$(Platform)' == 'AnyCPU' "> <When Condition=" '$(OS)' != 'Unix' ">
<ItemGroup> <ItemGroup>
<Content Include="..\..\..\vsprojects\vs2013\Debug\grpc_csharp_ext.dll"> <Content Include="..\..\..\vsprojects\vs2013\Debug\grpc_csharp_ext.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment