blob: f1b85c3730e49dd64a85f2c5739f6b9dd8ab5cee [file] [log] [blame]
Jan Tattermusch7727c762017-03-31 18:44:27 +02001<Project>
2 <ItemGroup>
3 <!-- We are relying on run_tests.py to build grpc_csharp_ext with the right bitness
4 and we copy it as both x86 (needed by net45) and x64 (needed by netcoreapp1.0) as we don't
5 know which one will be needed to run the tests. -->
6 <Content Include="..\..\..\libs\$(NativeDependenciesConfigurationUnix)\libgrpc_csharp_ext.dylib">
7 <Link>libgrpc_csharp_ext.x86.dylib</Link>
8 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
9 <Pack>false</Pack>
10 </Content>
11 <Content Include="..\..\..\libs\$(NativeDependenciesConfigurationUnix)\libgrpc_csharp_ext.dylib">
12 <Link>libgrpc_csharp_ext.x64.dylib</Link>
13 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
14 <Pack>false</Pack>
15 </Content>
16 </ItemGroup>
17</Project>