Created
February 8, 2017 06:31
-
-
Save kazuk/a3c44592c89ee507a7036dd828de21f9 to your computer and use it in GitHub Desktop.
QUICKFIX for NuGet packaging on VS2017 RC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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