dotnet/aspnetcore

Improve population of application parts when there's no entry-point assembly

Open

#43,460 opened on Aug 22, 2022

View on GitHub
 (4 comments) (0 reactions) (0 assignees)C# (10,653 forks)batch import
area-mvchelp wanted

Repository metrics

Stars
 (37,933 stars)
PR merge metrics
 (Avg merge 16d 9h) (258 merged PRs in 30d)

Description

Currently the application parts population eventually ends up using Assembly.GetEntryAssembly which may return null in native hosting scenarios (direct hosting through hostfxr, or IJW/COM). When this happens the population will silently do nothing, which is unexpected.

See https://github.com/dotnet/runtime/issues/73516 for more details on one such scenario

Contributor guide