Forrest logo
back to context overview

msbuild

List of commands for msbuild:

  • msbuild:tldr:0d850 msbuild: Set one or more semicolon-separated properties.
    $ msbuild ${path-to-project_file} /property:${name=value}
    try on your machine
    explain this command
  • msbuild:tldr:60f59 msbuild: Build a specific project file.
    $ msbuild ${path-to-project_file}
    try on your machine
    explain this command
  • msbuild:tldr:b7999 msbuild: Display detailed information at the end of the log about how the project was configured.
    $ msbuild ${path-to-project_file} /detailedsummary
    try on your machine
    explain this command
  • msbuild:tldr:e9c3f msbuild: Set one or more semicolon-separated targets to build.
    $ msbuild ${path-to-project_file} /target:${targets}
    try on your machine
    explain this command
  • msbuild:tldr:ec5bc msbuild: Set the build tools version to use.
    $ msbuild ${path-to-project_file} /toolsversion:${version}
    try on your machine
    explain this command
  • msbuild:tldr:ed9bb msbuild: Display detailed help information.
    $ msbuild /help
    try on your machine
    explain this command
  • msbuild:tldr:feb51 msbuild: Build the first project file in the current directory.
    $ msbuild
    try on your machine
    explain this command
back to context overview