xcode_clean_project
Remove build artifacts from an Xcode project by specifying the project path and scheme, ensuring a clean build environment for iOS/macOS development.
Instructions
Clean build artifacts for an Xcode project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | Yes | Path to .xcodeproj file | |
scheme | No | Scheme to clean |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Path to .xcodeproj file",
"type": "string"
},
"scheme": {
"description": "Scheme to clean",
"type": "string"
}
},
"required": [
"project_path"
],
"type": "object"
}