Skip to content
Snippets Groups Projects
Commit bd3df5f5 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

fix conditional inclusion of grpc_csharp_ext.dll

parent 69dc65a3
No related branches found
No related tags found
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.
Finish editing this message first!
Please register or to comment