Skip to content

Instantly share code, notes, and snippets.

@corespider
Created October 2, 2020 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corespider/d5997e3c51c994ccbfdd191750c2ea02 to your computer and use it in GitHub Desktop.
Save corespider/d5997e3c51c994ccbfdd191750c2ea02 to your computer and use it in GitHub Desktop.
JWT-Authentication ackages
Install-Package Microsoft.AspNetCore.Authentication.JwtBearer
// It enables JWT authentication in ASP.NET Core
Install-Package Microsoft.AspNetCore.Identity.EntityFrameworkCore
// This enable Identity in EF core
Install-Package Microsoft.EntityFrameworkCore
// This enable EF core
Install-Package Microsoft.EntityFrameworkCore.Design
// This package helps EFCore Design
Install-Package Microsoft.EntityFrameworkCore.SqlServer
// It provides support for creating and validating a JWT token.
Install-Package Microsoft.EntityFrameworkCore.Tools
// Database provider allows Entity Framework Core to work with SQL Server.
Install-Package Microsoft.VisualStudio.Web.CodeGeneration.Design
// This package helps create database context and model classes from the database.
Install-Package System.IdentityModel.Tokens.Jwt
// This is the middleware that enables an ASP.NET Core application to receive
// a bearer token in the request pipeline.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment