Created
March 10, 2016 08:13
-
-
Save laurentkempe/805dcc32abc8e29b002c to your computer and use it in GitHub Desktop.
Function to start VS and ReSharper on RamDisk
This file contains 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
function vs([string]$solution) { | |
$env:TEMP = "R:\VsTemp"; | |
$env:TMP = "R:\VsTemp"; | |
& "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe" $solution | |
# startProcessHigh "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\devenv.exe" . $solution | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment