open class MSBuildStep : BuildStep
A build step running MSBuild script
See Also
sealed class Coverage : CompoundParam |
|
enum class MSBuildToolsVersion
MSBuild ToolsVersion |
|
enum class MSBuildVersion
MSBuild version |
|
enum class Platform
A required platform bitness |
|
enum class PlatformBitness |
|
enum class PlatformVersion |
|
enum class Registration |
|
enum class ReportOrder |
|
enum class ReportType |
MSBuildStep(init: MSBuildStep.() -> Unit = {}, base: MSBuildStep? = null) |
var args: String?
Additional command line parameters for MSBuild |
|
var coverage: Coverage?
Specifies coverage tool to use |
|
var path: String?
A path to the solution to be built relative to the build checkout directory |
|
var platform: Platform?
A required platform bitness |
|
var reduceTestFeedback: Boolean?
Whether TeamCity should run recently failed tests first to reduce test feedback |
|
var targets: String?
Space- or comma-separated list of MSBuild targets to execute |
|
var toolsVersion: MSBuildToolsVersion?
A version of tools to be used to compile (equivalent to the /toolsversion: commandline argument). |
|
var version: MSBuildVersion?
MSBuild version to use |
|
var workingDir: String?
Build working directory for ant script, specify it if it is different from the checkout directory. |
var conditions: BuildStepConditions
Optional collection of build step execution conditions |
|
var enabled: Boolean
Specifies whether the step is enabled |
|
var executionMode: ExecutionMode
Build step execution mode |
|
var id: String?
Id of the step, if not specified will be generated |
|
var name: String
Build step name |
|
var type: String
Build step type |
fun dotcover(init: Dotcover.() -> Unit = {}): Dotcover |
|
fun ncover(init: Ncover.() -> Unit = {}): Ncover |
|
fun ncover3(init: Ncover3.() -> Unit = {}): Ncover3 |
|
fun partcover(init: Partcover.() -> Unit = {}): Partcover |
fun conditions(base: BuildStepConditions? = null, init: BuildStepConditions.() -> Unit = {}): Unit
Configures build step conditions |