Created
October 5, 2016 13:54
-
-
Save cubanx/5bf3756c858b27b83a1b2573c0fc7b93 to your computer and use it in GitHub Desktop.
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 build($pathToSolution, $configuration) { | |
if (-not $configuration) { | |
$configuration = "Debug" | |
} | |
& (Join-Path ${env:ProgramFiles(x86)} "MSBuild\14.0\Bin\msbuild.exe") /p:Configuration=$configuration /v:minimal $pathToSolution | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment