Skip to content

Commit

Permalink
Add basic release notes and include them in the package (dotnet#220)
Browse files Browse the repository at this point in the history
add basic release notes and include them in the package
  • Loading branch information
baronfel authored Oct 25, 2022
1 parent ae996f7 commit 2b6d21a
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs/ReleaseNotes/v0.1.8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Microsoft.NET.Build.Containers v0.1.8

This is the initial public release of the .NET SDK containerization feature. It allows for
simple containerization of Web SDK projects that are pushed to a local Docker daemon.

To learn more, see our [Getting Started](http://github.com/dotnet/sdk-container-builds/blob/main/docs/GettingStarted.md) docs.
9 changes: 9 additions & 0 deletions docs/ReleaseNotes/v0.2.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Microsoft.NET.Build.Containers v0.2.0

This is the second public release of the .NET SDK containerization feature. This version brings support for

* [authentication to registries](http://github.com/dotnet/sdk-container-builds/blob/main/docs/RegistryAuthentication.md)
* support for publishing inside Visual Studio
* [more ways to customize your generated containers](http://github.com/dotnet/sdk-container-builds/blob/main/docs/ContainerCustomization.md)

To start containerizing your projects, see our [Getting Started](http://github.com/dotnet/sdk-container-builds/blob/main/docs/GettingStarted.md) docs.
7 changes: 7 additions & 0 deletions packaging/package.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@
<PackageReference Include="System.CommandLine" PrivateAssets="all" IncludeAssets="runtime"/>
</ItemGroup>

<Target Name="PreparePackageReleaseNotesFromFile" BeforeTargets="GenerateNuspec">
<PropertyGroup>
<PackageReleaseNotesFile>../docs/ReleaseNotes/v0.2.0.md</PackageReleaseNotesFile>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText($(PackageReleaseNotesFile)))</PackageReleaseNotes>
</PropertyGroup>
</Target>

<Target Name="AddItemsForPackaging" AfterTargets="Build">
<ItemGroup>
<!-- root folder -->
Expand Down

0 comments on commit 2b6d21a

Please sign in to comment.