Skip to content

Commit 2b6d21a

Browse files
authored
Add basic release notes and include them in the package (#220)
add basic release notes and include them in the package
1 parent ae996f7 commit 2b6d21a

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

docs/ReleaseNotes/v0.1.8.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Microsoft.NET.Build.Containers v0.1.8
2+
3+
This is the initial public release of the .NET SDK containerization feature. It allows for
4+
simple containerization of Web SDK projects that are pushed to a local Docker daemon.
5+
6+
To learn more, see our [Getting Started](http://github.com/dotnet/sdk-container-builds/blob/main/docs/GettingStarted.md) docs.

docs/ReleaseNotes/v0.2.0.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Microsoft.NET.Build.Containers v0.2.0
2+
3+
This is the second public release of the .NET SDK containerization feature. This version brings support for
4+
5+
* [authentication to registries](http://github.com/dotnet/sdk-container-builds/blob/main/docs/RegistryAuthentication.md)
6+
* support for publishing inside Visual Studio
7+
* [more ways to customize your generated containers](http://github.com/dotnet/sdk-container-builds/blob/main/docs/ContainerCustomization.md)
8+
9+
To start containerizing your projects, see our [Getting Started](http://github.com/dotnet/sdk-container-builds/blob/main/docs/GettingStarted.md) docs.

packaging/package.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@
3434
<PackageReference Include="System.CommandLine" PrivateAssets="all" IncludeAssets="runtime"/>
3535
</ItemGroup>
3636

37+
<Target Name="PreparePackageReleaseNotesFromFile" BeforeTargets="GenerateNuspec">
38+
<PropertyGroup>
39+
<PackageReleaseNotesFile>../docs/ReleaseNotes/v0.2.0.md</PackageReleaseNotesFile>
40+
<PackageReleaseNotes>$([System.IO.File]::ReadAllText($(PackageReleaseNotesFile)))</PackageReleaseNotes>
41+
</PropertyGroup>
42+
</Target>
43+
3744
<Target Name="AddItemsForPackaging" AfterTargets="Build">
3845
<ItemGroup>
3946
<!-- root folder -->

0 commit comments

Comments
 (0)