Skip to content

Instantly share code, notes, and snippets.

@marcind
marcind / pp_pragma.snippet
Last active August 29, 2015 14:13
Visual Studio code snippet for #pragma warning disable
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>#pragma</Title>
<Shortcut>#pragma</Shortcut>
<Description>Code snippet for #pragma warning snippet</Description>
<Author>Marcin Dobosz</Author>
<SnippetTypes>
<SnippetType>Expansion</SnippetType>
@marcind
marcind / gist:9512656
Last active November 11, 2020 14:58
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 } }
#