Skip to content

Instantly share code, notes, and snippets.

View rsenna's full-sized avatar
🏠
Working from home

Rogério Senna rsenna

🏠
Working from home
  • Thoughtworks
  • Barcelona, Spain
  • X @rsenna
View GitHub Profile
@rsenna
rsenna / Console command
Created November 30, 2012 16:41 — forked from joshuaflanagan/Console command
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"} }