Created
March 13, 2016 11:29
-
-
Save gyuwon/26df27a3a7d5383ba434 to your computer and use it in GitHub Desktop.
Set C# REPL path
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 Append-Path { | |
param([string]$path) | |
if (Test-Path $path) { $env:Path += (";" + $path) } | |
} | |
Append-Path("${env:ProgramFiles}\MSBuild\14.0\Bin") | |
Append-Path("${env:ProgramFiles(x86)}\MSBuild\14.0\Bin") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment