You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Microsoft.WindowsDesktop.App package is only available through the .exe installer or via its inclusion in the SDK zip file. But there is a need for the ability to construct a .NET installation piecemeal. This is related to dotnet/sdk#11211.
A scenario where this would be used is with Docker images. As part of the changes in dotnet/dotnet-docker#1351 and dotnet/dotnet-docker#1814, the SDK image will now be based on the ASP.NET image, which itself is based on the runtime image. This kind of layering means that each framework will be installed individually. The runtime image installs Microsoft.NETCore.App and dotnet.exe. The ASP.NET image builds on top of the runtime image by also installing Microsoft.AspNetCore.App. The SDK image builds on top of the ASP.NET image by also installing the SDK and Microsoft.WindowsDesktop.App. This layered approach requires that the Microsoft.WindowsDesktop.App be made available as a separate archive file so it can be retrieved individually.
The proposal is to produce a zip file that contains only the Microsoft.WindowsDesktop.App folder.
The text was updated successfully, but these errors were encountered:
Currently the Microsoft.WindowsDesktop.App package is only available through the .exe installer or via its inclusion in the SDK zip file. But there is a need for the ability to construct a .NET installation piecemeal. This is related to dotnet/sdk#11211.
A scenario where this would be used is with Docker images. As part of the changes in dotnet/dotnet-docker#1351 and dotnet/dotnet-docker#1814, the SDK image will now be based on the ASP.NET image, which itself is based on the runtime image. This kind of layering means that each framework will be installed individually. The runtime image installs Microsoft.NETCore.App and
dotnet.exe
. The ASP.NET image builds on top of the runtime image by also installing Microsoft.AspNetCore.App. The SDK image builds on top of the ASP.NET image by also installing the SDK and Microsoft.WindowsDesktop.App. This layered approach requires that the Microsoft.WindowsDesktop.App be made available as a separate archive file so it can be retrieved individually.The proposal is to produce a zip file that contains only the Microsoft.WindowsDesktop.App folder.
The text was updated successfully, but these errors were encountered: