Merged
Conversation
646d3f6 to
8694aa1
Compare
Add support for parsing and building IDEWorkspaceChecks.plist files. Introduced in Xcode 9.3, these store workspace check states to prevent recomputation on each open. Primary use: suppressing the macOS 32-bit deprecation warning via IDEDidComputeMac32BitWarning flag. Features: - Low-level API: parseChecks/buildChecks for plist manipulation - High-level API: IDEWorkspaceChecks class with open/create/save methods - XCWorkspace integration: getWorkspaceChecks, setMac32BitWarningComputed - Convenience property: mac32BitWarningComputed getter/setter Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8694aa1 to
4dfb341
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add support for parsing and building
IDEWorkspaceChecks.plistfiles.Introduced in Xcode 9.3, these files store the state of workspace checks to prevent them from being recomputed each time the workspace is opened. The primary use is suppressing the macOS 32-bit deprecation warning via the
IDEDidComputeMac32BitWarningflag.Note: This is NOT related to the "trust this project" security dialog - that's a separate Xcode feature.
Features
parseChecks/buildChecksfunctions for plist manipulationIDEWorkspaceChecksclass withopen/create/savemethodsgetWorkspaceChecks(),setMac32BitWarningComputed()methodsmac32BitWarningComputedgetter/setterReferences
Test plan
parseChecks/buildChecks(10 tests)IDEWorkspaceChecksclass (30 tests)🤖 Generated with Claude Code