Hi,@Kevin Yip
Please check this document:
With the release of .NET Core 3.0, many ASP.NET Core assemblies are no longer published to NuGet as packages. Instead, the assemblies are included in the
Microsoft.AspNetCore.App
shared framework, which is installed with the .NET Core SDK and runtime installers.
You could try as below:
<Project Sdk="Microsoft.NET.Sdk">
......
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
</Project>
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best Regards,
Ruikai Feng