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

Include grpc_csharp_ext.dll only under Windows

parent abf22022
No related branches found
No related tags found
No related merge requests found
...@@ -66,10 +66,17 @@ ...@@ -66,10 +66,17 @@
<Compile Include="Utils\BenchmarkUtil.cs" /> <Compile Include="Utils\BenchmarkUtil.cs" />
<Compile Include="Utils\ExceptionHelper.cs" /> <Compile Include="Utils\ExceptionHelper.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <Choose>
<Content Include="..\..\..\vsprojects\vs2013\Debug\grpc_csharp_ext.dll"> <!-- Under Windows, automatically copy the C core library to output dir.
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> Under Monodevelop it's not supported so it has no effect. -->
</Content> <When Condition=" '$(Platform)' == 'x86' ">
</ItemGroup> <ItemGroup>
<Content Include="..\..\..\vsprojects\vs2013\Debug\grpc_csharp_ext.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</When>
<Otherwise/>
</Choose>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project> </Project>
\ No newline at end of file
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