I use latest VS2017 to create new ASP.NET Core 2.0 MVC app and change authentication to "Individual User Accounts".
In the "Startup.cs", I can see "app.UseAuthentication();" but there is no "services.AddAuthentication()". Does this mean when "services.AddIdentity(...)" used, the "app.UseAuthentication();" is implicited added and all default scheme applied? Could someone explain this in details? Thanks.