Doyle
Doyle

Reputation: 81

Authentication - VS 2017 15.3; ASP.Net Core 2.0; Angular

When selecting the Angular template VS 15.3 gives no other authentication choice other than "no authentication". I will be referencing Angular Components in Views. How do I get authentication functionality into the app? TIA

Upvotes: 3

Views: 609

Answers (1)

Miguel Torres C
Miguel Torres C

Reputation: 791

You can create an ASP.NET Core 2.0 non-SPA project with authentication. You can then add the classes and other functionality related to server-side authentication to your SPA project.

Additionally see the following documentation: https://learn.microsoft.com/en-us/aspnet/core/migration/1x-to-2x/identity-2x - AND - https://learn.microsoft.com/en-us/aspnet/core/security/authentication/

Upvotes: 1

Related Questions