The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of XestiMonitors, reference v2.12.1 (5b3559), with Swift 6.1 for tvOS using Xcode 16.3 on 25 Apr 2025 18:00:29 UTC.

Swift 6 data race errors: 102

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme XestiMonitors -destination generic/platform=tvOS 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/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:54:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:58:27: note: add '@MainActor' to make static property 'accountChange' part of global actor 'MainActor'
        public static let accountChange = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let accountChange = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:63:27: warning: static property 'initialSyncChange' is not concurrency-safe because non-'Sendable' type 'UbiquitousKeyValueStoreMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let initialSyncChange = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:54:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:63:27: note: add '@MainActor' to make static property 'initialSyncChange' part of global actor 'MainActor'
        public static let initialSyncChange = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:63:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let initialSyncChange = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:68:27: warning: static property 'quotaViolationChange' is not concurrency-safe because non-'Sendable' type 'UbiquitousKeyValueStoreMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let quotaViolationChange = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:54:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:68:27: note: add '@MainActor' to make static property 'quotaViolationChange' part of global actor 'MainActor'
        public static let quotaViolationChange = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:68:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let quotaViolationChange = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:73:27: warning: static property 'serverChange' is not concurrency-safe because non-'Sendable' type 'UbiquitousKeyValueStoreMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let serverChange = Options(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:54:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:73:27: note: add '@MainActor' to make static property 'serverChange' part of global actor 'MainActor'
        public static let serverChange = Options(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:73:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let serverChange = Options(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:78:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'UbiquitousKeyValueStoreMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.accountChange,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:54:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:78:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.accountChange,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift:78:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.accountChange,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:70:27: warning: static property 'checkpoint' is not concurrency-safe because non-'Sendable' type 'UndoManagerMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let checkpoint = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:70:27: note: add '@MainActor' to make static property 'checkpoint' part of global actor 'MainActor'
        public static let checkpoint = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:70:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let checkpoint = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:75:27: warning: static property 'didCloseUndoGroup' is not concurrency-safe because non-'Sendable' type 'UndoManagerMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didCloseUndoGroup = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:75:27: note: add '@MainActor' to make static property 'didCloseUndoGroup' part of global actor 'MainActor'
        public static let didCloseUndoGroup = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:75:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didCloseUndoGroup = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:80:27: warning: static property 'didOpenUndoGroup' is not concurrency-safe because non-'Sendable' type 'UndoManagerMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didOpenUndoGroup = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:80:27: note: add '@MainActor' to make static property 'didOpenUndoGroup' part of global actor 'MainActor'
        public static let didOpenUndoGroup = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:80:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didOpenUndoGroup = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:85:27: warning: static property 'didRedoChange' is not concurrency-safe because non-'Sendable' type 'UndoManagerMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didRedoChange = Options(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:85:27: note: add '@MainActor' to make static property 'didRedoChange' part of global actor 'MainActor'
        public static let didRedoChange = Options(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:85:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didRedoChange = Options(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:90:27: warning: static property 'didUndoChange' is not concurrency-safe because non-'Sendable' type 'UndoManagerMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didUndoChange = Options(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:90:27: note: add '@MainActor' to make static property 'didUndoChange' part of global actor 'MainActor'
        public static let didUndoChange = Options(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:90:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didUndoChange = Options(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:95:27: warning: static property 'willCloseUndoGroup' is not concurrency-safe because non-'Sendable' type 'UndoManagerMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willCloseUndoGroup = Options(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:95:27: note: add '@MainActor' to make static property 'willCloseUndoGroup' part of global actor 'MainActor'
        public static let willCloseUndoGroup = Options(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:95:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willCloseUndoGroup = Options(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:100:27: warning: static property 'willRedoChange' is not concurrency-safe because non-'Sendable' type 'UndoManagerMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willRedoChange = Options(rawValue: 1 << 6)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:100:27: note: add '@MainActor' to make static property 'willRedoChange' part of global actor 'MainActor'
        public static let willRedoChange = Options(rawValue: 1 << 6)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:100:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willRedoChange = Options(rawValue: 1 << 6)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:105:27: warning: static property 'willUndoChange' is not concurrency-safe because non-'Sendable' type 'UndoManagerMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willUndoChange = Options(rawValue: 1 << 7)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:105:27: note: add '@MainActor' to make static property 'willUndoChange' part of global actor 'MainActor'
        public static let willUndoChange = Options(rawValue: 1 << 7)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:105:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willUndoChange = Options(rawValue: 1 << 7)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:110:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'UndoManagerMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.checkpoint,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:110:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.checkpoint,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UndoManagerMonitor.swift:110:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.checkpoint,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:44:27: warning: static property 'didChange' is not concurrency-safe because non-'Sendable' type 'UserDefaultsMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didChange = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:40:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:44:27: note: add '@MainActor' to make static property 'didChange' part of global actor 'MainActor'
        public static let didChange = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:44:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didChange = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:49:27: warning: static property 'sizeLimitExceeded' is not concurrency-safe because non-'Sendable' type 'UserDefaultsMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let sizeLimitExceeded = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:40:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:49:27: note: add '@MainActor' to make static property 'sizeLimitExceeded' part of global actor 'MainActor'
        public static let sizeLimitExceeded = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:49:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let sizeLimitExceeded = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:54:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'UserDefaultsMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didChange,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:40:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:54:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didChange,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Foundation/UserDefaultsMonitor.swift:54:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didChange,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:71:27: warning: static property 'accessWasRevoked' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let accessWasRevoked = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:71:27: note: add '@MainActor' to make static property 'accessWasRevoked' part of global actor 'MainActor'
        public static let accessWasRevoked = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:71:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let accessWasRevoked = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:76:27: warning: static property 'dataDidChange' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let dataDidChange = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:76:27: note: add '@MainActor' to make static property 'dataDidChange' part of global actor 'MainActor'
        public static let dataDidChange = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:76:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let dataDidChange = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:81:27: warning: static property 'linkCountDidChange' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let linkCountDidChange = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:81:27: note: add '@MainActor' to make static property 'linkCountDidChange' part of global actor 'MainActor'
        public static let linkCountDidChange = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:81:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let linkCountDidChange = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:86:27: warning: static property 'metadataDidChange' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let metadataDidChange = Options(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:86:27: note: add '@MainActor' to make static property 'metadataDidChange' part of global actor 'MainActor'
        public static let metadataDidChange = Options(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:86:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let metadataDidChange = Options(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:91:27: warning: static property 'sizeDidChange' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let sizeDidChange = Options(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:91:27: note: add '@MainActor' to make static property 'sizeDidChange' part of global actor 'MainActor'
        public static let sizeDidChange = Options(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:91:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let sizeDidChange = Options(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:96:27: warning: static property 'wasDeleted' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let wasDeleted = Options(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:96:27: note: add '@MainActor' to make static property 'wasDeleted' part of global actor 'MainActor'
        public static let wasDeleted = Options(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:96:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let wasDeleted = Options(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:101:27: warning: static property 'wasRenamed' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let wasRenamed = Options(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:101:27: note: add '@MainActor' to make static property 'wasRenamed' part of global actor 'MainActor'
        public static let wasRenamed = Options(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:101:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let wasRenamed = Options(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:106:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.accessWasRevoked,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:106:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.accessWasRevoked,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:106:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.accessWasRevoked,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:116:27: warning: static property 'assistiveTouchStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let assistiveTouchStatusDidChange = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:116:27: note: add '@MainActor' to make static property 'assistiveTouchStatusDidChange' part of global actor 'MainActor'
        public static let assistiveTouchStatusDidChange = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:116:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let assistiveTouchStatusDidChange = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:121:27: warning: static property 'boldTextStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let boldTextStatusDidChange = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:121:27: note: add '@MainActor' to make static property 'boldTextStatusDidChange' part of global actor 'MainActor'
        public static let boldTextStatusDidChange = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:121:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let boldTextStatusDidChange = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:126:27: warning: static property 'closedCaptioningStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let closedCaptioningStatusDidChange = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:126:27: note: add '@MainActor' to make static property 'closedCaptioningStatusDidChange' part of global actor 'MainActor'
        public static let closedCaptioningStatusDidChange = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:126:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let closedCaptioningStatusDidChange = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:131:27: warning: static property 'darkenColorsStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let darkenColorsStatusDidChange = Options(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:131:27: note: add '@MainActor' to make static property 'darkenColorsStatusDidChange' part of global actor 'MainActor'
        public static let darkenColorsStatusDidChange = Options(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:131:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let darkenColorsStatusDidChange = Options(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:136:27: warning: static property 'grayscaleStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let grayscaleStatusDidChange = Options(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:136:27: note: add '@MainActor' to make static property 'grayscaleStatusDidChange' part of global actor 'MainActor'
        public static let grayscaleStatusDidChange = Options(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:136:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let grayscaleStatusDidChange = Options(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:141:27: warning: static property 'guidedAccessStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let guidedAccessStatusDidChange = Options(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:141:27: note: add '@MainActor' to make static property 'guidedAccessStatusDidChange' part of global actor 'MainActor'
        public static let guidedAccessStatusDidChange = Options(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:141:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let guidedAccessStatusDidChange = Options(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:153:27: warning: static property 'invertColorsStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let invertColorsStatusDidChange = Options(rawValue: 1 << 7)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:153:27: note: add '@MainActor' to make static property 'invertColorsStatusDidChange' part of global actor 'MainActor'
        public static let invertColorsStatusDidChange = Options(rawValue: 1 << 7)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:153:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let invertColorsStatusDidChange = Options(rawValue: 1 << 7)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:158:27: warning: static property 'monoAudioStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let monoAudioStatusDidChange = Options(rawValue: 1 << 8)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:158:27: note: add '@MainActor' to make static property 'monoAudioStatusDidChange' part of global actor 'MainActor'
        public static let monoAudioStatusDidChange = Options(rawValue: 1 << 8)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:158:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let monoAudioStatusDidChange = Options(rawValue: 1 << 8)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:163:27: warning: static property 'reduceMotionStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let reduceMotionStatusDidChange = Options(rawValue: 1 << 9)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:163:27: note: add '@MainActor' to make static property 'reduceMotionStatusDidChange' part of global actor 'MainActor'
        public static let reduceMotionStatusDidChange = Options(rawValue: 1 << 9)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:163:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let reduceMotionStatusDidChange = Options(rawValue: 1 << 9)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:168:27: warning: static property 'reduceTransparencyStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let reduceTransparencyStatusDidChange = Options(rawValue: 1 << 10)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:168:27: note: add '@MainActor' to make static property 'reduceTransparencyStatusDidChange' part of global actor 'MainActor'
        public static let reduceTransparencyStatusDidChange = Options(rawValue: 1 << 10)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:168:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let reduceTransparencyStatusDidChange = Options(rawValue: 1 << 10)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:173:27: warning: static property 'shakeToUndoStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let shakeToUndoStatusDidChange = Options(rawValue: 1 << 11)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:173:27: note: add '@MainActor' to make static property 'shakeToUndoStatusDidChange' part of global actor 'MainActor'
        public static let shakeToUndoStatusDidChange = Options(rawValue: 1 << 11)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:173:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let shakeToUndoStatusDidChange = Options(rawValue: 1 << 11)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:178:27: warning: static property 'speakScreenStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let speakScreenStatusDidChange = Options(rawValue: 1 << 12)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:178:27: note: add '@MainActor' to make static property 'speakScreenStatusDidChange' part of global actor 'MainActor'
        public static let speakScreenStatusDidChange = Options(rawValue: 1 << 12)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:178:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let speakScreenStatusDidChange = Options(rawValue: 1 << 12)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:183:27: warning: static property 'speakSelectionStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let speakSelectionStatusDidChange = Options(rawValue: 1 << 13)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:183:27: note: add '@MainActor' to make static property 'speakSelectionStatusDidChange' part of global actor 'MainActor'
        public static let speakSelectionStatusDidChange = Options(rawValue: 1 << 13)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:183:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let speakSelectionStatusDidChange = Options(rawValue: 1 << 13)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:188:27: warning: static property 'switchControlStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let switchControlStatusDidChange = Options(rawValue: 1 << 14)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:188:27: note: add '@MainActor' to make static property 'switchControlStatusDidChange' part of global actor 'MainActor'
        public static let switchControlStatusDidChange = Options(rawValue: 1 << 14)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:188:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let switchControlStatusDidChange = Options(rawValue: 1 << 14)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:193:27: warning: static property 'voiceOverStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let voiceOverStatusDidChange = Options(rawValue: 1 << 15)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:193:27: note: add '@MainActor' to make static property 'voiceOverStatusDidChange' part of global actor 'MainActor'
        public static let voiceOverStatusDidChange = Options(rawValue: 1 << 15)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:193:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let voiceOverStatusDidChange = Options(rawValue: 1 << 15)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:219:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.assistiveTouchStatusDidChange,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:219:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.assistiveTouchStatusDidChange,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:219:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.assistiveTouchStatusDidChange,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:62:27: warning: static property 'didBecomeActive' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBecomeActive = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:62:27: note: add '@MainActor' to make static property 'didBecomeActive' part of global actor 'MainActor'
        public static let didBecomeActive = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:62:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBecomeActive = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:67:27: warning: static property 'didEnterBackground' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didEnterBackground = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:67:27: note: add '@MainActor' to make static property 'didEnterBackground' part of global actor 'MainActor'
        public static let didEnterBackground = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:67:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didEnterBackground = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:72:27: warning: static property 'didFinishLaunching' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didFinishLaunching = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:72:27: note: add '@MainActor' to make static property 'didFinishLaunching' part of global actor 'MainActor'
        public static let didFinishLaunching = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:72:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didFinishLaunching = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:77:27: warning: static property 'willEnterForeground' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willEnterForeground = Options(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:77:27: note: add '@MainActor' to make static property 'willEnterForeground' part of global actor 'MainActor'
        public static let willEnterForeground = Options(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:77:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willEnterForeground = Options(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:82:27: warning: static property 'willResignActive' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willResignActive = Options(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:82:27: note: add '@MainActor' to make static property 'willResignActive' part of global actor 'MainActor'
        public static let willResignActive = Options(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:82:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willResignActive = Options(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:87:27: warning: static property 'willTerminate' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willTerminate = Options(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:87:27: note: add '@MainActor' to make static property 'willTerminate' part of global actor 'MainActor'
        public static let willTerminate = Options(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:87:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willTerminate = Options(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:92:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didBecomeActive,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:92:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didBecomeActive,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:92:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didBecomeActive,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:43:27: warning: static property 'didBecomeAvailable' is not concurrency-safe because non-'Sendable' type 'ProtectedDataMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBecomeAvailable = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:39:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:43:27: note: add '@MainActor' to make static property 'didBecomeAvailable' part of global actor 'MainActor'
        public static let didBecomeAvailable = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:43:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBecomeAvailable = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:48:27: warning: static property 'willBecomeUnavailable' is not concurrency-safe because non-'Sendable' type 'ProtectedDataMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willBecomeUnavailable = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:39:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:48:27: note: add '@MainActor' to make static property 'willBecomeUnavailable' part of global actor 'MainActor'
        public static let willBecomeUnavailable = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:48:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willBecomeUnavailable = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:53:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ProtectedDataMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didBecomeAvailable,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:39:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:53:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didBecomeAvailable,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ProtectedDataMonitor.swift:53:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didBecomeAvailable,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:70:27: warning: static property 'didUpdate' is not concurrency-safe because non-'Sendable' type 'FocusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didUpdate = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:70:27: note: add '@MainActor' to make static property 'didUpdate' part of global actor 'MainActor'
        public static let didUpdate = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:70:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didUpdate = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:75:27: warning: static property 'movementDidFail' is not concurrency-safe because non-'Sendable' type 'FocusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let movementDidFail = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:75:27: note: add '@MainActor' to make static property 'movementDidFail' part of global actor 'MainActor'
        public static let movementDidFail = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:75:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let movementDidFail = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:80:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'FocusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didUpdate,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:66:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:80:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didUpdate,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/FocusMonitor.swift:80:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didUpdate,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:53:27: warning: static property 'didBecomeHidden' is not concurrency-safe because non-'Sendable' type 'WindowMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBecomeHidden = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:49:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:53:27: note: add '@MainActor' to make static property 'didBecomeHidden' part of global actor 'MainActor'
        public static let didBecomeHidden = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:53:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBecomeHidden = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:58:27: warning: static property 'didBecomeKey' is not concurrency-safe because non-'Sendable' type 'WindowMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBecomeKey = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:49:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:58:27: note: add '@MainActor' to make static property 'didBecomeKey' part of global actor 'MainActor'
        public static let didBecomeKey = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBecomeKey = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:63:27: warning: static property 'didBecomeVisible' is not concurrency-safe because non-'Sendable' type 'WindowMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBecomeVisible = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:49:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:63:27: note: add '@MainActor' to make static property 'didBecomeVisible' part of global actor 'MainActor'
        public static let didBecomeVisible = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:63:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBecomeVisible = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:68:27: warning: static property 'didResignKey' is not concurrency-safe because non-'Sendable' type 'WindowMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didResignKey = Options(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:49:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:68:27: note: add '@MainActor' to make static property 'didResignKey' part of global actor 'MainActor'
        public static let didResignKey = Options(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:68:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didResignKey = Options(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:73:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'WindowMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didBecomeHidden,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:49:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:73:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didBecomeHidden,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Other/WindowMonitor.swift:73:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didBecomeHidden,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:42:27: warning: static property 'didConnect' is not concurrency-safe because non-'Sendable' type 'ScreenConnectionMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didConnect = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:38:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:42:27: note: add '@MainActor' to make static property 'didConnect' part of global actor 'MainActor'
        public static let didConnect = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:42:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didConnect = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:47:27: warning: static property 'didDisconnect' is not concurrency-safe because non-'Sendable' type 'ScreenConnectionMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didDisconnect = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:38:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:47:27: note: add '@MainActor' to make static property 'didDisconnect' part of global actor 'MainActor'
        public static let didDisconnect = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didDisconnect = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:52:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ScreenConnectionMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didConnect,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:38:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:52:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didConnect,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didConnect,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:47:27: warning: static property 'didBeginEditing' is not concurrency-safe because non-'Sendable' type 'TextFieldTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:47:27: note: add '@MainActor' to make static property 'didBeginEditing' part of global actor 'MainActor'
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:52:27: warning: static property 'didChange' is not concurrency-safe because non-'Sendable' type 'TextFieldTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:52:27: note: add '@MainActor' to make static property 'didChange' part of global actor 'MainActor'
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:57:27: warning: static property 'didEndEditing' is not concurrency-safe because non-'Sendable' type 'TextFieldTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:57:27: note: add '@MainActor' to make static property 'didEndEditing' part of global actor 'MainActor'
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:57:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:62:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'TextFieldTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didBeginEditing,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:62:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didBeginEditing,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:62:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didBeginEditing,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:43:27: warning: static property 'didProcessEditing' is not concurrency-safe because non-'Sendable' type 'TextStorageMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didProcessEditing = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:39:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:43:27: note: add '@MainActor' to make static property 'didProcessEditing' part of global actor 'MainActor'
        public static let didProcessEditing = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:43:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didProcessEditing = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:48:27: warning: static property 'willProcessEditing' is not concurrency-safe because non-'Sendable' type 'TextStorageMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willProcessEditing = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:39:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:48:27: note: add '@MainActor' to make static property 'willProcessEditing' part of global actor 'MainActor'
        public static let willProcessEditing = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:48:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willProcessEditing = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:53:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'TextStorageMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didProcessEditing,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:39:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:53:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didProcessEditing,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:53:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didProcessEditing,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:47:27: warning: static property 'didBeginEditing' is not concurrency-safe because non-'Sendable' type 'TextViewTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:47:27: note: add '@MainActor' to make static property 'didBeginEditing' part of global actor 'MainActor'
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:52:27: warning: static property 'didChange' is not concurrency-safe because non-'Sendable' type 'TextViewTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:52:27: note: add '@MainActor' to make static property 'didChange' part of global actor 'MainActor'
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:57:27: warning: static property 'didEndEditing' is not concurrency-safe because non-'Sendable' type 'TextViewTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:57:27: note: add '@MainActor' to make static property 'didEndEditing' part of global actor 'MainActor'
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:57:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:62:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'TextViewTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didBeginEditing,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:62:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didBeginEditing,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:62:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didBeginEditing,
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ScreenBrightnessMonitor.swift,\ ScreenCapturedMonitor.swift,\ ScreenConnectionMonitor.swift,\ ScreenModeMonitor.swift,\ TextFieldTextMonitor.swift,\ TextInputModeMonitor.swift,\ TextStorageMonitor.swift,\ TextViewTextMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenBrightnessMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenCapturedMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenModeMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextInputModeMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenBrightnessMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenCapturedMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:42:27: warning: static property 'didConnect' is not concurrency-safe because non-'Sendable' type 'ScreenConnectionMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didConnect = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:38:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:42:27: note: add '@MainActor' to make static property 'didConnect' part of global actor 'MainActor'
        public static let didConnect = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:42:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didConnect = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:47:27: warning: static property 'didDisconnect' is not concurrency-safe because non-'Sendable' type 'ScreenConnectionMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didDisconnect = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:38:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:47:27: note: add '@MainActor' to make static property 'didDisconnect' part of global actor 'MainActor'
        public static let didDisconnect = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didDisconnect = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:52:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ScreenConnectionMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didConnect,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:38:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:52:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didConnect,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didConnect,
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Screen/ScreenModeMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:47:27: warning: static property 'didBeginEditing' is not concurrency-safe because non-'Sendable' type 'TextFieldTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:47:27: note: add '@MainActor' to make static property 'didBeginEditing' part of global actor 'MainActor'
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:52:27: warning: static property 'didChange' is not concurrency-safe because non-'Sendable' type 'TextFieldTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:52:27: note: add '@MainActor' to make static property 'didChange' part of global actor 'MainActor'
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:57:27: warning: static property 'didEndEditing' is not concurrency-safe because non-'Sendable' type 'TextFieldTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:57:27: note: add '@MainActor' to make static property 'didEndEditing' part of global actor 'MainActor'
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:57:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:62:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'TextFieldTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didBeginEditing,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:62:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didBeginEditing,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextFieldTextMonitor.swift:62:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didBeginEditing,
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextInputModeMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:43:27: warning: static property 'didProcessEditing' is not concurrency-safe because non-'Sendable' type 'TextStorageMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didProcessEditing = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:39:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:43:27: note: add '@MainActor' to make static property 'didProcessEditing' part of global actor 'MainActor'
        public static let didProcessEditing = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:43:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didProcessEditing = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:48:27: warning: static property 'willProcessEditing' is not concurrency-safe because non-'Sendable' type 'TextStorageMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willProcessEditing = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:39:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:48:27: note: add '@MainActor' to make static property 'willProcessEditing' part of global actor 'MainActor'
        public static let willProcessEditing = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:48:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willProcessEditing = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:53:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'TextStorageMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didProcessEditing,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:39:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:53:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didProcessEditing,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextStorageMonitor.swift:53:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didProcessEditing,
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:47:27: warning: static property 'didBeginEditing' is not concurrency-safe because non-'Sendable' type 'TextViewTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:47:27: note: add '@MainActor' to make static property 'didBeginEditing' part of global actor 'MainActor'
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:47:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBeginEditing = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:52:27: warning: static property 'didChange' is not concurrency-safe because non-'Sendable' type 'TextViewTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:52:27: note: add '@MainActor' to make static property 'didChange' part of global actor 'MainActor'
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:52:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didChange = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:57:27: warning: static property 'didEndEditing' is not concurrency-safe because non-'Sendable' type 'TextViewTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:57:27: note: add '@MainActor' to make static property 'didEndEditing' part of global actor 'MainActor'
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:57:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didEndEditing = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:62:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'TextViewTextMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didBeginEditing,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:43:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:62:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didBeginEditing,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Text/TextViewTextMonitor.swift:62:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didBeginEditing,
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ FileSystemObjectMonitor.swift,\ NetworkReachabilityMonitor.swift,\ AccessibilityAnnouncementMonitor.swift,\ AccessibilityElementMonitor.swift,\ AccessibilityStatusMonitor.swift,\ ApplicationStateMonitor.swift,\ BackgroundRefreshMonitor.swift,\ MemoryMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/Other/NetworkReachabilityMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityAnnouncementMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityElementMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/BackgroundRefreshMonitor.swift /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/MemoryMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:71:27: warning: static property 'accessWasRevoked' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let accessWasRevoked = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:71:27: note: add '@MainActor' to make static property 'accessWasRevoked' part of global actor 'MainActor'
        public static let accessWasRevoked = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:71:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let accessWasRevoked = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:76:27: warning: static property 'dataDidChange' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let dataDidChange = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:76:27: note: add '@MainActor' to make static property 'dataDidChange' part of global actor 'MainActor'
        public static let dataDidChange = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:76:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let dataDidChange = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:81:27: warning: static property 'linkCountDidChange' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let linkCountDidChange = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:81:27: note: add '@MainActor' to make static property 'linkCountDidChange' part of global actor 'MainActor'
        public static let linkCountDidChange = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:81:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let linkCountDidChange = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:86:27: warning: static property 'metadataDidChange' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let metadataDidChange = Options(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:86:27: note: add '@MainActor' to make static property 'metadataDidChange' part of global actor 'MainActor'
        public static let metadataDidChange = Options(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:86:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let metadataDidChange = Options(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:91:27: warning: static property 'sizeDidChange' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let sizeDidChange = Options(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:91:27: note: add '@MainActor' to make static property 'sizeDidChange' part of global actor 'MainActor'
        public static let sizeDidChange = Options(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:91:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let sizeDidChange = Options(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:96:27: warning: static property 'wasDeleted' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let wasDeleted = Options(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:96:27: note: add '@MainActor' to make static property 'wasDeleted' part of global actor 'MainActor'
        public static let wasDeleted = Options(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:96:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let wasDeleted = Options(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:101:27: warning: static property 'wasRenamed' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let wasRenamed = Options(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:101:27: note: add '@MainActor' to make static property 'wasRenamed' part of global actor 'MainActor'
        public static let wasRenamed = Options(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:101:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let wasRenamed = Options(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:106:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'FileSystemObjectMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.accessWasRevoked,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:67:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:106:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.accessWasRevoked,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:106:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.accessWasRevoked,
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:178:17: warning: capture of 'self' with non-sendable type 'FileSystemObjectMonitor' in a '@Sendable' closure
                self.handler(.metadataDidChange(self.fileURL))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:21:14: note: class 'FileSystemObjectMonitor' does not conform to the 'Sendable' protocol
public class FileSystemObjectMonitor: BaseMonitor {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:184:17: warning: capture of 'self' with non-sendable type 'FileSystemObjectMonitor' in a '@Sendable' closure
                self.handler(.wasDeleted(self.fileURL))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:21:14: note: class 'FileSystemObjectMonitor' does not conform to the 'Sendable' protocol
public class FileSystemObjectMonitor: BaseMonitor {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:190:17: warning: capture of 'self' with non-sendable type 'FileSystemObjectMonitor' in a '@Sendable' closure
                self.handler(.sizeDidChange(self.fileURL))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:21:14: note: class 'FileSystemObjectMonitor' does not conform to the 'Sendable' protocol
public class FileSystemObjectMonitor: BaseMonitor {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:196:17: warning: capture of 'self' with non-sendable type 'FileSystemObjectMonitor' in a '@Sendable' closure
                self.handler(.linkCountDidChange(self.fileURL))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:21:14: note: class 'FileSystemObjectMonitor' does not conform to the 'Sendable' protocol
public class FileSystemObjectMonitor: BaseMonitor {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:207:21: warning: capture of 'self' with non-sendable type 'FileSystemObjectMonitor' in a '@Sendable' closure
                    self.handler(.wasRenamed(oldFileURL, newFileURL))
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:21:14: note: class 'FileSystemObjectMonitor' does not conform to the 'Sendable' protocol
public class FileSystemObjectMonitor: BaseMonitor {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:214:17: warning: capture of 'self' with non-sendable type 'FileSystemObjectMonitor' in a '@Sendable' closure
                self.handler(.accessWasRevoked(self.fileURL))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:21:14: note: class 'FileSystemObjectMonitor' does not conform to the 'Sendable' protocol
public class FileSystemObjectMonitor: BaseMonitor {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:220:17: warning: capture of 'self' with non-sendable type 'FileSystemObjectMonitor' in a '@Sendable' closure
                self.handler(.dataDidChange(self.fileURL))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/FileSystemObjectMonitor.swift:21:14: note: class 'FileSystemObjectMonitor' does not conform to the 'Sendable' protocol
public class FileSystemObjectMonitor: BaseMonitor {
             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/Other/NetworkReachabilityMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/NetworkReachabilityMonitor.swift:179:17: warning: capture of 'self' with non-sendable type 'NetworkReachabilityMonitor' in a '@Sendable' closure
                self.handler(.statusDidChange(self.statusFromFlags(flags)))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/NetworkReachabilityMonitor.swift:19:14: note: class 'NetworkReachabilityMonitor' does not conform to the 'Sendable' protocol
public class NetworkReachabilityMonitor: BaseMonitor {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/NetworkReachabilityMonitor.swift:235:13: warning: capture of 'self' with non-sendable type 'NetworkReachabilityMonitor' in a '@Sendable' closure
            self.unsafePreviousFlags = []
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/Other/NetworkReachabilityMonitor.swift:19:14: note: class 'NetworkReachabilityMonitor' does not conform to the 'Sendable' protocol
public class NetworkReachabilityMonitor: BaseMonitor {
             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityAnnouncementMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityElementMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:116:27: warning: static property 'assistiveTouchStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let assistiveTouchStatusDidChange = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:116:27: note: add '@MainActor' to make static property 'assistiveTouchStatusDidChange' part of global actor 'MainActor'
        public static let assistiveTouchStatusDidChange = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:116:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let assistiveTouchStatusDidChange = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:121:27: warning: static property 'boldTextStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let boldTextStatusDidChange = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:121:27: note: add '@MainActor' to make static property 'boldTextStatusDidChange' part of global actor 'MainActor'
        public static let boldTextStatusDidChange = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:121:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let boldTextStatusDidChange = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:126:27: warning: static property 'closedCaptioningStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let closedCaptioningStatusDidChange = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:126:27: note: add '@MainActor' to make static property 'closedCaptioningStatusDidChange' part of global actor 'MainActor'
        public static let closedCaptioningStatusDidChange = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:126:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let closedCaptioningStatusDidChange = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:131:27: warning: static property 'darkenColorsStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let darkenColorsStatusDidChange = Options(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:131:27: note: add '@MainActor' to make static property 'darkenColorsStatusDidChange' part of global actor 'MainActor'
        public static let darkenColorsStatusDidChange = Options(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:131:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let darkenColorsStatusDidChange = Options(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:136:27: warning: static property 'grayscaleStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let grayscaleStatusDidChange = Options(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:136:27: note: add '@MainActor' to make static property 'grayscaleStatusDidChange' part of global actor 'MainActor'
        public static let grayscaleStatusDidChange = Options(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:136:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let grayscaleStatusDidChange = Options(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:141:27: warning: static property 'guidedAccessStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let guidedAccessStatusDidChange = Options(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:141:27: note: add '@MainActor' to make static property 'guidedAccessStatusDidChange' part of global actor 'MainActor'
        public static let guidedAccessStatusDidChange = Options(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:141:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let guidedAccessStatusDidChange = Options(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:153:27: warning: static property 'invertColorsStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let invertColorsStatusDidChange = Options(rawValue: 1 << 7)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:153:27: note: add '@MainActor' to make static property 'invertColorsStatusDidChange' part of global actor 'MainActor'
        public static let invertColorsStatusDidChange = Options(rawValue: 1 << 7)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:153:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let invertColorsStatusDidChange = Options(rawValue: 1 << 7)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:158:27: warning: static property 'monoAudioStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let monoAudioStatusDidChange = Options(rawValue: 1 << 8)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:158:27: note: add '@MainActor' to make static property 'monoAudioStatusDidChange' part of global actor 'MainActor'
        public static let monoAudioStatusDidChange = Options(rawValue: 1 << 8)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:158:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let monoAudioStatusDidChange = Options(rawValue: 1 << 8)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:163:27: warning: static property 'reduceMotionStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let reduceMotionStatusDidChange = Options(rawValue: 1 << 9)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:163:27: note: add '@MainActor' to make static property 'reduceMotionStatusDidChange' part of global actor 'MainActor'
        public static let reduceMotionStatusDidChange = Options(rawValue: 1 << 9)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:163:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let reduceMotionStatusDidChange = Options(rawValue: 1 << 9)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:168:27: warning: static property 'reduceTransparencyStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let reduceTransparencyStatusDidChange = Options(rawValue: 1 << 10)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:168:27: note: add '@MainActor' to make static property 'reduceTransparencyStatusDidChange' part of global actor 'MainActor'
        public static let reduceTransparencyStatusDidChange = Options(rawValue: 1 << 10)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:168:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let reduceTransparencyStatusDidChange = Options(rawValue: 1 << 10)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:173:27: warning: static property 'shakeToUndoStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let shakeToUndoStatusDidChange = Options(rawValue: 1 << 11)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:173:27: note: add '@MainActor' to make static property 'shakeToUndoStatusDidChange' part of global actor 'MainActor'
        public static let shakeToUndoStatusDidChange = Options(rawValue: 1 << 11)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:173:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let shakeToUndoStatusDidChange = Options(rawValue: 1 << 11)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:178:27: warning: static property 'speakScreenStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let speakScreenStatusDidChange = Options(rawValue: 1 << 12)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:178:27: note: add '@MainActor' to make static property 'speakScreenStatusDidChange' part of global actor 'MainActor'
        public static let speakScreenStatusDidChange = Options(rawValue: 1 << 12)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:178:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let speakScreenStatusDidChange = Options(rawValue: 1 << 12)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:183:27: warning: static property 'speakSelectionStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let speakSelectionStatusDidChange = Options(rawValue: 1 << 13)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:183:27: note: add '@MainActor' to make static property 'speakSelectionStatusDidChange' part of global actor 'MainActor'
        public static let speakSelectionStatusDidChange = Options(rawValue: 1 << 13)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:183:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let speakSelectionStatusDidChange = Options(rawValue: 1 << 13)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:188:27: warning: static property 'switchControlStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let switchControlStatusDidChange = Options(rawValue: 1 << 14)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:188:27: note: add '@MainActor' to make static property 'switchControlStatusDidChange' part of global actor 'MainActor'
        public static let switchControlStatusDidChange = Options(rawValue: 1 << 14)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:188:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let switchControlStatusDidChange = Options(rawValue: 1 << 14)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:193:27: warning: static property 'voiceOverStatusDidChange' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let voiceOverStatusDidChange = Options(rawValue: 1 << 15)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:193:27: note: add '@MainActor' to make static property 'voiceOverStatusDidChange' part of global actor 'MainActor'
        public static let voiceOverStatusDidChange = Options(rawValue: 1 << 15)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:193:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let voiceOverStatusDidChange = Options(rawValue: 1 << 15)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:219:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AccessibilityStatusMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.assistiveTouchStatusDidChange,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:112:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:219:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.assistiveTouchStatusDidChange,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift:219:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.assistiveTouchStatusDidChange,
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:62:27: warning: static property 'didBecomeActive' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didBecomeActive = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:62:27: note: add '@MainActor' to make static property 'didBecomeActive' part of global actor 'MainActor'
        public static let didBecomeActive = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:62:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didBecomeActive = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:67:27: warning: static property 'didEnterBackground' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didEnterBackground = Options(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:67:27: note: add '@MainActor' to make static property 'didEnterBackground' part of global actor 'MainActor'
        public static let didEnterBackground = Options(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:67:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didEnterBackground = Options(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:72:27: warning: static property 'didFinishLaunching' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let didFinishLaunching = Options(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:72:27: note: add '@MainActor' to make static property 'didFinishLaunching' part of global actor 'MainActor'
        public static let didFinishLaunching = Options(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:72:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let didFinishLaunching = Options(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:77:27: warning: static property 'willEnterForeground' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willEnterForeground = Options(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:77:27: note: add '@MainActor' to make static property 'willEnterForeground' part of global actor 'MainActor'
        public static let willEnterForeground = Options(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:77:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willEnterForeground = Options(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:82:27: warning: static property 'willResignActive' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willResignActive = Options(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:82:27: note: add '@MainActor' to make static property 'willResignActive' part of global actor 'MainActor'
        public static let willResignActive = Options(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:82:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willResignActive = Options(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:87:27: warning: static property 'willTerminate' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let willTerminate = Options(rawValue: 1 << 5)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:87:27: note: add '@MainActor' to make static property 'willTerminate' part of global actor 'MainActor'
        public static let willTerminate = Options(rawValue: 1 << 5)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:87:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let willTerminate = Options(rawValue: 1 << 5)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:92:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'ApplicationStateMonitor.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let all: Options = [.didBecomeActive,
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:58:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet {
                  ^
                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:92:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
        public static let all: Options = [.didBecomeActive,
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/ApplicationStateMonitor.swift:92:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let all: Options = [.didBecomeActive,
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/BackgroundRefreshMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Core/UIKit/Application/MemoryMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for XestiMonitors (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriver\ Compilation\ Requirements XestiMonitors normal arm64 com.apple.xcode.tools.swift.compiler (in target 'XestiMonitors' from project 'XestiMonitors')
    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 XestiMonitors -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors-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/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.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/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling BundleClassLoadMonitor.swift, BundleResourceRequestMonitor.swift, CalendarDayMonitor.swift, CurrentLocaleMonitor.swift, ExtensionHostMonitor.swift, HTTPCookieStorageMonitor.swift, MetadataQueryMonitor.swift, PortMonitor.swift, ProcessInfoPowerStateMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriverJobDiscovery normal arm64 Compiling ProcessInfoThermalStateMonitor.swift, SystemClockMonitor.swift, SystemTimeZoneMonitor.swift, URLCredentialStorageMonitor.swift, UbiquitousKeyValueStoreMonitor.swift, UbiquityIdentityMonitor.swift, UndoManagerMonitor.swift, UserDefaultsMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/XestiMonitors-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors-Swift.h (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/XestiMonitors-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.swiftmodule (in target 'XestiMonitors' from project 'XestiMonitors')
    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/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.swiftdoc (in target 'XestiMonitors' from project 'XestiMonitors')
    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/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.abi.json (in target 'XestiMonitors' from project 'XestiMonitors')
    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/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.swiftsourceinfo (in target 'XestiMonitors' from project 'XestiMonitors')
    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/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling BaseMonitor.swift, BaseNotificationMonitor.swift, Monitor.swift, BeaconRangingMonitor.swift, HeadingMonitor.swift, LocationAuthorizationMonitor.swift, LocationManagerDelegateAdapter.swift, RegionMonitor.swift, SignificantLocationMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriverJobDiscovery normal arm64 Compiling StandardLocationMonitor.swift, VisitMonitor.swift, AccelerometerMonitor.swift, AltimeterMonitor.swift, DeviceMotionMonitor.swift, GyroscopeMonitor.swift, MagnetometerMonitor.swift, MotionActivityMonitor.swift, PedometerMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriverJobDiscovery normal arm64 Compiling LocationManagerInjection.swift, MotionActivityManagerInjection.swift, MotionManagerInjection.swift, NetworkReachability.swift, NetworkReachabilityInjection.swift, NotificationCenterInjection.swift, PedometerInjection.swift, ProcessInfoInjection.swift, CMAcceleration+DeviceOrientation.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriverJobDiscovery normal arm64 Compiling FileSystemObjectMonitor.swift, NetworkReachabilityMonitor.swift, AccessibilityAnnouncementMonitor.swift, AccessibilityElementMonitor.swift, AccessibilityStatusMonitor.swift, ApplicationStateMonitor.swift, BackgroundRefreshMonitor.swift, MemoryMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriverJobDiscovery normal arm64 Compiling DocumentStateMonitor.swift, FocusMonitor.swift, KeyboardMonitor.swift, MenuControllerMonitor.swift, PasteboardMonitor.swift, TableViewSelectionMonitor.swift, ViewControllerShowDetailTargetMonitor.swift, WindowMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriverJobDiscovery normal arm64 Compiling AccessibilityStatus.swift, AccessibilityStatusInjection.swift, AltimeterInjection.swift, ApplicationInjection.swift, DeviceInjection.swift, FileManagerInjection.swift, FileSystem.swift, FileSystemInjection.swift, FileSystemObjectInjection.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriverJobDiscovery normal arm64 Compiling ProtectedDataMonitor.swift, ScreenshotMonitor.swift, StatusBarMonitor.swift, TimeMonitor.swift, BatteryMonitor.swift, OrientationMonitor.swift, ProximityMonitor.swift, ContentSizeCategoryMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriverJobDiscovery normal arm64 Compiling ScreenBrightnessMonitor.swift, ScreenCapturedMonitor.swift, ScreenConnectionMonitor.swift, ScreenModeMonitor.swift, TextFieldTextMonitor.swift, TextInputModeMonitor.swift, TextStorageMonitor.swift, TextViewTextMonitor.swift (in target 'XestiMonitors' from project 'XestiMonitors')
SwiftDriver\ Compilation XestiMonitors normal arm64 com.apple.xcode.tools.swift.compiler (in target 'XestiMonitors' from project 'XestiMonitors')
    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 XestiMonitors -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors-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/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.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/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors-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-appletvos/XestiMonitors.o normal (in target 'XestiMonitors' from project 'XestiMonitors')
    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-tvos12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.o
ExtractAppIntentsMetadata (in target 'XestiMonitors' from project 'XestiMonitors')
    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 XestiMonitors --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 12.0 --bundle-identifier spi-builder-workspace.XestiMonitors --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.appintents --target-triple arm64-apple-tvos12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/XestiMonitors.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/XestiMonitors.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XestiMonitors.build/Debug-appletvos/XestiMonitors.build/Objects-normal/arm64/XestiMonitors.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-25 11:00:28.852 appintentsmetadataprocessor[719:4115] Starting appintentsmetadataprocessor export
2025-04-25 11:00:28.894 appintentsmetadataprocessor[719:4115] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.o (in target 'XestiMonitors' from project 'XestiMonitors')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XestiMonitors.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "XestiMonitors",
  "name" : "XestiMonitors",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "XestiMonitors",
      "targets" : [
        "XestiMonitors"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4"
  ],
  "targets" : [
    {
      "c99name" : "XestiMonitors",
      "module_type" : "SwiftTarget",
      "name" : "XestiMonitors",
      "path" : ".",
      "product_memberships" : [
        "XestiMonitors"
      ],
      "sources" : [
        "Sources/Core/Base/BaseMonitor.swift",
        "Sources/Core/Base/BaseNotificationMonitor.swift",
        "Sources/Core/Base/Monitor.swift",
        "Sources/Core/CoreLocation/BeaconRangingMonitor.swift",
        "Sources/Core/CoreLocation/HeadingMonitor.swift",
        "Sources/Core/CoreLocation/LocationAuthorizationMonitor.swift",
        "Sources/Core/CoreLocation/LocationManagerDelegateAdapter.swift",
        "Sources/Core/CoreLocation/RegionMonitor.swift",
        "Sources/Core/CoreLocation/SignificantLocationMonitor.swift",
        "Sources/Core/CoreLocation/StandardLocationMonitor.swift",
        "Sources/Core/CoreLocation/VisitMonitor.swift",
        "Sources/Core/CoreMotion/AccelerometerMonitor.swift",
        "Sources/Core/CoreMotion/AltimeterMonitor.swift",
        "Sources/Core/CoreMotion/DeviceMotionMonitor.swift",
        "Sources/Core/CoreMotion/GyroscopeMonitor.swift",
        "Sources/Core/CoreMotion/MagnetometerMonitor.swift",
        "Sources/Core/CoreMotion/MotionActivityMonitor.swift",
        "Sources/Core/CoreMotion/PedometerMonitor.swift",
        "Sources/Core/DependencyInjection/AccessibilityStatus.swift",
        "Sources/Core/DependencyInjection/AccessibilityStatusInjection.swift",
        "Sources/Core/DependencyInjection/AltimeterInjection.swift",
        "Sources/Core/DependencyInjection/ApplicationInjection.swift",
        "Sources/Core/DependencyInjection/DeviceInjection.swift",
        "Sources/Core/DependencyInjection/FileManagerInjection.swift",
        "Sources/Core/DependencyInjection/FileSystem.swift",
        "Sources/Core/DependencyInjection/FileSystemInjection.swift",
        "Sources/Core/DependencyInjection/FileSystemObjectInjection.swift",
        "Sources/Core/DependencyInjection/LocationManagerInjection.swift",
        "Sources/Core/DependencyInjection/MotionActivityManagerInjection.swift",
        "Sources/Core/DependencyInjection/MotionManagerInjection.swift",
        "Sources/Core/DependencyInjection/NetworkReachability.swift",
        "Sources/Core/DependencyInjection/NetworkReachabilityInjection.swift",
        "Sources/Core/DependencyInjection/NotificationCenterInjection.swift",
        "Sources/Core/DependencyInjection/PedometerInjection.swift",
        "Sources/Core/DependencyInjection/ProcessInfoInjection.swift",
        "Sources/Core/Extensions/CMAcceleration+DeviceOrientation.swift",
        "Sources/Core/Foundation/BundleClassLoadMonitor.swift",
        "Sources/Core/Foundation/BundleResourceRequestMonitor.swift",
        "Sources/Core/Foundation/CalendarDayMonitor.swift",
        "Sources/Core/Foundation/CurrentLocaleMonitor.swift",
        "Sources/Core/Foundation/ExtensionHostMonitor.swift",
        "Sources/Core/Foundation/HTTPCookieStorageMonitor.swift",
        "Sources/Core/Foundation/MetadataQueryMonitor.swift",
        "Sources/Core/Foundation/PortMonitor.swift",
        "Sources/Core/Foundation/ProcessInfoPowerStateMonitor.swift",
        "Sources/Core/Foundation/ProcessInfoThermalStateMonitor.swift",
        "Sources/Core/Foundation/SystemClockMonitor.swift",
        "Sources/Core/Foundation/SystemTimeZoneMonitor.swift",
        "Sources/Core/Foundation/URLCredentialStorageMonitor.swift",
        "Sources/Core/Foundation/UbiquitousKeyValueStoreMonitor.swift",
        "Sources/Core/Foundation/UbiquityIdentityMonitor.swift",
        "Sources/Core/Foundation/UndoManagerMonitor.swift",
        "Sources/Core/Foundation/UserDefaultsMonitor.swift",
        "Sources/Core/Other/FileSystemObjectMonitor.swift",
        "Sources/Core/Other/NetworkReachabilityMonitor.swift",
        "Sources/Core/UIKit/Accessibility/AccessibilityAnnouncementMonitor.swift",
        "Sources/Core/UIKit/Accessibility/AccessibilityElementMonitor.swift",
        "Sources/Core/UIKit/Accessibility/AccessibilityStatusMonitor.swift",
        "Sources/Core/UIKit/Application/ApplicationStateMonitor.swift",
        "Sources/Core/UIKit/Application/BackgroundRefreshMonitor.swift",
        "Sources/Core/UIKit/Application/MemoryMonitor.swift",
        "Sources/Core/UIKit/Application/ProtectedDataMonitor.swift",
        "Sources/Core/UIKit/Application/ScreenshotMonitor.swift",
        "Sources/Core/UIKit/Application/StatusBarMonitor.swift",
        "Sources/Core/UIKit/Application/TimeMonitor.swift",
        "Sources/Core/UIKit/Device/BatteryMonitor.swift",
        "Sources/Core/UIKit/Device/OrientationMonitor.swift",
        "Sources/Core/UIKit/Device/ProximityMonitor.swift",
        "Sources/Core/UIKit/Other/ContentSizeCategoryMonitor.swift",
        "Sources/Core/UIKit/Other/DocumentStateMonitor.swift",
        "Sources/Core/UIKit/Other/FocusMonitor.swift",
        "Sources/Core/UIKit/Other/KeyboardMonitor.swift",
        "Sources/Core/UIKit/Other/MenuControllerMonitor.swift",
        "Sources/Core/UIKit/Other/PasteboardMonitor.swift",
        "Sources/Core/UIKit/Other/TableViewSelectionMonitor.swift",
        "Sources/Core/UIKit/Other/ViewControllerShowDetailTargetMonitor.swift",
        "Sources/Core/UIKit/Other/WindowMonitor.swift",
        "Sources/Core/UIKit/Screen/ScreenBrightnessMonitor.swift",
        "Sources/Core/UIKit/Screen/ScreenCapturedMonitor.swift",
        "Sources/Core/UIKit/Screen/ScreenConnectionMonitor.swift",
        "Sources/Core/UIKit/Screen/ScreenModeMonitor.swift",
        "Sources/Core/UIKit/Text/TextFieldTextMonitor.swift",
        "Sources/Core/UIKit/Text/TextInputModeMonitor.swift",
        "Sources/Core/UIKit/Text/TextStorageMonitor.swift",
        "Sources/Core/UIKit/Text/TextViewTextMonitor.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/*.m': File not found.
warning: 'spi-builder-workspace': Invalid Exclude '/Users/admin/builder/spi-builder-workspace/*.h': File not found.
Done.