зеркало из
1
0
Форкнуть 0
This commit is contained in:
Chet Husk 2024-03-12 13:53:24 -05:00
Родитель 201c791bb8
Коммит d88e004545
3 изменённых файлов: 31 добавлений и 0 удалений

Просмотреть файл

@ -33,4 +33,15 @@
Version="$(NerdbankPackageVersion)"
PrivateAssets="all" />
</ItemGroup>
<Target
Name="PreparePackageReleaseNotesFromFiles"
BeforeTargets="GenerateNuspec">
<PropertyGroup>
<!-- This path will be relative to each executing project -->
<PackageReleaseNotesFile>CHANGELOG.md</PackageReleaseNotesFile>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText($(PackageReleaseNotesFile)))</PackageReleaseNotes>
</PropertyGroup>
</Target>
</Project>

Просмотреть файл

@ -0,0 +1,8 @@
# Changelog
## [Unreleased]
### Changed
- [When using the Isolated SDK, disable SDK-delivered implicit library packages](https://github.com/dotnet/reproducible-builds/pull/21) - thanks @cmeeren!

Просмотреть файл

@ -0,0 +1,12 @@
# Changelog
## [Unreleased]
### Added
- [Support for transitive package references](https://github.com/dotnet/reproducible-builds/pull/16) - thanks @meziantou!
- [Add RepositoryBranch package metadata when available in the build environment](https://github.com/dotnet/reproducible-builds/pull/27) - thanks @kzu!
### Removed
- [Remove the automatically provided .NET Framework reference assembly PackageReference, since the SDK provides this already](https://github.com/dotnet/reproducible-builds/pull/33) - thanks @MattKotsenas!