Last active
August 27, 2015 11:08
-
-
Save taisyo7333/416ff7f6cf6016bf8b84 to your computer and use it in GitHub Desktop.
Visual Studio -- Build Script by powershell.
This file contains hidden or 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
$target = 'ソリューション名.sln' | |
$config = 'Release' | |
#Rebuild,Build,Clean | |
$type = 'Rebuild' | |
$ms_build_path = 'C:\Windows\Microsoft.NET\Framework\v4.0.30319;' | |
$env:Path = $env:Path + ';' + $ms_build_path | |
# /m -> concurrent build | |
#(e.g) MSBuild $target /t:Rebuild /p:Configuration=Release /m | |
MSBuild $target /m /t:$type /p:Configuration=$config |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reference URL
https://technet.microsoft.com/en-us/library/cc759262(v=ws.10).aspx