How to find all packages included in Microsoft.AspNetCore.App shared framework?

Viewed 124
1 Answers

As per this file in the source code:

The contents of the shared framework are defined in two ways:

  • eng/SharedFramework.Local.props - this file is generated from the .csproj files in this repo by looking for projects which have set <IsAspNetCoreApp>true</IsAspNetCoreApp>.
  • eng/SharedFramework.External.props - this file lists all assemblies shipped in Microsoft.AspNetCore.App which are built by source code found in other repositories.
Related