Class MsBuildBuilder

All Implemented Interfaces:
ExtensionPoint, Describable<Builder>, BuildStep

public class MsBuildBuilder extends Builder
Author:
kyle.sweeney@valtech.com
  • Constructor Details

    • MsBuildBuilder

      @Deprecated public MsBuildBuilder(String msBuildName, String msBuildFile, String cmdLineArgs, boolean buildVariablesAsProperties, boolean continueOnBuildFailure, boolean unstableIfWarnings)
      Deprecated.
      When this builder is created in the project configuration step, the builder object will be created from the strings below.
      Parameters:
      msBuildName - The Visual Studio logical name
      msBuildFile - The name/location of the MSBuild file
      cmdLineArgs - Whitespace separated list of command line arguments
      buildVariablesAsProperties - If true, pass build variables as properties to MSBuild
      continueOnBuildFailure - If true, job will continue dispite of MSBuild build failure
      unstableIfWarnings - If true, job will be unstable if there are warnings
    • MsBuildBuilder

      @DataBoundConstructor public MsBuildBuilder(String msBuildName, String msBuildFile, String cmdLineArgs, boolean buildVariablesAsProperties, boolean continueOnBuildFailure, boolean unstableIfWarnings, boolean doNotUseChcpCommand)
      When this builder is created in the project configuration step, the builder object will be created from the strings below.
      Parameters:
      msBuildName - The Visual Studio logical name
      msBuildFile - The name/location of the MSBuild file
      cmdLineArgs - Whitespace separated list of command line arguments
      buildVariablesAsProperties - If true, pass build variables as properties to MSBuild
      continueOnBuildFailure - If true, job will continue dispite of MSBuild build failure
      unstableIfWarnings - If true, job will be unstable if there are warnings
      doNotUseChcpCommand - If true, job will not use chcp command before running msbuild
  • Method Details