Skip to content

Instantly share code, notes, and snippets.

@kazuk
Created February 8, 2017 06:31
Show Gist options
  • Save kazuk/a3c44592c89ee507a7036dd828de21f9 to your computer and use it in GitHub Desktop.
Save kazuk/a3c44592c89ee507a7036dd828de21f9 to your computer and use it in GitHub Desktop.
QUICKFIX for NuGet packaging on VS2017 RC
<?xml version="1.0" encoding="utf-8" ?>
<Project>
<!--
PATCH for nuget package warning Microsoft.DiaSymReader.Native.x86.dll and Microsoft.DiaSymReader.Native.amd64.dll
-->
<ItemGroup Condition="!Exists('project.json') AND !Exists('$(MSBuildProjectName).project.json')">
<Content Include="$(NuGetPackageRoot)microsoft.diasymreader.native\1.4.0\runtimes\win\native\Microsoft.DiaSymReader.Native.x86.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>false</Visible>
<Pack>false</Pack>
</Content>
<Content Include="$(NuGetPackageRoot)microsoft.diasymreader.native\1.4.0\runtimes\win\native\Microsoft.DiaSymReader.Native.amd64.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Visible>false</Visible>
<Pack>false</Pack>
</Content>
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment