Skip to content

Instantly share code, notes, and snippets.

@serge1
Created June 4, 2013 12:09
Show Gist options
  • Save serge1/5705452 to your computer and use it in GitHub Desktop.
Save serge1/5705452 to your computer and use it in GitHub Desktop.
Example usage of MS build utility 'msbuild'
The whole solution compilation:
msbuild _project_.sln /t:Rebuild /p:configuration="Release"
Particular project compilation:
msbuild _project_.vcxproj /t:Rebuild /p:project="_project_" /p:platform="Win32" /p:configuration="Release"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment