Skip to content

Instantly share code, notes, and snippets.

@istupakov
Created June 14, 2016 19:17
Show Gist options
  • Save istupakov/f45eb96dd659162e08316a9e08491680 to your computer and use it in GitHub Desktop.
Save istupakov/f45eb96dd659162e08316a9e08491680 to your computer and use it in GitHub Desktop.
MsBuild config for nuget packages with native dlls
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Content Include="$(MSBuildThisFileDirectory)\..\lib\native\*.dll">
<Link>%(Filename).dll</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment