xcode_set_active_scheme
Set the active scheme in an Xcode project by specifying the project path and scheme name to streamline build automation and development workflows.
Instructions
Set the active scheme for a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scheme_name | Yes | Name of the scheme to activate | |
xcodeproj | Yes | Path to the .xcodeproj file (or .xcworkspace if available) - supports both absolute (/path/to/project.xcodeproj) and relative (MyApp.xcodeproj) paths |
Input Schema (JSON Schema)
{
"properties": {
"scheme_name": {
"description": "Name of the scheme to activate",
"type": "string"
},
"xcodeproj": {
"description": "Path to the .xcodeproj file (or .xcworkspace if available) - supports both absolute (/path/to/project.xcodeproj) and relative (MyApp.xcodeproj) paths",
"type": "string"
}
},
"required": [
"xcodeproj",
"scheme_name"
],
"type": "object"
}