Update dotnet with EF Core tools

This commit is contained in:
James Skemp 2022-09-05 20:19:16 -05:00
parent b77c0e4ab7
commit 70a25a69a3
1 changed files with 10 additions and 0 deletions

View File

@ -10,3 +10,13 @@ $Env:NETCORE_ENVIRONMENT = "Development"
```
The `ASPNETCORE_ENVIRONMENT` value overrides `DOTNET_ENVIRONMENT`.
## Entity Framework Core Tools
[CLI reference](https://docs.microsoft.com/en-us/ef/core/cli/dotnet).
```powershell
# Install
dotnet tool install --global dotnet-ef
# Update
dotnet tool update --global dotnet-ef
```