Add .NET commands

This commit is contained in:
James Skemp 2022-09-09 18:47:21 -05:00
parent 70a25a69a3
commit 340d708b5b
1 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,18 @@
- [dotnet new](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-new)
- `dotnet new list`
```powershell
# View .NET installed versions and information.
dotnet --info
```
```powershell
# Restore packages.
dotnet restore
dotnet watch run
```
## Environment variables
```powershell
$Env:ASPNETCORE_ENVIRONMENT = "Development"