TL;DR - how to add authentication to an existing default core 2 web api project that was started without auth.
Details - I've got an existing .net core 2 web api project with no authentication configured and I'm using entity framework core.
It was opened like -
PIC 1 - No Auth Selected
I'd like to add Google authentication to my existing project as if it were opened with
PIC 2 - Individual user accounts selected
but I can't find any resource regarding adding those capabilities + scaffolding and migrations - all I can find are links regarding upgrading from core v1 to 2.
- Migrating Authentication and Identity to ASP.NET Core 2.0
- Configuring Google authentication in ASP.NET Core
any ideas?
thanks!

