Skip to content

Instantly share code, notes, and snippets.

@BrunoCaimar
Last active April 5, 2018 12:00
Show Gist options
  • Save BrunoCaimar/ca16bc0af52db7dd195d2c630ae04e51 to your computer and use it in GitHub Desktop.
Save BrunoCaimar/ca16bc0af52db7dd195d2c630ae04e51 to your computer and use it in GitHub Desktop.
MsBuild docs
Msbuild Parameters - https://msdn.microsoft.com/en-us/library/bb629394.aspx
Most Common:
- Configuration = Debug or Release
-- The configuration that you are building, either "Debug" or "Release."
- Platform = x86 or x64 or "Any CPU"
-- The operating system you are building for. Valid values are "Any CPU", "x86", and "x64".
- OutputPath = ..\Builds\
-- Specifies the path to the output directory, relative to the project directory, for example, "bin\Debug".
Example:
msbuild.exe /p:Configuration=Release;Platform=x86;OutputPath=..\Builds\Product MySolution.sln
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment