show_build_set_ws
Retrieves build settings from an Xcode workspace by specifying the workspace path and scheme, enabling efficient configuration analysis.
Instructions
Shows build settings from a workspace using xcodebuild. IMPORTANT: Requires workspacePath and scheme. Example: show_build_set_ws({ workspacePath: '/path/to/MyProject.xcworkspace', scheme: 'MyScheme' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
scheme | Yes | The scheme to use (Required) | |
workspacePath | Yes | Path to the .xcworkspace file (Required) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"scheme": {
"description": "The scheme to use (Required)",
"type": "string"
},
"workspacePath": {
"description": "Path to the .xcworkspace file (Required)",
"type": "string"
}
},
"required": [
"workspacePath",
"scheme"
],
"type": "object"
}