mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-01 07:15:22 +02:00
msbuild: add page (#2115)
This commit is contained in:
parent
4e75d18be2
commit
2102852947
1 changed files with 31 additions and 0 deletions
31
pages/common/msbuild.md
Normal file
31
pages/common/msbuild.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# msbuild
|
||||
|
||||
> The Microsoft build tool for Visual Studio project solutions.
|
||||
|
||||
- Build the first project file in the current directory:
|
||||
|
||||
`msbuild`
|
||||
|
||||
- Build a specific project file:
|
||||
|
||||
`msbuild {{path/to/project_file}}`
|
||||
|
||||
- Set one or more semicolon-separated targets to build:
|
||||
|
||||
`msbuild {{path/to/project_file}} /target:{{targets}}`
|
||||
|
||||
- Set one or more semicolon-separated properties:
|
||||
|
||||
`msbuild {{path/to/project_file}} /property:{{name=value}}`
|
||||
|
||||
- Set the build tools version to use:
|
||||
|
||||
`msbuild {{path/to/project_file}} /toolsversion:{{version}}`
|
||||
|
||||
- Display detailed information at the end of the log about how the project was configured:
|
||||
|
||||
`msbuild {{path/to/project_file}} /detailedsummary`
|
||||
|
||||
- Display detailed help information:
|
||||
|
||||
`msbuild /help`
|
Loading…
Add table
Reference in a new issue