File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change 34
34
<PackageReference Include =" System.CommandLine" PrivateAssets =" all" IncludeAssets =" runtime" />
35
35
</ItemGroup >
36
36
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
+
37
44
<Target Name =" AddItemsForPackaging" AfterTargets =" Build" >
38
45
<ItemGroup >
39
46
<!-- root folder -->
You can’t perform that action at this time.
0 commit comments