Skip to content

Instantly share code, notes, and snippets.

@gyuwon
Created March 13, 2016 11:29
Show Gist options
  • Save gyuwon/26df27a3a7d5383ba434 to your computer and use it in GitHub Desktop.
Save gyuwon/26df27a3a7d5383ba434 to your computer and use it in GitHub Desktop.
Set C# REPL path
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