Skip to content

Instantly share code, notes, and snippets.

@jesmaail
jesmaail / localnugetupdate.json
Last active November 19, 2019 11:02
Rough local nuget dev script
{
"PackagesDirectory" : "",
"ProjectPath" : "",
"LocalNugetPath" : ""
}
@jesmaail
jesmaail / README.md
Last active April 25, 2019 09:29
Machine Setup Script(s)

Machine Set up Script(s)

Windows

  • Minimal
    • Chocolately
    • Visual Studio Code
    • Git
    • Spotify
  • GIMP
@jesmaail
jesmaail / dotnet-cli-cheatsheet.md
Last active April 13, 2025 21:29
dotnet cli cheatsheet

DotNet CLI Cheatsheet

New Solution: dotnet new sln -n <Solution-Name>

List available new commands: dotnet new -h

List avilable project types dotnet new -l

New Project: dotnet new <Project-Type> -o <Project-Name>