list_schems_proj
Retrieve available schemes from an Xcode project file by specifying the project path. Simplify project management and streamline development workflows.
Instructions
Lists available schemes in the project file. IMPORTANT: Requires projectPath. Example: list_schems_proj({ projectPath: '/path/to/MyProject.xcodeproj' })
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectPath | Yes | Path to the .xcodeproj file (Required) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectPath": {
"description": "Path to the .xcodeproj file (Required)",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}