Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 1.46 KB

README.md

File metadata and controls

18 lines (15 loc) · 1.46 KB

.NET 5.0 Web API Authentication from Scratch

This repostitory consists of project for following aricles in my blog (originally written for .NET Core 3.1 but packages are updated to match .NET 5.0)

Setting Up

  • Download / Clone this repository.
  • Install latest .NET
  • Create new database MyDatabase in SQL Server.
  • Open Visual Studio Code in WebApiCore50 folder.
  • Open integrated terminal using Ctrl+Shift+`
  • Execute command dotnet restore in the terminal.
  • Execute command dotnet tool update --global dotnet-ef --version 5.0.0 in the terminal to update Entity Framework Core .NET Command-line Tools.
  • Execute command dotnet ef database update in the terminal. (to update the database using migrations)
  • Execute command dotnet watch run in the terminal.