Last active
November 11, 2020 14:58
-
-
Save marcind/9512656 to your computer and use it in GitHub Desktop.
Disable "Always start when debugging" for all projects in a solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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