xcode-list-schemes
Retrieve all available build schemes from an Xcode project or workspace by specifying its path, enabling efficient project configuration and management.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectPath | Yes | Xcode 프로젝트 또는 워크스페이스 경로 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectPath": {
"description": "Xcode 프로젝트 또는 워크스페이스 경로",
"type": "string"
}
},
"required": [
"projectPath"
],
"type": "object"
}