Русский (Russian)
Appearance
STRUCT
ExecutionAction
Contents
title
scriptText
target
shellPath
executionAction(title:scriptText:target:shellPath:)
public struct ExecutionAction: Equatable, Codable, Sendable
An action that can be executed as part of another action for pre or post execution.
title
public var title: String
scriptText
public var scriptText: String
target
public var target: TargetReference?
shellPath
public var shellPath: String?
The path to the shell which shall execute this script. if it is nil, Xcode will use default value.
executionAction(title:scriptText:target:shellPath:)
public static func executionAction(
title: String = "Run Script",
scriptText: String,
target: TargetReference? = nil,
shellPath: String? = nil
) -> Self