Skip to content

MSBuild - Steps

Steps

Steps

Process steps in the MSBuild plug-in

Run MSBuild

Invoke MSBuild

NameTypeDescriptionRequired
Build FileStringThe name of the build file to execute.Yes
Command PathStringThe full path to msbuild.exe including msbuild.exe (blank if it is on the path).No
Environment VariablesStringOptional environment variables in name=value format. Environment variable values may contain references to existing values in the following format: name=${FOO};value. If the value of FOO variable is BAR in the current environment, then the above example will be expanded to: name=BAR;value. Using this technique, it is possible to add anentry to PATH in the following manner: PATH=my/path/entry;0. Case is significant even on Windows systems.No
MSBuild ParametersStringThese parameters are directly passed to the MSBuild executable. It is not necessary to escape spaces or use quoted strings. Enter each parameter on a separate line. Eg. /clp:PerformanceSummaryNo
MSBuild PropertiesStringThese properties are passed to the MSBuild executable. It is not necessary to escape spaces or use quoted strings. Enter each property on a separate line in the following format: name=value. Eg. WarningLevel=2 will become /p:WarningLevel=2 on the command line.No
Script ContentStringNo
TargetsStringThe name of the targets to run. Multiple targets can be separated with semi-colons or commas.No
Verbosity LevelEnumeration:
  • quiet
  • minimal
  • normal
  • detailed
  • diagnostic | The verbosity level. | No |