Dotnet Custom Step
A dotnet build step to run a custom command
Example. Runs dotnet EXECUTABLE
to run specified .NET application
buildType {
// Other Build Type settings ...
steps {
// Other Build Steps ...
dotnetCustom {
executables = "MyProgram.exe"
args = "abc=123"
}
Content copied to clipboard }
}
See also
Properties
Optional collection of build step execution conditions
Specifies which Docker image to use for running this build step. I.e. the build step will be run inside specified docker image, using 'docker run' wrapper.
Specifies which Docker image platform will be used to run this build step.
If enabled, "pull image" command will be run before docker run.
Additional docker run command arguments
Specify paths Specify paths to executable files. Wildcards are supported.
Build step execution mode
Working directory for executables, specify it if it is different from the checkout * directory.
Functions
Deletes all configured build step conditions
Configures build step conditions
Copies parameters of this object to the specified target
Validates this object and reports found errors to the provided consumer