Skip to content

Instantly share code, notes, and snippets.

View IgorWolbers's full-sized avatar

Igor Wolbers IgorWolbers

  • Chattanooga, TN USA
View GitHub Profile
@joshuaflanagan
joshuaflanagan / Console command
Created June 1, 2011 22:23
Turn off Always Start When Debugging for all web projects (run within Nuget powershell console)
get-project -all | %{ $_.Properties | ?{ $_.Name -eq "WebApplication.StartWebServerOnDebug" } | %{ $_.Value = "False"} }