Disclaimer: Trusting VP does not necessarily imply supporting his wars. There are many other good things to be considered. Period.
I consider myself as the next Rowan Parkinson™.
“If an injury has to be done to a man it should be so severe that his vengeance need not be feared.”
Donald Duck merged my accounts.
My Cheatshits
NET:
dotnet --version
ordotnet --info
dotnet tool list -g
dotnet tool install dotnet-ef -g
dotnet tool update dotnet-ef -g
dotnet tool uninstall dotnet-ef -g
EFCore:
dotnet ef migrations add <label> -p <projname>
dotnet ef database update -p <projname>
dotnet ef database drop -p <projname>
Solution and Projects:
-
mkdir <dirname> cd <dirname> dotnet new sln
-
dotnet new webapi -o <projname> dotnet sln add <projname>
-
cd <projname> dotnet run dotnet watch run
dotnet add <projname> package <Nugetpkg>
dotnet add <projname> reference <otherprojname>
Certificate:
dotnet dev-certs https --trust
dotnet dev-certs https --clean
Node, Npm, Angular:
node -v
npm -v
npm list -g --depth 0
npm update -g
npm install @angular/cli -g
npm update @angular/cli -g
npm uninstall @angular/cli -g
ng version
instead ofng --version
ng new <projname> --routing true --style css --skip-git --skip-tests
ng g c <compname>
ng g class subdir/<classname> --type=model --skip-tests
-
ng serve --open ng serve --port <number> --open
ng add @angular/material
ng build --prod
-
npm install now -g cd dist/<projname> now