'Where is Asp.net core 3.0 nuget packages?
I went to Nuget.org to fetch Microsoft.AspNetCore.Mvc.Core 3.0.0 but didn't find it, Is there any reason for Microsoft for not pushing these packages?
Solution 1:[1]
ASP.NET Core 3.0 is no longer shipped as nuget packages but a framework, which is included as a part of the SDK.
To reference it from a project that does not use the web sdks, use this in your csproj file inside an <ItemGroup>
element, like so:
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
</ItemGroup>
This includes most packages that were formerly referenced from nuget.
Note that you cannot add it to a project that uses the web sdks, as it is already added by the sdk by default.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | redcalx |