asp.net - AspNetCore.Mvc vs AspNetCore.Mvc.Core -


what's difference between aspnetcore.mvc , aspnetcore.mvc.core nuget packages? mvc.core bare bones stuff while mvc all-inclusive package? that's guess looking @ descriptions here , here it's not totally clear.

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

aspnetcore.mvc has basic stuff set you

if want use aspnetcore.mvc.core have configure them yourself

it seems wise use aspnetcore.mvc unless know need aspnetcore.mvc.core

  • if use .addmvc() lot of "opinionated" features, e.g. kind of app building, formatters registered , in order, application conventions there default.
  • if use .addmvccore() ("and know you're doing) behavior of application decided own opinions , not built-in default opinions.

Comments