Skip to content

Instantly share code, notes, and snippets.

@sebastiantecsi
Forked from kamsar/msbuild.ps1
Created February 27, 2019 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebastiantecsi/34ec19d993b8a4ab3eac69c2ff4088c7 to your computer and use it in GitHub Desktop.
Save sebastiantecsi/34ec19d993b8a4ab3eac69c2ff4088c7 to your computer and use it in GitHub Desktop.
PowerShell to resolve MSBuild.exe on VS2017 or VS2015 (or with Build Tools 2015)
function Resolve-MsBuild {
$msb2017 = Resolve-Path "${env:ProgramFiles(x86)}\Microsoft Visual Studio\*\*\MSBuild\*\bin\msbuild.exe" -ErrorAction SilentlyContinue
if($msb2017) {
Write-Host "Found MSBuild 2017 (or later)."
Write-Host $msb2017
return $msb2017
}
$msBuild2015 = "${env:ProgramFiles(x86)}\MSBuild\14.0\bin\msbuild.exe"
if(-not (Test-Path $msBuild2015)) {
throw 'Could not find MSBuild 2015 or later.'
}
Write-Host "Found MSBuild 2015."
Write-Host $msBuild2015
return $msBuild2015
}
$msBuild = Resolve-MsBuild
# e.g. & $msBuild .\Foo.sln
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment