Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 850 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 850 Bytes

Customizable.Menu

This is a .Net 6 project I developed to help in keeping track of the multitude of url's I use on any given day.


If you are cloning this repository, please enter commands as follows:

$ git clone https://github.com/cdcavell/Customizable.Menu.git

Database Migrations CLI Instructions
Before you can use the CLI tools on project, you'll need to add the Microsoft.EntityFrameworkCore.Design package to it.

Install EF Core Tools: dotnet tool install --global dotnet-ef
Upgrade EF Core Tools: dotnet tool update --global dotnet-ef

To Initialize:

$ dotnet ef migrations add Initial --context ApplicationDbContext --output-dir Migrations

To Update:

$ dotnet ef migrations add Update --context ApplicationDbContext --output-dir Migrations