Created
June 1, 2011 22:23
-
-
Save joshuaflanagan/1003503 to your computer and use it in GitHub Desktop.
Turn off Always Start When Debugging for all web projects (run within Nuget powershell console)
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
get-project -all | %{ $_.Properties | ?{ $_.Name -eq "WebApplication.StartWebServerOnDebug" } | %{ $_.Value = "False"} } |
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
I've added this as a function in my NuGet PowerShell profile. | |
From the Package Manager Console: | |
PM> $profile # echos path to NuGet_profile.ps1 | |
Open that file in a text editor and add the following code: | |
function NoStartOnDebug(){ | |
get-project -all | %{ $_.Properties | ?{ $_.Name -eq "WebApplication.StartWebServerOnDebug" } | %{ $_.Value = "False"} } | |
Write-Host "'Always Start When Debugging' has been disabled for all web projects." | |
} | |
To reload your profile with the changes: | |
PM> . $profile | |
To run the function: | |
PM> nostartondebug | |
Of course you can use a shorter name. Even better would be if it automatically ran it when a solution was opened... |
For me is doesn't work. I think is correct $_.Value = $False
Brilliant, thank you.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Disable Always Start When Debugging visual studio extension
http://visualstudiogallery.msdn.microsoft.com/9ccbf2ee-52a4-4783-a41c-c7057335ce28