Skip to content

Commit

Permalink
Fix NuGet package missing content issues (#1347)
Browse files Browse the repository at this point in the history
* Add explicit content includes to files sections where necessary

* changelog

* Update CHANGELOG.md

* Standardize on backslashes

Co-authored-by: Josh Coleman <[email protected]>
  • Loading branch information
nr-ahemsath and JcolemanNR authored Jan 17, 2023
1 parent 52aa96c commit acf4fc6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions build/Packaging/NugetAgent/NewRelic.Agent.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
</contentFiles>
</metadata>
<files>
<file src="**\newrelic\**\*" target="." />
<file src="tools\**" target="tools" />
<file src="..\..\icon.png" target="images\" />
</files>
</package>
4 changes: 4 additions & 0 deletions build/Packaging/NugetAgentApi/NewRelic.Agent.Api.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
<tags>New Relic</tags>
</metadata>
<files>
<file src="lib\**" target="lib" />
<file src="tools\**" target="tools" />
<file src="LICENSE.txt" target="." />
<file src="THIRD_PARTY_NOTICES.txt" target="." />
<file src="..\..\icon.png" target="images\" />
</files>
</package>
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
<releaseNotes>For detailed information see: https://docs.newrelic.com/docs/release-notes/agent-release-notes/net-release-notes/</releaseNotes>
</metadata>
<files>
<file src="content\**" target="content" />
<file src="lib\**" target="lib" />
<file src="tools\**" target="tools" />
<file src="..\..\icon.png" target="images\" />
</files>
</package>
1 change: 1 addition & 0 deletions src/Agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### New Features

### Fixes
* Resolves [#1346](https://github.com/newrelic/newrelic-dotnet-agent/issues/1346) where some NuGet packages were incomplete for the 10.5.0 release. Impacted packages have been delisted from NuGet. ([#1347](https://github.com/newrelic/newrelic-dotnet-agent/pull/1347))

## [10.5.0]

Expand Down

0 comments on commit acf4fc6

Please sign in to comment.