Produce platform-specific packages for Microsoft.AspNetCore.App #3607
Labels
area-infrastructure
Includes: MSBuild projects/targets, build scripts, CI, Installers and shared framework
Milestone
Problem
Currently, framework-dependent deployments of Microsoft.AspNetCore.App use ready-to-run optimized images from the shared framework installation. Self-contained applications, however, do not get the ready-to-run optimizations. This happens because
dotnet publish
collects implementations binaries from NuGet packages and puts them in the publish directory, and the versions of ASP.NET Core assemblies in NuGet are not crossgen optimized.Proposed solution
Produce platform-specific packages for Microsoft.AspNetCore.App, and use this to provide ready-to-run optimized versions of .dlls for self-contained apps.
Requirements
Follow the convention set by runtime.$(rid).Microsoft.NETCore.App packages. This means introducing:
Package layout:
The text was updated successfully, but these errors were encountered: