The Swift Package Index logo.Swift Package Index

Build Information

Successful build of BlueprintUI, reference 6.7.0 (2d7d06), with Swift 6.1 for iOS using Xcode 16.3 on 19 Apr 2026 23:24:09 UTC.

Swift 6 data race errors: 100

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme BlueprintUI-Package -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:268:14: note: calls to instance method 'update(model:text:environment:isMeasuring:)' from outside of its actor context are implicitly asynchronous
        func update(model: AttributedLabel, text: NSAttributedString, environment: Environment, isMeasuring: Bool) {
             ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:268:14: note: main actor isolation inferred from inheritance from class 'UILabel'
        func update(model: AttributedLabel, text: NSAttributedString, environment: Environment, isMeasuring: Bool) {
             ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:751:24: warning: call to main actor-isolated instance method 'boundingShape(for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            container?.boundingShape(for: self) ?? calculateBoundingShape()
                       ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:698:14: note: calls to instance method 'boundingShape(for:)' from outside of its actor context are implicitly asynchronous
        func boundingShape(for link: Link) -> Link.BoundingShape {
             ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:698:14: note: main actor isolation inferred from inheritance from class 'UILabel'
        func boundingShape(for link: Link) -> Link.BoundingShape {
             ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:756:47: warning: call to main actor-isolated instance method 'makeTextStorage()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                  let textStorage = container.makeTextStorage(),
                                              ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:357:14: note: calls to instance method 'makeTextStorage()' from outside of its actor context are implicitly asynchronous
        func makeTextStorage() -> NSTextStorage? {
             ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:357:14: note: main actor isolation inferred from inheritance from class 'UILabel'
        func makeTextStorage() -> NSTextStorage? {
             ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:754:26: note: add '@MainActor' to make instance method 'calculateBoundingShape()' part of global actor 'MainActor'
        fileprivate func calculateBoundingShape() -> BoundingShape {
                         ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:140:19: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            label.update(model: self, text: text, environment: environment, isMeasuring: true)
            ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:140:19: note: sending task-isolated 'self' to main actor-isolated instance method 'update(model:text:environment:isMeasuring:)' risks causing data races between main actor-isolated and task-isolated uses
            label.update(model: self, text: text, environment: environment, isMeasuring: true)
                  ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:140:19: warning: sending 'text' risks causing data races; this is an error in the Swift 6 language mode
            label.update(model: self, text: text, environment: environment, isMeasuring: true)
            ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:140:19: note: sending task-isolated 'text' to main actor-isolated instance method 'update(model:text:environment:isMeasuring:)' risks causing data races between main actor-isolated and task-isolated uses
            label.update(model: self, text: text, environment: environment, isMeasuring: true)
                  ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:140:19: warning: sending 'environment' risks causing data races; this is an error in the Swift 6 language mode
            label.update(model: self, text: text, environment: environment, isMeasuring: true)
            ~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:140:19: note: sending task-isolated 'environment' to main actor-isolated instance method 'update(model:text:environment:isMeasuring:)' risks causing data races between main actor-isolated and task-isolated uses
            label.update(model: self, text: text, environment: environment, isMeasuring: true)
                  ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:153:22: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                view.update(model: self, text: text, environment: context.environment, isMeasuring: false)
                ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:153:22: note: sending task-isolated 'self' to main actor-isolated instance method 'update(model:text:environment:isMeasuring:)' risks causing data races between main actor-isolated and task-isolated uses
                view.update(model: self, text: text, environment: context.environment, isMeasuring: false)
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:153:22: warning: sending 'text' risks causing data races; this is an error in the Swift 6 language mode
                view.update(model: self, text: text, environment: context.environment, isMeasuring: false)
                ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:153:22: note: sending task-isolated 'text' to main actor-isolated instance method 'update(model:text:environment:isMeasuring:)' risks causing data races between main actor-isolated and task-isolated uses
                view.update(model: self, text: text, environment: context.environment, isMeasuring: false)
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:153:22: warning: sending 'context.environment' risks causing data races; this is an error in the Swift 6 language mode
                view.update(model: self, text: text, environment: context.environment, isMeasuring: false)
                ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:153:22: note: sending task-isolated 'context.environment' to main actor-isolated instance method 'update(model:text:environment:isMeasuring:)' risks causing data races between main actor-isolated and task-isolated uses
                view.update(model: self, text: text, environment: context.environment, isMeasuring: false)
                     ^
SwiftEmitModule normal arm64 Emitting\ module\ for\ BlueprintUICommonControls (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
EmitSwiftModule normal arm64 (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityModifiers.swift:4:8: warning: file 'AccessibilityModifiers.swift' is part of module 'BlueprintUICommonControls'; ignoring import
import BlueprintUICommonControls
       ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:103:13: warning: main actor-isolated property 'accessibilityCustomContent' cannot be used to satisfy nonisolated requirement from protocol 'AXCustomContentProvider'; this is an error in the Swift 6 language mode
        var accessibilityCustomContent: [AXCustomContent]! = [] // The exclamation `!` is in the protocol definition and required.
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:100:52: note: add '@preconcurrency' to the 'AXCustomContentProvider' conformance to defer isolation checking to run time
    private final class AccessibilityView: UIView, AXCustomContentProvider {
                                                   ^
                                                   @preconcurrency
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/Accessibility.framework/Headers/AXCustomContent.h:53:74: note: requirement 'accessibilityCustomContent' declared here
@property (nonatomic, copy, null_resettable) NSArray<AXCustomContent *> *accessibilityCustomContent;
                                                                         ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel+Environment.swift:25:23: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'any URLHandler' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let defaultValue: URLHandler = {
                      ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel+Environment.swift:9:17: note: protocol 'URLHandler' does not conform to the 'Sendable' protocol
public protocol URLHandler {
                ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel+Environment.swift:25:23: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    public static let defaultValue: URLHandler = {
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel+Environment.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let defaultValue: URLHandler = {
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/AttributedLabel.swift:131:24: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    private static let prototypeLabel = LabelView()
                       ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:16:27: warning: static property 'topLeft' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let topLeft = Corners(rawValue: 1)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:16:27: note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
        public static let topLeft = Corners(rawValue: 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:16:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let topLeft = Corners(rawValue: 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:17:27: warning: static property 'topRight' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let topRight = Corners(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:17:27: note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
        public static let topRight = Corners(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:17:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let topRight = Corners(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:18:27: warning: static property 'bottomLeft' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottomLeft = Corners(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:18:27: note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
        public static let bottomLeft = Corners(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:18:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottomLeft = Corners(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:19:27: warning: static property 'bottomRight' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottomRight = Corners(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:19:27: note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
        public static let bottomRight = Corners(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:19:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottomRight = Corners(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:21:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Corners = [.topLeft, .topRight, .bottomLeft, .bottomRight]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:21:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Corners = [.topLeft, .topRight, .bottomLeft, .bottomRight]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Corners = [.topLeft, .topRight, .bottomLeft, .bottomRight]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:22:27: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let top: Corners = [.topRight, .topLeft]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:22:27: note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
        public static let top: Corners = [.topRight, .topLeft]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:22:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let top: Corners = [.topRight, .topLeft]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:23:27: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let left: Corners = [.topLeft, .bottomLeft]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:23:27: note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
        public static let left: Corners = [.topLeft, .bottomLeft]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:23:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let left: Corners = [.topLeft, .bottomLeft]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:24:27: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottom: Corners = [.bottomLeft, .bottomRight]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:24:27: note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
        public static let bottom: Corners = [.bottomLeft, .bottomRight]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:24:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottom: Corners = [.bottomLeft, .bottomRight]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:25:27: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let right: Corners = [.topRight, .bottomRight]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:25:27: note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
        public static let right: Corners = [.topRight, .bottomRight]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:25:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let right: Corners = [.topRight, .bottomRight]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:34:27: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let top = SafeAreaEdge(rawValue: 1)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:34:27: note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
        public static let top = SafeAreaEdge(rawValue: 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:34:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let top = SafeAreaEdge(rawValue: 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:35:27: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let left = SafeAreaEdge(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:35:27: note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
        public static let left = SafeAreaEdge(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:35:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let left = SafeAreaEdge(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:36:27: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottom = SafeAreaEdge(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:36:27: note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
        public static let bottom = SafeAreaEdge(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:36:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottom = SafeAreaEdge(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:37:27: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let right = SafeAreaEdge(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:37:27: note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
        public static let right = SafeAreaEdge(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:37:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let right = SafeAreaEdge(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:39:27: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let horizontal: Self = [.left, .right]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:39:27: note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
        public static let horizontal: Self = [.left, .right]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:39:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let horizontal: Self = [.left, .right]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:40:27: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let vertical: Self = [.top, .bottom]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:40:27: note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
        public static let vertical: Self = [.top, .bottom]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:40:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let vertical: Self = [.top, .bottom]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:44:29: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let all: Self = [.top, .left, .bottom, .right]
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:44:29: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        internal static let all: Self = [.top, .left, .bottom, .right]
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:44:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let all: Self = [.top, .left, .bottom, .right]
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:778:10: warning: main actor-isolated instance method 'keyboardFrameWillChange(for:animationDuration:animationCurve:)' cannot be used to satisfy nonisolated requirement from protocol 'KeyboardObserverDelegate'; this is an error in the Swift 6 language mode
    func keyboardFrameWillChange(
         ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:778:10: note: add 'nonisolated' to 'keyboardFrameWillChange(for:animationDuration:animationCurve:)' to make this instance method not isolated to the actor
    func keyboardFrameWillChange(
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:720:32: note: add '@preconcurrency' to the 'KeyboardObserverDelegate' conformance to defer isolation checking to run time
extension ScrollerWrapperView: KeyboardObserverDelegate {
                               ^
                               @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-keyboard-observer/KeyboardObserver/Sources/KeyboardObserver.swift:26:10: note: mark the protocol requirement 'keyboardFrameWillChange(for:animationDuration:animationCurve:)' 'async' to allow actor-isolated conformances
    func keyboardFrameWillChange(
         ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:816:27: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'ScrollView.ContentOffset' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let top = ContentOffset { _ in .zero }
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:806:19: note: consider making struct 'ContentOffset' conform to the 'Sendable' protocol
    public struct ContentOffset {
                  ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:816:27: note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
        public static let top = ContentOffset { _ in .zero }
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:816:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let top = ContentOffset { _ in .zero }
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:817:27: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'ScrollView.ContentOffset' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottom = ContentOffset { context in
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:806:19: note: consider making struct 'ContentOffset' conform to the 'Sendable' protocol
    public struct ContentOffset {
                  ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:817:27: note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
        public static let bottom = ContentOffset { context in
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:817:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottom = ContentOffset { context in
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/SegmentedControl.swift:13:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    public var roundingScale: CGFloat = UIScreen.main.scale
               ^
SwiftCompile normal arm64 Compiling\ AccessibilityElement.swift,\ AccessibilityFocus.swift,\ AccessibilityLargeContentViewer.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityFocus.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityLargeContentViewer.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:103:13: warning: main actor-isolated property 'accessibilityCustomContent' cannot be used to satisfy nonisolated requirement from protocol 'AXCustomContentProvider'; this is an error in the Swift 6 language mode
        var accessibilityCustomContent: [AXCustomContent]! = [] // The exclamation `!` is in the protocol definition and required.
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:100:52: note: add '@preconcurrency' to the 'AXCustomContentProvider' conformance to defer isolation checking to run time
    private final class AccessibilityView: UIView, AXCustomContentProvider {
                                                   ^
                                                   @preconcurrency
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/Accessibility.framework/Headers/AXCustomContent.h:53:74: note: requirement 'accessibilityCustomContent' declared here
@property (nonatomic, copy, null_resettable) NSArray<AXCustomContent *> *accessibilityCustomContent;
                                                                         ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:72:25: warning: main actor-isolated property 'accessibilityLabel' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityLabel = label
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:64:49: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, copy) NSString *accessibilityLabel API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                                                ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:73:25: warning: main actor-isolated property 'accessibilityValue' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityValue = value
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:95:49: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, copy) NSString *accessibilityValue API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                                                ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:74:25: warning: main actor-isolated property 'accessibilityHint' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityHint = hint
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:79:49: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, copy) NSString *accessibilityHint API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                                                ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:75:25: warning: main actor-isolated property 'accessibilityIdentifier' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityIdentifier = identifier
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:76:25: warning: main actor-isolated property 'accessibilityTraits' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityTraits = accessibilityTraits
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:113:45: note: mutation of this property is only permitted within the actor
@property (nonatomic) UIAccessibilityTraits accessibilityTraits API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:77:25: warning: main actor-isolated property 'isAccessibilityElement' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.isAccessibilityElement = true
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:52:28: note: mutation of this property is only permitted within the actor
@property (nonatomic) BOOL isAccessibilityElement API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                           ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:78:25: warning: main actor-isolated property 'accessibilityFrameSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityFrameSize = accessibilityFrameSize
                        ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:101:13: note: mutation of this property is only permitted within the actor
        var accessibilityFrameSize: CGSize?
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:79:25: warning: main actor-isolated property 'accessibilityFrameCornerStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityFrameCornerStyle = accessibilityFrameCornerStyle
                        ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:102:13: note: mutation of this property is only permitted within the actor
        var accessibilityFrameCornerStyle: CornerStyle = .square
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:80:25: warning: main actor-isolated property 'activate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.activate = accessibilityActivate
                        ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:107:13: note: mutation of this property is only permitted within the actor
        var activate: (() -> Bool)?
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:81:25: warning: main actor-isolated property 'accessibilityCustomActions' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityCustomActions = customActions.map { action in
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:411:82: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, strong) NSArray <UIAccessibilityCustomAction *> *accessibilityCustomActions API_AVAILABLE(ios(8.0)) API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                                                                                 ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:82:21: warning: call to main actor-isolated initializer 'init(name:image:actionHandler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    UIAccessibilityCustomAction(name: action.name, image: action.image) { _ in action.onActivation() }
                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityCustomAction.h:27:1: note: calls to initializer 'init(name:image:actionHandler:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithName:(NSString *)name image:(nullable UIImage *)image actionHandler:(UIAccessibilityCustomActionHandler)actionHandler API_AVAILABLE(ios(14.0), tvos(14.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:84:25: warning: main actor-isolated property 'accessibilityCustomContent' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityCustomContent = customContent.map { $0.axCustomContent }
                        ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:103:13: note: mutation of this property is only permitted within the actor
        var accessibilityCustomContent: [AXCustomContent]! = [] // The exclamation `!` is in the protocol definition and required.
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:85:25: warning: main actor-isolated property 'accessibilityUserInputLabels' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                element.accessibilityUserInputLabels = userInputLabels
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:204:69: note: mutation of this property is only permitted within the actor
@property (null_resettable, nonatomic, strong) NSArray<NSString *> *accessibilityUserInputLabels API_AVAILABLE(ios(13.0),tvos(13.0)) API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                                                                    ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:90:29: warning: main actor-isolated property 'increment' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    element.increment = incrementAction
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:105:13: note: mutation of this property is only permitted within the actor
        var increment: (() -> Void)?
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:91:29: warning: main actor-isolated property 'decrement' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    element.decrement = decrementAction
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:106:13: note: mutation of this property is only permitted within the actor
        var decrement: (() -> Void)?
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:93:29: warning: main actor-isolated property 'increment' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    element.increment = nil
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:105:13: note: mutation of this property is only permitted within the actor
        var increment: (() -> Void)?
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:94:29: warning: main actor-isolated property 'decrement' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    element.decrement = nil
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:106:13: note: mutation of this property is only permitted within the actor
        var decrement: (() -> Void)?
            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:82:21: warning: sending value of non-Sendable type '(UIAccessibilityCustomAction) -> Bool' risks causing data races; this is an error in the Swift 6 language mode
                    UIAccessibilityCustomAction(name: action.name, image: action.image) { _ in action.onActivation() }
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityElement.swift:82:21: note: sending task-isolated value of non-Sendable type '(UIAccessibilityCustomAction) -> Bool' to main actor-isolated initializer 'init(name:image:actionHandler:)' risks causing races in between task-isolated and main actor-isolated uses
                    UIAccessibilityCustomAction(name: action.name, image: action.image) { _ in action.onActivation() }
                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityFocus.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityFocus.swift:31:22: warning: call to main actor-isolated instance method 'apply(model:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                view.apply(model: self)
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityFocus.swift:46:14: note: calls to instance method 'apply(model:)' from outside of its actor context are implicitly asynchronous
        func apply(model: AccessibilityFocus) {
             ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityFocus.swift:46:14: note: main actor isolation inferred from inheritance from class 'UIView'
        func apply(model: AccessibilityFocus) {
             ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityFocus.swift:31:22: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                view.apply(model: self)
                ~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityFocus.swift:31:22: note: sending task-isolated 'self' to main actor-isolated instance method 'apply(model:)' risks causing data races between main actor-isolated and task-isolated uses
                view.apply(model: self)
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityLargeContentViewer.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityLargeContentViewer.swift:134:26: warning: cannot form key path to main actor-isolated property 'largeContentViewerConfiguration'; this is an error in the Swift 6 language mode
                config[\.largeContentViewerConfiguration] = configuration
                         ^
SwiftDriverJobDiscovery normal arm64 Compiling LocalizedStrings.swift (in target 'BlueprintUIAccessibilityCore' from project 'BlueprintUI')
SwiftCompile normal arm64 Compiling\ UIBezierPath+Extensions.swift,\ Label.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Internal/UIBezierPath+Extensions.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Label.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Internal/UIBezierPath+Extensions.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Label.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling AccessibilityTraits+Extensions.swift (in target 'BlueprintUIAccessibilityCore' from project 'BlueprintUI')
SwiftCompile normal arm64 Compiling\ TextField.swift,\ TextShadow.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextShadow.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:44:29: warning: cannot form key path to main actor-isolated property 'backgroundColor'; this is an error in the Swift 6 language mode
            configuration[\.backgroundColor] = .clear
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:46:29: warning: cannot form key path to main actor-isolated property 'text'; this is an error in the Swift 6 language mode
            configuration[\.text] = text
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:47:29: warning: cannot form key path to main actor-isolated property 'placeholder'; this is an error in the Swift 6 language mode
            configuration[\.placeholder] = placeholder
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:48:29: warning: cannot form key path to main actor-isolated property 'onChange'; this is an error in the Swift 6 language mode
            configuration[\.onChange] = onChange
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:49:29: warning: cannot form key path to main actor-isolated property 'isSecureTextEntry'; this is an error in the Swift 6 language mode
            configuration[\.isSecureTextEntry] = secure
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:50:29: warning: cannot form key path to main actor-isolated property 'isEnabled'; this is an error in the Swift 6 language mode
            configuration[\.isEnabled] = isEnabled
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:51:29: warning: cannot form key path to main actor-isolated property 'textAlignment'; this is an error in the Swift 6 language mode
            configuration[\.textAlignment] = textAlignment
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:52:29: warning: cannot form key path to main actor-isolated property 'font'; this is an error in the Swift 6 language mode
            configuration[\.font] = font
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:53:29: warning: cannot form key path to main actor-isolated property 'textColor'; this is an error in the Swift 6 language mode
            configuration[\.textColor] = textColor
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:55:29: warning: cannot form key path to main actor-isolated property 'clearButtonMode'; this is an error in the Swift 6 language mode
            configuration[\.clearButtonMode] = clearButtonMode
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:57:29: warning: cannot form key path to main actor-isolated property 'keyboardType'; this is an error in the Swift 6 language mode
            configuration[\.keyboardType] = keyboardType
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:58:29: warning: cannot form key path to main actor-isolated property 'keyboardAppearance'; this is an error in the Swift 6 language mode
            configuration[\.keyboardAppearance] = keyboardAppearance
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:60:29: warning: cannot form key path to main actor-isolated property 'autocapitalizationType'; this is an error in the Swift 6 language mode
            configuration[\.autocapitalizationType] = autocapitalizationType
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:61:29: warning: cannot form key path to main actor-isolated property 'autocorrectionType'; this is an error in the Swift 6 language mode
            configuration[\.autocorrectionType] = autocorrectionType
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:62:29: warning: cannot form key path to main actor-isolated property 'spellCheckingType'; this is an error in the Swift 6 language mode
            configuration[\.spellCheckingType] = spellCheckingType
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:63:29: warning: cannot form key path to main actor-isolated property 'textContentType'; this is an error in the Swift 6 language mode
            configuration[\.textContentType] = textContentType
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:65:29: warning: cannot form key path to main actor-isolated property 'onReturn'; this is an error in the Swift 6 language mode
            configuration[\.onReturn] = onReturn
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:66:29: warning: cannot form key path to main actor-isolated property 'returnKeyType'; this is an error in the Swift 6 language mode
            configuration[\.returnKeyType] = returnKeyType
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:67:29: warning: cannot form key path to main actor-isolated property 'enablesReturnKeyAutomatically'; this is an error in the Swift 6 language mode
            configuration[\.enablesReturnKeyAutomatically] = enablesReturnKeyAutomatically
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:69:29: warning: cannot form key path to main actor-isolated property 'focusBinding'; this is an error in the Swift 6 language mode
            configuration[\.focusBinding] = focusBinding
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:72:51: warning: cannot form key path to main actor-isolated property 'accessibilityTraits'; this is an error in the Swift 6 language mode
                if let existing = configuration[\.accessibilityTraits] {
                                                  ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:73:37: warning: cannot form key path to main actor-isolated property 'accessibilityTraits'; this is an error in the Swift 6 language mode
                    configuration[\.accessibilityTraits] = existing.union(UIAccessibilityTraits(with: traits))
                                    ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextField.swift:75:37: warning: cannot form key path to main actor-isolated property 'accessibilityTraits'; this is an error in the Swift 6 language mode
                    configuration[\.accessibilityTraits] = UIAccessibilityTraits(with: traits)
                                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TextShadow.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling AccessibilitySetter.swift (in target 'BlueprintUIAccessibilityCore' from project 'BlueprintUI')
SwiftCompile normal arm64 Compiling\ EditingMenu.swift,\ Image.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Image.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift:85:17: warning: call to main actor-isolated initializer 'init(presentationMode:frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                View(presentationMode: presentationMode, frame: context.bounds)
                ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift:429:9: note: calls to initializer 'init(presentationMode:frame:)' from outside of its actor context are implicitly asynchronous
        init(presentationMode: PresentationMode, frame: CGRect) {
        ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift:429:9: note: main actor isolation inferred from inheritance from class 'UIView'
        init(presentationMode: PresentationMode, frame: CGRect) {
        ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift:88:22: warning: cannot form key path to main actor-isolated property 'items'; this is an error in the Swift 6 language mode
            config[\.items] = EditingMenuItem.resolved(with: items)
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift:89:22: warning: cannot form key path to main actor-isolated property 'presentationMode'; this is an error in the Swift 6 language mode
            config[\.presentationMode] = presentationMode
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift:297:24: warning: call to main actor-isolated initializer 'init(title:action:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                return UIMenuItem(title: title, action: selector)
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIMenuController.h:60:1: note: calls to initializer 'init(title:action:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithTitle:(NSString *)title action:(SEL)action NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift:85:17: warning: sending 'self.presentationMode' risks causing data races; this is an error in the Swift 6 language mode
                View(presentationMode: presentationMode, frame: context.bounds)
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/EditingMenu.swift:85:17: note: sending task-isolated 'self.presentationMode' to main actor-isolated initializer 'init(presentationMode:frame:)' risks causing data races between main actor-isolated and task-isolated uses
                View(presentationMode: presentationMode, frame: context.bounds)
                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Image.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Image.swift:44:22: warning: cannot form key path to main actor-isolated property 'image'; this is an error in the Swift 6 language mode
            config[\.image] = image
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Image.swift:45:22: warning: cannot form key path to main actor-isolated property 'contentMode'; this is an error in the Swift 6 language mode
            config[\.contentMode] = contentMode.uiViewContentMode
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Image.swift:46:22: warning: cannot form key path to main actor-isolated property 'layer'; this is an error in the Swift 6 language mode
            config[\.layer.minificationFilter] = .trilinear
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Image.swift:47:22: warning: cannot form key path to main actor-isolated property 'tintColor'; this is an error in the Swift 6 language mode
            config[\.tintColor] = tintColor
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Image.swift:50:26: warning: cannot form key path to main actor-isolated property 'accessibilityTraits'; this is an error in the Swift 6 language mode
                config[\.accessibilityTraits] = UIAccessibilityTraits.none
                         ^
SwiftDriverJobDiscovery normal arm64 Compiling AccessibilityDeferral.swift (in target 'BlueprintUIAccessibilityCore' from project 'BlueprintUI')
SwiftCompile normal arm64 Compiling\ TransitionContainer.swift,\ UserInterfaceOverridingElement.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TransitionContainer.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/UserInterfaceOverridingElement.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/TransitionContainer.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/UserInterfaceOverridingElement.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/UserInterfaceOverridingElement.swift:46:22: warning: cannot form key path to main actor-isolated property 'overrideUserInterfaceStyle'; this is an error in the Swift 6 language mode
            config[\.overrideUserInterfaceStyle] = userInterfaceStyle
                     ^
SwiftDriverJobDiscovery normal arm64 Compiling Conditionals.swift, ConstrainedAspectRatio.swift, ConstrainedSize.swift, Decorate.swift, ElementBuilder.swift, ElementDimensions.swift, Empty.swift, EqualStack.swift, FloatingPoint+ScaleRounding.swift, Flow.swift, GeometryReader.swift (in target 'BlueprintUI' from project 'BlueprintUI')
SwiftCompile normal arm64 Compiling\ Box.swift,\ Button.swift,\ CornerStyle.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Button.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:61:49: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.backgroundColor != view.backgroundColor {
                                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:62:26: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.backgroundColor = self.backgroundColor
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:65:56: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.cornerStyle.cornerMask != view.layer.maskedCorners {
                                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:66:26: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.layer.maskedCorners = self.cornerStyle.cornerMask
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:69:73: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.cornerStyle.radius(for: context.bounds) != view.layer.cornerRadius {
                                                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:70:26: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.layer.cornerRadius = self.cornerStyle.radius(for: context.bounds)
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:73:64: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.cornerCurve.toLayerCornerCurve != view.layer.cornerCurve {
                                                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:74:26: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.layer.cornerCurve = self.cornerCurve.toLayerCornerCurve
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:77:60: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.borderStyle.color?.cgColor != view.layer.borderColor {
                                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:78:26: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.layer.borderColor = self.borderStyle.color?.cgColor
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:81:51: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.borderStyle.width != view.layer.borderWidth {
                                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:82:26: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.layer.borderWidth = self.borderStyle.width
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:85:66: warning: main actor-isolated property 'shadowRoundCorners' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.cornerStyle.shadowRoundedCorners != view.shadowRoundCorners {
                                                                 ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:289:9: note: property declared here
    var shadowRoundCorners: UIRectCorner = .allCorners
        ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:86:26: warning: main actor-isolated property 'shadowRoundCorners' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.shadowRoundCorners = self.cornerStyle.shadowRoundedCorners
                         ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:289:9: note: mutation of this property is only permitted within the actor
    var shadowRoundCorners: UIRectCorner = .allCorners
        ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:89:52: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.shadowStyle.radius != view.layer.shadowRadius {
                                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:90:26: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.layer.shadowRadius = self.shadowStyle.radius
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:93:52: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.shadowStyle.offset != view.layer.shadowOffset {
                                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:94:26: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.layer.shadowOffset = self.shadowStyle.offset
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:97:60: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.shadowStyle.color?.cgColor != view.layer.shadowColor {
                                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:98:26: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.layer.shadowColor = self.shadowStyle.color?.cgColor
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:101:61: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.shadowStyle.opacity != CGFloat(view.layer.shadowOpacity) {
                                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:102:26: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.layer.shadowOpacity = Float(self.shadowStyle.opacity)
                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:108:58: warning: main actor-isolated property 'clipsToBounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.clipsContent != view.contentView.clipsToBounds {
                                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:302:56: note: property declared here
@property(nonatomic)                 BOOL              clipsToBounds;              // When YES, content and subviews are clipped to the bounds of the view. Default is NO.
                                                       ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:109:38: warning: main actor-isolated property 'clipsToBounds' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.contentView.clipsToBounds = self.clipsContent
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:302:56: note: mutation of this property is only permitted within the actor
@property(nonatomic)                 BOOL              clipsToBounds;              // When YES, content and subviews are clipped to the bounds of the view. Default is NO.
                                                       ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:112:85: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.cornerStyle.radius(for: context.bounds) != view.contentView.layer.cornerRadius {
                                                                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:113:38: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.contentView.layer.cornerRadius = self.cornerStyle.radius(for: context.bounds)
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:116:68: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if self.cornerStyle.cornerMask != view.contentView.layer.maskedCorners {
                                                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: property declared here
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Box.swift:117:38: warning: main actor-isolated property 'layer' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.contentView.layer.maskedCorners = self.cornerStyle.cornerMask
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:154:64: note: mutation of this property is only permitted within the actor
@property(nonatomic,readonly,strong)                 CALayer  *layer;              // returns view's layer. Will always return a non-nil value. view is layer's delegate
                                                               ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Button.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Button.swift:27:22: warning: cannot form key path to main actor-isolated property 'isEnabled'; this is an error in the Swift 6 language mode
            config[\.isEnabled] = isEnabled
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Button.swift:28:22: warning: cannot form key path to main actor-isolated property 'onTap'; this is an error in the Swift 6 language mode
            config[\.onTap] = onTap
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Button.swift:29:22: warning: cannot form key path to main actor-isolated property 'minimumTappableSize'; this is an error in the Swift 6 language mode
            config[\.minimumTappableSize] = minimumTappableSize
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:16:27: warning: static property 'topLeft' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let topLeft = Corners(rawValue: 1)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:16:27: note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
        public static let topLeft = Corners(rawValue: 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:16:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let topLeft = Corners(rawValue: 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:17:27: warning: static property 'topRight' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let topRight = Corners(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:17:27: note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
        public static let topRight = Corners(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:17:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let topRight = Corners(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:18:27: warning: static property 'bottomLeft' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottomLeft = Corners(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:18:27: note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
        public static let bottomLeft = Corners(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:18:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottomLeft = Corners(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:19:27: warning: static property 'bottomRight' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottomRight = Corners(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:19:27: note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
        public static let bottomRight = Corners(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:19:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottomRight = Corners(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:21:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Corners = [.topLeft, .topRight, .bottomLeft, .bottomRight]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:21:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Corners = [.topLeft, .topRight, .bottomLeft, .bottomRight]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:21:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Corners = [.topLeft, .topRight, .bottomLeft, .bottomRight]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:22:27: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let top: Corners = [.topRight, .topLeft]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:22:27: note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
        public static let top: Corners = [.topRight, .topLeft]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:22:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let top: Corners = [.topRight, .topLeft]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:23:27: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let left: Corners = [.topLeft, .bottomLeft]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:23:27: note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
        public static let left: Corners = [.topLeft, .bottomLeft]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:23:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let left: Corners = [.topLeft, .bottomLeft]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:24:27: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottom: Corners = [.bottomLeft, .bottomRight]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:24:27: note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
        public static let bottom: Corners = [.bottomLeft, .bottomRight]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:24:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottom: Corners = [.bottomLeft, .bottomRight]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:25:27: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'CornerStyle.Corners' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let right: Corners = [.topRight, .bottomRight]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:9:19: note: consider making struct 'Corners' conform to the 'Sendable' protocol
    public struct Corners: OptionSet, Equatable {
                  ^
                                               , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:25:27: note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
        public static let right: Corners = [.topRight, .bottomRight]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/CornerStyle.swift:25:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let right: Corners = [.topRight, .bottomRight]
                          ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling UIBezierPath+Extensions.swift, Label.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 Compiling\ Rule.swift,\ ScrollView.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Rule.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Rule.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Rule.swift:26:44: warning: main actor-isolated property 'scale' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                return 1.0 / UIScreen.main.scale
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:60:39: note: property declared here
@property(nonatomic,readonly) CGFloat scale API_AVAILABLE(ios(4.0));
                                      ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Rule.swift:26:39: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                return 1.0 / UIScreen.main.scale
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:57:49: note: class property declared here
@property(class, nonatomic, readonly) UIScreen *mainScreen API_DEPRECATED("Use a UIScreen instance found through context instead: i.e, view.window.windowScene.screen", ios(2.0, API_TO_BE_DEPRECATED), visionos(1.0, API_TO_BE_DEPRECATED)) API_UNAVAILABLE(watchos); // the device's internal screen
                                                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:34:27: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let top = SafeAreaEdge(rawValue: 1)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:34:27: note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
        public static let top = SafeAreaEdge(rawValue: 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:34:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let top = SafeAreaEdge(rawValue: 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:35:27: warning: static property 'left' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let left = SafeAreaEdge(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:35:27: note: add '@MainActor' to make static property 'left' part of global actor 'MainActor'
        public static let left = SafeAreaEdge(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:35:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let left = SafeAreaEdge(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:36:27: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottom = SafeAreaEdge(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:36:27: note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
        public static let bottom = SafeAreaEdge(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:36:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottom = SafeAreaEdge(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:37:27: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let right = SafeAreaEdge(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:37:27: note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
        public static let right = SafeAreaEdge(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:37:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let right = SafeAreaEdge(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:39:27: warning: static property 'horizontal' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let horizontal: Self = [.left, .right]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:39:27: note: add '@MainActor' to make static property 'horizontal' part of global actor 'MainActor'
        public static let horizontal: Self = [.left, .right]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:39:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let horizontal: Self = [.left, .right]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:40:27: warning: static property 'vertical' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let vertical: Self = [.top, .bottom]
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:40:27: note: add '@MainActor' to make static property 'vertical' part of global actor 'MainActor'
        public static let vertical: Self = [.top, .bottom]
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:40:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let vertical: Self = [.top, .bottom]
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:44:29: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ScrollView.SafeAreaEdge' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let all: Self = [.top, .left, .bottom, .right]
                            ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:26:19: note: consider making struct 'SafeAreaEdge' conform to the 'Sendable' protocol
    public struct SafeAreaEdge: OptionSet {
                  ^
                                         , Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:44:29: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        internal static let all: Self = [.top, .left, .bottom, .right]
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:44:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let all: Self = [.top, .left, .bottom, .right]
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:778:10: warning: main actor-isolated instance method 'keyboardFrameWillChange(for:animationDuration:animationCurve:)' cannot be used to satisfy nonisolated requirement from protocol 'KeyboardObserverDelegate'; this is an error in the Swift 6 language mode
    func keyboardFrameWillChange(
         ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:778:10: note: add 'nonisolated' to 'keyboardFrameWillChange(for:animationDuration:animationCurve:)' to make this instance method not isolated to the actor
    func keyboardFrameWillChange(
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:720:32: note: add '@preconcurrency' to the 'KeyboardObserverDelegate' conformance to defer isolation checking to run time
extension ScrollerWrapperView: KeyboardObserverDelegate {
                               ^
                               @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-keyboard-observer/KeyboardObserver/Sources/KeyboardObserver.swift:26:10: note: mark the protocol requirement 'keyboardFrameWillChange(for:animationDuration:animationCurve:)' 'async' to allow actor-isolated conformances
    func keyboardFrameWillChange(
         ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:816:27: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'ScrollView.ContentOffset' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let top = ContentOffset { _ in .zero }
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:806:19: note: consider making struct 'ContentOffset' conform to the 'Sendable' protocol
    public struct ContentOffset {
                  ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:816:27: note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
        public static let top = ContentOffset { _ in .zero }
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:816:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let top = ContentOffset { _ in .zero }
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:817:27: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'ScrollView.ContentOffset' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let bottom = ContentOffset { context in
                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:806:19: note: consider making struct 'ContentOffset' conform to the 'Sendable' protocol
    public struct ContentOffset {
                  ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:817:27: note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
        public static let bottom = ContentOffset { context in
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:817:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let bottom = ContentOffset { context in
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:94:17: warning: call to main actor-isolated initializer 'init(frame:representedElement:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                ScrollerWrapperView(frame: context.bounds, representedElement: self)
                ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:378:5: note: calls to initializer 'init(frame:representedElement:)' from outside of its actor context are implicitly asynchronous
    init(frame: CGRect, representedElement: ScrollView) {
    ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:378:5: note: main actor isolation inferred from inheritance from class 'UIView'
    init(frame: CGRect, representedElement: ScrollView) {
    ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:131:36: warning: main actor-isolated property 'contentSize' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                if view.scrollView.contentSize != contentSize {
                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:56:59: note: property declared here
@property(nonatomic)         CGSize                       contentSize;                    // default CGSizeZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:132:37: warning: main actor-isolated property 'contentSize' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                    view.scrollView.contentSize = contentSize
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:56:59: note: mutation of this property is only permitted within the actor
@property(nonatomic)         CGSize                       contentSize;                    // default CGSizeZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:137:22: warning: call to main actor-isolated instance method 'apply(scrollView:contentFrame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                view.apply(scrollView: self, contentFrame: contentFrame)
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:410:10: note: calls to instance method 'apply(scrollView:contentFrame:)' from outside of its actor context are implicitly asynchronous
    func apply(scrollView: ScrollView, contentFrame: CGRect) {
         ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:410:10: note: main actor isolation inferred from inheritance from class 'UIView'
    func apply(scrollView: ScrollView, contentFrame: CGRect) {
         ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:94:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                ScrollerWrapperView(frame: context.bounds, representedElement: self)
                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:94:17: note: sending task-isolated 'self' to main actor-isolated initializer 'init(frame:representedElement:)' risks causing data races between main actor-isolated and task-isolated uses
                ScrollerWrapperView(frame: context.bounds, representedElement: self)
                ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:137:22: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                view.apply(scrollView: self, contentFrame: contentFrame)
                ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/ScrollView.swift:137:22: note: sending task-isolated 'self' to main actor-isolated instance method 'apply(scrollView:contentFrame:)' risks causing data races between main actor-isolated and task-isolated uses
                view.apply(scrollView: self, contentFrame: contentFrame)
                     ^
SwiftDriverJobDiscovery normal arm64 Compiling SegmentedControl.swift, Tappable.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 Compiling\ AccessibilityBlocker.swift,\ AccessibilityCombine.swift,\ AccessibilityContainer.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityBlocker.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityCombine.swift /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityBlocker.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityBlocker.swift:36:22: warning: cannot form key path to main actor-isolated property 'isAccessibilityElement'; this is an error in the Swift 6 language mode
            config[\.isAccessibilityElement] = false
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityBlocker.swift:37:22: warning: cannot form key path to main actor-isolated property 'accessibilityElementsHidden'; this is an error in the Swift 6 language mode
            config[\.accessibilityElementsHidden] = isBlocking
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityCombine.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityCombine.swift:87:22: warning: cannot form key path to main actor-isolated property 'needsAccessibilityUpdate'; this is an error in the Swift 6 language mode
            config[\.needsAccessibilityUpdate] = true
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityCombine.swift:88:22: warning: cannot form key path to main actor-isolated property 'layoutDirection'; this is an error in the Swift 6 language mode
            config[\.layoutDirection] = context.environment.layoutDirection
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityCombine.swift:89:22: warning: cannot form key path to main actor-isolated property 'customSorting'; this is an error in the Swift 6 language mode
            config[\.customSorting] = customSorting
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityCombine.swift:90:22: warning: cannot form key path to main actor-isolated property 'customFilter'; this is an error in the Swift 6 language mode
            config[\.customFilter] = customFilter
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityCombine.swift:91:22: warning: cannot form key path to main actor-isolated property 'blockWhenNotAccessible'; this is an error in the Swift 6 language mode
            config[\.blockWhenNotAccessible] = blockWhenNotAccessible
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:61:22: warning: cannot form key path to main actor-isolated property 'accessibilityLabel'; this is an error in the Swift 6 language mode
            config[\.accessibilityLabel] = label
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:62:22: warning: cannot form key path to main actor-isolated property 'accessibilityValue'; this is an error in the Swift 6 language mode
            config[\.accessibilityValue] = value
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:63:22: warning: cannot form key path to main actor-isolated property 'accessibilityIdentifier'; this is an error in the Swift 6 language mode
            config[\.accessibilityIdentifier] = identifier
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:64:22: warning: cannot form key path to main actor-isolated property 'accessibilityContainerType'; this is an error in the Swift 6 language mode
            config[\.accessibilityContainerType] = containerType.UIKitContainerType
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:65:22: warning: cannot form key path to main actor-isolated property 'layoutDirection'; this is an error in the Swift 6 language mode
            config[\.layoutDirection] = context.environment.layoutDirection
                     ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:134:9: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        subviews.flatMap { subview -> [NSObject] in
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:222:64: note: property declared here
@property(nonatomic,readonly,copy) NSArray<__kindof UIView *> *subviews;
                                                               ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:135:24: warning: main actor-isolated property 'accessibilityElementsHidden' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if subview.accessibilityElementsHidden || subview.isHidden {
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:160:28: note: property declared here
@property (nonatomic) BOOL accessibilityElementsHidden API_AVAILABLE(ios(5.0)) API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                           ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:135:63: warning: main actor-isolated property 'isHidden' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            if subview.accessibilityElementsHidden || subview.isHidden {
                                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:307:56: note: property declared here
@property(nonatomic,getter=isHidden) BOOL              hidden;                     // default is NO. doesn't check superviews
                                                       ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:152:52: warning: main actor-isolated property 'accessibilityElements' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if let accessibilityElements = subview.accessibilityElements {
                                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h:53:50: note: property declared here
@property (nullable, nonatomic, strong) NSArray *accessibilityElements API_AVAILABLE(ios(8.0)) API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                                                 ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:156:35: warning: main actor-isolated property 'isAccessibilityElement' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
                    if elementObj.isAccessibilityElement {
                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:52:28: note: property declared here
@property (nonatomic) BOOL isAccessibilityElement API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                           ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:164:24: warning: main actor-isolated property 'isAccessibilityElement' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if subview.isAccessibilityElement {
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:52:28: note: property declared here
@property (nonatomic) BOOL isAccessibilityElement API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                           ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:175:9: warning: main actor-isolated property 'accessibilityElements' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        accessibilityElements?.flatMap { element -> [NSObject] in
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityContainer.h:53:50: note: property declared here
@property (nullable, nonatomic, strong) NSArray *accessibilityElements API_AVAILABLE(ios(8.0)) API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                                                 ^
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:174:16: note: add '@MainActor' to make instance method 'recursiveAccessibilityElements()' part of global actor 'MainActor'
    @objc func recursiveAccessibilityElements() -> [NSObject] {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Sources/Accessibility/AccessibilityContainer.swift:177:24: warning: main actor-isolated property 'isAccessibilityElement' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if element.isAccessibilityElement {
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibility.h:52:28: note: property declared here
@property (nonatomic) BOOL isAccessibilityElement API_UNAVAILABLE(watchos) NS_SWIFT_UI_ACTOR;
                           ^
SwiftDriverJobDiscovery normal arm64 Compiling AttributedText.swift, AttributedTextKey.swift, TextAttributeContainer.swift, BlueprintView.swift, ElementPreview.swift, Accessibility.swift, ContentStorage.swift, Element.swift, ElementContent.swift, EnvironmentAdaptingStorage.swift, LayoutStorage.swift (in target 'BlueprintUI' from project 'BlueprintUI')
SwiftDriverJobDiscovery normal arm64 Compiling AccessibilityComposition.swift (in target 'BlueprintUIAccessibilityCore' from project 'BlueprintUI')
SwiftDriver\ Compilation BlueprintUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'BlueprintUI' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BlueprintUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling AccessibilityElement.swift, AccessibilityFocus.swift, AccessibilityLargeContentViewer.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftDriverJobDiscovery normal arm64 Compiling TextField.swift, TextShadow.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftDriver\ Compilation BlueprintUIAccessibilityCore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'BlueprintUIAccessibilityCore' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BlueprintUIAccessibilityCore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TransitionContainer.swift, UserInterfaceOverridingElement.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUI.o normal (in target 'BlueprintUI' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUI.o
SwiftDriverJobDiscovery normal arm64 Emitting module for BlueprintUICommonControls (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftDriver\ Compilation\ Requirements BlueprintUICommonControls normal arm64 com.apple.xcode.tools.swift.compiler (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BlueprintUICommonControls -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/BlueprintUICommonControls-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls-Swift.h (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/BlueprintUICommonControls-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.swiftdoc (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.abi.json (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.swiftmodule (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.swiftsourceinfo (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'BlueprintUI' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name BlueprintUI --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.BlueprintUI --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUI.appintents --target-triple arm64-apple-ios15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUI.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/BlueprintUI.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/BlueprintUI.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUI.build/Objects-normal/arm64/BlueprintUI.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-19 16:24:08.212 appintentsmetadataprocessor[796:4650] Starting appintentsmetadataprocessor export
2026-04-19 16:24:08.248 appintentsmetadataprocessor[796:4650] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUI.o (in target 'BlueprintUI' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUI.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUIAccessibilityCore.o normal (in target 'BlueprintUIAccessibilityCore' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUIAccessibilityCore.o
ExtractAppIntentsMetadata (in target 'BlueprintUIAccessibilityCore' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name BlueprintUIAccessibilityCore --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.BlueprintUIAccessibilityCore --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUIAccessibilityCore.appintents --target-triple arm64-apple-ios15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUIAccessibilityCore.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/BlueprintUIAccessibilityCore.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/BlueprintUIAccessibilityCore.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUIAccessibilityCore.build/Objects-normal/arm64/BlueprintUIAccessibilityCore.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-19 16:24:08.305 appintentsmetadataprocessor[799:4667] Starting appintentsmetadataprocessor export
2026-04-19 16:24:08.339 appintentsmetadataprocessor[799:4667] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling EditingMenu.swift, Image.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUIAccessibilityCore.o (in target 'BlueprintUIAccessibilityCore' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUIAccessibilityCore.o
SwiftDriverJobDiscovery normal arm64 Compiling AccessibilityBlocker.swift, AccessibilityCombine.swift, AccessibilityContainer.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftDriverJobDiscovery normal arm64 Compiling Box.swift, Button.swift, CornerStyle.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftDriverJobDiscovery normal arm64 Compiling AccessibilityModifiers.swift, AttributedLabel+Environment.swift, AttributedLabel.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftDriverJobDiscovery normal arm64 Compiling Rule.swift, ScrollView.swift (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
SwiftDriver\ Compilation BlueprintUICommonControls normal arm64 com.apple.xcode.tools.swift.compiler (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BlueprintUICommonControls -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios15.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.o normal (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios15.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.o
ExtractAppIntentsMetadata (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name BlueprintUICommonControls --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 15.0 --bundle-identifier spi-builder-workspace.BlueprintUICommonControls --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.appintents --target-triple arm64-apple-ios15.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/BlueprintUICommonControls.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/BlueprintUICommonControls.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BlueprintUI.build/Debug-iphoneos/BlueprintUICommonControls.build/Objects-normal/arm64/BlueprintUICommonControls.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2026-04-19 16:24:08.644 appintentsmetadataprocessor[802:4690] Starting appintentsmetadataprocessor export
2026-04-19 16:24:08.675 appintentsmetadataprocessor[802:4690] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.o (in target 'BlueprintUICommonControls' from project 'BlueprintUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/BlueprintUICommonControls.o
** BUILD SUCCEEDED **
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
    {
      "identity" : "swift-keyboard-observer",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/square/swift-keyboard-observer"
    }
  ],
  "manifest_display_name" : "BlueprintUI",
  "name" : "BlueprintUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "BlueprintUI",
      "targets" : [
        "BlueprintUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "BlueprintUICommonControls",
      "targets" : [
        "BlueprintUICommonControls"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "BlueprintUIAccessibilityCore",
      "targets" : [
        "BlueprintUIAccessibilityCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "BlueprintUITests",
      "module_type" : "SwiftTarget",
      "name" : "BlueprintUITests",
      "path" : "BlueprintUI/Tests",
      "sources" : [
        "AdaptedEnvironmentTests.swift",
        "AlignedTests.swift",
        "AssertLayoutContract.swift",
        "AttributedTextTests.swift",
        "BlueprintViewAdditions.swift",
        "BlueprintViewTests.swift",
        "BuilderTests.swift",
        "CATransform3DExtensionTests.swift",
        "CGPointExtensionTests.swift",
        "CacheCleanerTests.swift",
        "CenteredTests.swift",
        "ConstrainedAspectRatioTests.swift",
        "ConstrainedSizeTests.swift",
        "DecorateTests.swift",
        "Element+Testing.swift",
        "ElementBuilderTests.swift",
        "ElementContentTests.swift",
        "ElementIdentifierTests.swift",
        "ElementPathTests.swift",
        "EnvironmentTests.swift",
        "EqualStackTests+ResultBuilders.swift",
        "EqualStackTests.swift",
        "Extensions/UIView+Testing.swift",
        "Extensions/XCTestCase+AppHost.swift",
        "FlowTests.swift",
        "FocusStateTests.swift",
        "GeometryReaderTests.swift",
        "GridRowTests+ResultBuilders.swift",
        "GridRowTests.swift",
        "HiddenTests.swift",
        "HintingSizeCacheTests.swift",
        "InsetTests.swift",
        "KeyedTests.swift",
        "LayoutAttributesTests.swift",
        "LayoutMode+Testing.swift",
        "LayoutModeTests.swift",
        "LayoutResultNode+Testing.swift",
        "LayoutResultNodeTests.swift",
        "LayoutTraitsTests.swift",
        "LayoutWriterTests.swift",
        "OpacityTests.swift",
        "OverlayLayoutTests.swift",
        "OverlayTests+ResultBuilder.swift",
        "PixelBoundaryTests.swift",
        "RenderContextTests.swift",
        "ScaleRoundingTests.swift",
        "ScrollViewSafeAreaEdgeTests.swift",
        "SizeConstraintAxisTests.swift",
        "StackTests+ResultBuilders.swift",
        "StackTests.swift",
        "TintAdjustmentModeTests.swift",
        "TransformedTests.swift",
        "UIViewElementTests.swift",
        "UnconstrainedInfiniteAxisTests.swift",
        "UserInteractionEnabledTests.swift",
        "ViewDescriptionTests.swift",
        "ViewDiffingBehaviourTests.swift"
      ],
      "target_dependencies" : [
        "BlueprintUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BlueprintUICommonControlsTests",
      "module_type" : "SwiftTarget",
      "name" : "BlueprintUICommonControlsTests",
      "path" : "BlueprintUICommonControls/Tests/Sources",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Tests/Sources/Resources/ReferenceImages",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUICommonControls/Tests/Sources/Resources/test-image.jpg",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "AccessibilityContainerTests.swift",
        "AttributedLabelTests.swift",
        "BoxTests.swift",
        "ButtonTests.swift",
        "Element+Testing.swift",
        "ElementContent+Testing.swift",
        "FlowTests.swift",
        "ImageTests.swift",
        "LabelTests.swift",
        "LayoutMode+Testing.swift",
        "LifecycleObserverTests.swift",
        "NSLineBreakMode+Testing.swift",
        "PerformancePlayground.swift",
        "PixelBoundarySnapshotTests.swift",
        "RuleTests.swift",
        "ScrollViewTests.swift",
        "SegmentedControlTests.swift",
        "TextFieldTests.swift",
        "XCTestCaseExtensions.swift"
      ],
      "target_dependencies" : [
        "BlueprintUICommonControls"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BlueprintUICommonControls",
      "module_type" : "SwiftTarget",
      "name" : "BlueprintUICommonControls",
      "path" : "BlueprintUICommonControls",
      "product_dependencies" : [
        "KeyboardObserver"
      ],
      "product_memberships" : [
        "BlueprintUICommonControls"
      ],
      "sources" : [
        "Sources/Accessibility/AccessibilityBlocker.swift",
        "Sources/Accessibility/AccessibilityCombine.swift",
        "Sources/Accessibility/AccessibilityContainer.swift",
        "Sources/Accessibility/AccessibilityElement.swift",
        "Sources/Accessibility/AccessibilityFocus.swift",
        "Sources/Accessibility/AccessibilityLargeContentViewer.swift",
        "Sources/Accessibility/AccessibilityModifiers.swift",
        "Sources/AttributedLabel+Environment.swift",
        "Sources/AttributedLabel.swift",
        "Sources/Box.swift",
        "Sources/Button.swift",
        "Sources/CornerStyle.swift",
        "Sources/EditingMenu.swift",
        "Sources/Image.swift",
        "Sources/Internal/UIBezierPath+Extensions.swift",
        "Sources/Label.swift",
        "Sources/Rule.swift",
        "Sources/ScrollView.swift",
        "Sources/SegmentedControl.swift",
        "Sources/Tappable.swift",
        "Sources/TextField.swift",
        "Sources/TextShadow.swift",
        "Sources/TransitionContainer.swift",
        "Sources/UserInterfaceOverridingElement.swift"
      ],
      "target_dependencies" : [
        "BlueprintUI",
        "BlueprintUIAccessibilityCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BlueprintUIAccessibilityCore",
      "module_type" : "SwiftTarget",
      "name" : "BlueprintUIAccessibilityCore",
      "path" : "BlueprintUIAccessibilityCore",
      "product_memberships" : [
        "BlueprintUICommonControls",
        "BlueprintUIAccessibilityCore"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/ca-ES.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ca-es"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/en-AU.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en-au"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/en-CA.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en-ca"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/en-GB.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en-gb"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/en-IE.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en-ie"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/es-ES.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "es-es"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/es.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "es"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/fr-CA.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "fr-ca"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/fr-FR.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "fr-fr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/ja.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ja"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/BlueprintUIAccessibilityCore/Resources/pt-PT.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "pt-pt"
            }
          }
        }
      ],
      "sources" : [
        "Sources/AccessibilityComposition.swift",
        "Sources/AccessibilityDeferral.swift",
        "Sources/AccessibilitySetter.swift",
        "Sources/Extensions/AccessibilityTraits+Extensions.swift",
        "Sources/Extensions/Array+Extensions.swift",
        "Sources/Extensions/Optional+Extensions.swift",
        "Sources/Extensions/UIAccessibilityCustomAction+Extensions.swift",
        "Sources/LocalizedStrings.swift"
      ],
      "target_dependencies" : [
        "BlueprintUI"
      ],
      "type" : "library"
    },
    {
      "c99name" : "BlueprintUI",
      "module_type" : "SwiftTarget",
      "name" : "BlueprintUI",
      "path" : "BlueprintUI/Sources",
      "product_memberships" : [
        "BlueprintUI",
        "BlueprintUICommonControls",
        "BlueprintUIAccessibilityCore"
      ],
      "sources" : [
        "AttributedText/AttributedText.swift",
        "AttributedText/AttributedTextKey.swift",
        "AttributedText/TextAttributeContainer.swift",
        "BlueprintView/BlueprintView.swift",
        "BlueprintView/ElementPreview.swift",
        "Element/Accessibility.swift",
        "Element/ContentStorage.swift",
        "Element/Element.swift",
        "Element/ElementContent.swift",
        "Element/EnvironmentAdaptingStorage.swift",
        "Element/LayoutStorage.swift",
        "Element/LazyStorage.swift",
        "Element/MeasurableStorage.swift",
        "Element/MeasureElementStorage.swift",
        "Element/PassthroughStorage.swift",
        "Element/ProxyElement.swift",
        "Element/UIViewElement.swift",
        "Environment/AdaptedEnvironment.swift",
        "Environment/Environment.swift",
        "Environment/EnvironmentKey.swift",
        "Environment/EnvironmentReader.swift",
        "Environment/Keys/AccessibilityLinkKey.swift",
        "Environment/Keys/CalendarKey.swift",
        "Environment/Keys/DisplayScaleKey.swift",
        "Environment/Keys/LayoutDirectionKey.swift",
        "Environment/Keys/LocaleKey.swift",
        "Environment/Keys/SafeAreaInsetsKey.swift",
        "Environment/Keys/TimeZoneKey.swift",
        "Environment/Keys/WindowSizeKey.swift",
        "Extensions/BidirectionalCollection+Blueprint.swift",
        "Extensions/CGSize+Blueprint.swift",
        "Extensions/FloatingPoint+Blueprint.swift",
        "Extensions/UIAccessibilityTraits+Blueprint.swift",
        "Focus/FocusBinding.swift",
        "Focus/FocusState.swift",
        "Focus/FocusTrigger.swift",
        "Internal/CacheClearer.swift",
        "Internal/ElementIdentifier.swift",
        "Internal/ElementPath.swift",
        "Internal/Extensions/AnyObject+Debugging.swift",
        "Internal/Extensions/CATransform3D.swift",
        "Internal/Extensions/CGPoint.swift",
        "Internal/Extensions/CGRect.swift",
        "Internal/Extensions/CGSize+Extensions.swift",
        "Internal/Extensions/UIView.swift",
        "Internal/Extensions/UIViewAnimationOptions.swift",
        "Internal/HintingSizeCache.swift",
        "Internal/LayoutModeKey.swift",
        "Internal/LayoutResultNode.swift",
        "Internal/LayoutTreeNode.swift",
        "Internal/Logger.swift",
        "Internal/Measurer.swift",
        "Internal/Metatype.swift",
        "Internal/NativeViewNode.swift",
        "Internal/OSLog+Blueprint.swift",
        "Internal/PassthroughView.swift",
        "Internal/RenderContext.swift",
        "Internal/RoundingCorrectionKey.swift",
        "Internal/RoundingOriginKey.swift",
        "Internal/SignpostToken.swift",
        "Layout/Aligned.swift",
        "Layout/Alignment.swift",
        "Layout/AspectRatio.swift",
        "Layout/Builder.swift",
        "Layout/Centered.swift",
        "Layout/Column.swift",
        "Layout/Conditionals.swift",
        "Layout/ConstrainedAspectRatio.swift",
        "Layout/ConstrainedSize.swift",
        "Layout/Decorate.swift",
        "Layout/ElementBuilder.swift",
        "Layout/ElementDimensions.swift",
        "Layout/Empty.swift",
        "Layout/EqualStack.swift",
        "Layout/FloatingPoint+ScaleRounding.swift",
        "Layout/Flow.swift",
        "Layout/GeometryReader.swift",
        "Layout/GridRow.swift",
        "Layout/Hidden.swift",
        "Layout/Inset.swift",
        "Layout/Keyed.swift",
        "Layout/Layout.swift",
        "Layout/LayoutAttributes.swift",
        "Layout/LayoutMode.swift",
        "Layout/LayoutOptions.swift",
        "Layout/LayoutSubelement.swift",
        "Layout/LayoutTraits.swift",
        "Layout/LayoutTraitsKey.swift",
        "Layout/LayoutWriter.swift",
        "Layout/LifecycleObserver.swift",
        "Layout/Opacity.swift",
        "Layout/Overlay.swift",
        "Layout/Row.swift",
        "Layout/SingleChildLayout.swift",
        "Layout/SingleTraitLayout.swift",
        "Layout/Spacer.swift",
        "Layout/Stack.swift",
        "Layout/TintAdjustmentMode.swift",
        "Layout/Transformed.swift",
        "Layout/UnitPoint.swift",
        "Layout/UserInteractionEnabled.swift",
        "Measuring/Measurable.swift",
        "Measuring/SizeConstraint.swift",
        "ViewDescription/AnimationAttributes.swift",
        "ViewDescription/LayoutTransition.swift",
        "ViewDescription/LifecycleCallback.swift",
        "ViewDescription/ViewDescription.swift",
        "ViewDescription/VisibilityTransition.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.1"
}
Done.