Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Fix reference assembly generation
Browse files Browse the repository at this point in the history
When we switched to letting the new NuGetizer inference control
the package content, we missed adding the .csproj that generates
the reference assembly manually, since it's not added by default
as a Content item by the common targets.

Fixes NuGet/Home#5465
  • Loading branch information
kzu authored and adalon committed Jun 21, 2017
1 parent 4040b2a commit 2c76030
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
</ItemGroup>
<ItemGroup>
<None Remove="**\*.props;**\*.targets" />
<Content Include="GenerateReferenceAssembly.csproj">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="NuGet.Build.Packaging.Tasks.targets" />
<Content Include="**\*.props;**\*.targets" Exclude="obj\**\*.*;bin\**\*.*;NuGet.Build.Packaging.Tasks.targets">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
Expand Down

0 comments on commit 2c76030

Please sign in to comment.