MongoDB.Driver.Core.targets 1.1 KB

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <CompressionRuntimesPath>runtimes/win/native</CompressionRuntimesPath>
  5. </PropertyGroup>
  6. <!--snappy-->
  7. <ItemGroup Condition="$([MSBuild]::IsOsPlatform('Windows'))">
  8. <Content Include="$(MSBuildThisFileDirectory)../$(CompressionRuntimesPath)/snappy32.dll">
  9. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  10. <Link>snappy32.dll</Link>
  11. </Content>
  12. <Content Include="$(MSBuildThisFileDirectory)../$(CompressionRuntimesPath)/snappy64.dll">
  13. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  14. <Link>snappy64.dll</Link>
  15. </Content>
  16. </ItemGroup>
  17. <!--zstd-->
  18. <ItemGroup Condition="$([MSBuild]::IsOsPlatform('Windows'))">
  19. <Content Include="$(MSBuildThisFileDirectory)../$(CompressionRuntimesPath)/libzstd.dll">
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. <Link>libzstd.dll</Link>
  22. </Content>
  23. </ItemGroup>
  24. </Project>