dotnet --version dotnet --info dotnet tool list dotnet tool list --global dotnet new --list dotnet new console dotnet new console -n Demo dotnet new web dotnet new blazorwasm -o WebApp dotnet new blazorserver -o WebApp dotnet add package Microsoft.AspNetCore.WebUtilities dotnet add package WebWindow -v 0.1.0-20191118.2 dotnet user-secrets set "SecretValues:SecretApiKey" "0123456" dotnet user-secrets remove "SecretValues:SecretApiKey" dotnet user-secrets list dotnet user-secrets clear dotnet restore dotnet build dotnet build --configuration Release dotnet run dotnet example.dll dotnet publish -f netcoreapp1.1 -c Release dotnet publish -r --------------------- dotnet add package Microsoft.EntityFrameworkCore.SqlServer dotnet add package Microsoft.EntityFrameworkCore.Design dotnet ef dbcontext scaffold "Server=PC;Database=Despace.Cms;Trusted_Connection=True;" Microsoft.EntityFrameworkCore.SqlServer -o Model ---------------------