AspNetCore.Mvc vs AspNetCore.Mvc.Core

What is the difference between AspNetCore.Mvc and AspNetCore.Mvc.Core NuGet? Is Mvc.Core just naked, and Mvc is an all-inclusive package? This is what I would guess by looking at the descriptions here and here, but this is not entirely clear.

+4
source share
1 answer

see https://github.com/aspnet/Mvc/issues/4785

AspNetCore.Mvc has all the basic things that are already installed for you

if you want to use AspNetCore.Mvc.Core, you have to configure them yourself

seems reasonable to use AspNetCore.Mvcif you don't know what you needAspNetCore.Mvc.Core

  • .AddMvc(), "" , . , , .
  • .AddMvcCore() ( " , " ), , .
+5

Source: https://habr.com/ru/post/1649818/


All Articles