Skip to content

Instantly share code, notes, and snippets.

@marcind
Last active November 11, 2020 14:58
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save marcind/9512656 to your computer and use it in GitHub Desktop.
Save marcind/9512656 to your computer and use it in GitHub Desktop.
Disable "Always start when debugging" for all projects in a solution
# Execute this in Nuget powershell console
get-project -all | %{ $_.Properties | ?{ $_.Name -eq "WebApplication.StartWebServerOnDebug"} | %{ $_.Value = $False } }
#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment