The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of YCoreUI, reference 1.7.0 (38f2a2), with Swift 6.1 for tvOS using Xcode 16.3 on 27 Apr 2025 22:08:16 UTC.

Swift 6 data race errors: 26

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme YCoreUI -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

@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:74:39: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.priority, .required)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:75:34: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssert(constraint.isActive)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:82:23: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.translatesAutoresizingMaskIntoConstraints)
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:93:31: warning: call to main actor-isolated instance method 'constrainSize(_:relatedBy:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let constraints = sut.constrainSize(randomDimension)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainSize.swift:81:36: note: calls to instance method 'constrainSize(_:relatedBy:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrainSize(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:79:10: note: add '@MainActor' to make instance method 'testDimension()' part of global actor 'MainActor'
    func testDimension() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:95:28: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.translatesAutoresizingMaskIntoConstraints)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:103:39: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.firstItem as? UIView, sut)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:163:43: note: property declared here
@property (nullable, readonly, assign) id firstItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:104:39: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.firstAttribute, $0.0)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:105:37: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertNil(constraint.secondItem)
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:164:43: note: property declared here
@property (nullable, readonly, assign) id secondItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:106:39: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.secondAttribute, .notAnAttribute)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:107:39: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.multiplier, 1)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:108:39: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.constant, $0.1)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:109:39: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.priority, .required)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:110:34: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssert(constraint.isActive)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:120:19: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = UIView()
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainSizeTests.swift:116:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(
         ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:50:23: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.translatesAutoresizingMaskIntoConstraints)
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:53:34: warning: call to main actor-isolated instance method 'constrain(_:to:of:relatedBy:multiplier:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let constraint = sut.constrain($0, constant: amount)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrain.swift:55:36: note: calls to instance method 'constrain(_:to:of:relatedBy:multiplier:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:55:39: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.firstItem as? UIView, sut)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:163:43: note: property declared here
@property (nullable, readonly, assign) id firstItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:56:39: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.firstAttribute, $0)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:57:37: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertNil(constraint.secondItem)
                                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:164:43: note: property declared here
@property (nullable, readonly, assign) id secondItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:58:39: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.secondAttribute, .notAnAttribute)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:59:39: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.multiplier, 1)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:60:39: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.constant, amount)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:61:39: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.priority, .required)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:62:34: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssert(constraint.isActive)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:66:28: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.translatesAutoresizingMaskIntoConstraints)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:72:34: warning: call to main actor-isolated instance method 'constrain(_:to:of:relatedBy:multiplier:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let constraint = sut.constrain($0, constant: amount, isActive: false)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrain.swift:55:36: note: calls to instance method 'constrain(_:to:of:relatedBy:multiplier:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:73:39: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertFalse(constraint.isActive)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:80:34: warning: call to main actor-isolated instance method 'constrain(_:to:of:relatedBy:multiplier:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let constraint = sut.constrain(.width, constant: amount, priority: $0)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrain.swift:55:36: note: calls to instance method 'constrain(_:to:of:relatedBy:multiplier:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:81:39: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.priority, $0)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:87:23: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.translatesAutoresizingMaskIntoConstraints)
                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:89:25: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let container = UIView()
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:85:10: note: add '@MainActor' to make instance method 'testDual()' part of global actor 'MainActor'
    func testDual() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:90:21: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let view2 = UIView()
                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:85:10: note: add '@MainActor' to make instance method 'testDual()' part of global actor 'MainActor'
    func testDual() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:91:19: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        container.addSubview(sut)
                  ^
UIKit.UIView.addSubview:2:22: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
@MainActor open func addSubview(_ view: UIView)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:85:10: note: add '@MainActor' to make instance method 'testDual()' part of global actor 'MainActor'
    func testDual() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:92:19: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        container.addSubview(view2)
                  ^
UIKit.UIView.addSubview:2:22: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
@MainActor open func addSubview(_ view: UIView)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:85:10: note: add '@MainActor' to make instance method 'testDual()' part of global actor 'MainActor'
    func testDual() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:95:34: warning: call to main actor-isolated instance method 'constrain(_:to:of:relatedBy:multiplier:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let constraint = sut.constrain(
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrain.swift:55:36: note: calls to instance method 'constrain(_:to:of:relatedBy:multiplier:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:102:39: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.firstItem as? UIView, sut)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:163:43: note: property declared here
@property (nullable, readonly, assign) id firstItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:103:39: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.firstAttribute, $0)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:104:39: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.secondItem as? UIView, view2)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:164:43: note: property declared here
@property (nullable, readonly, assign) id secondItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:105:39: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.secondAttribute, $0)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:106:39: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.multiplier, 1)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:107:39: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.constant, offset)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:108:39: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertEqual(constraint.priority, .required)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:109:34: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssert(constraint.isActive)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:113:28: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.translatesAutoresizingMaskIntoConstraints)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:122:19: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = UIView()
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainTests.swift:118:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(
         ^
    @MainActor
SwiftCompile normal arm64 Compiling\ UIScrollView+keyboardNotificationsTests.swift,\ UIView+AnimationTests.swift,\ UIView+constrainAnchorTests.swift,\ UIView+constrainAspectRatioTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIScrollView+keyboardNotificationsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIScrollView+keyboardNotificationsTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:14:25: warning: call to main actor-isolated class method 'reset()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        defer { SpyView.reset() }
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:124:16: note: calls to class method 'reset()' from outside of its actor context are implicitly asynchronous
    class func reset() {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:124:16: note: main actor isolation inferred from inheritance from class 'UIView'
    class func reset() {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:13:10: note: add '@MainActor' to make instance method 'test_regular_deliversAnimation()' part of global actor 'MainActor'
    func test_regular_deliversAnimation() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:28:17: warning: call to main actor-isolated class method 'animate(with:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        SpyView.animate(
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+Animation.swift:18:16: note: calls to class method 'animate(with:animations:completion:)' from outside of its actor context are implicitly asynchronous
    class func animate(
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:13:10: note: add '@MainActor' to make instance method 'test_regular_deliversAnimation()' part of global actor 'MainActor'
    func test_regular_deliversAnimation() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:37:32: warning: main actor-isolated static property 'lastAnimation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(SpyView.lastAnimation, sut)
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:87:16: note: static property declared here
    static var lastAnimation: Animation?
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:43:25: warning: call to main actor-isolated class method 'reset()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        defer { SpyView.reset() }
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:124:16: note: calls to class method 'reset()' from outside of its actor context are implicitly asynchronous
    class func reset() {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:124:16: note: main actor isolation inferred from inheritance from class 'UIView'
    class func reset() {
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:42:10: note: add '@MainActor' to make instance method 'test_spring_deliversAnimation()' part of global actor 'MainActor'
    func test_spring_deliversAnimation() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:59:17: warning: call to main actor-isolated class method 'animate(with:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        SpyView.animate(
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+Animation.swift:18:16: note: calls to class method 'animate(with:animations:completion:)' from outside of its actor context are implicitly asynchronous
    class func animate(
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:42:10: note: add '@MainActor' to make instance method 'test_spring_deliversAnimation()' part of global actor 'MainActor'
    func test_spring_deliversAnimation() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:68:32: warning: main actor-isolated static property 'lastAnimation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(SpyView.lastAnimation, sut)
                               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:87:16: note: static property declared here
    static var lastAnimation: Animation?
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:28:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
        SpyView.animate(
        ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:28:17: note: sending 'sut' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
        SpyView.animate(
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:37:47: note: access can happen concurrently
        XCTAssertEqual(SpyView.lastAnimation, sut)
                                              ^~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:59:17: warning: sending 'sut' risks causing data races; this is an error in the Swift 6 language mode
        SpyView.animate(
        ~~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:59:17: note: sending 'sut' to main actor-isolated callee risks causing data races between main actor-isolated and local nonisolated uses
        SpyView.animate(
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+AnimationTests.swift:68:47: note: access can happen concurrently
        XCTAssertEqual(SpyView.lastAnimation, sut)
                                              ^~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:16:40: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.leadingAnchor, sut.view2.leadingAnchor),
                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:572:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leadingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:13:10: note: add '@MainActor' to make instance method 'testXAxisConstraints()' part of global actor 'MainActor'
    func testXAxisConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:17:40: warning: main actor-isolated property 'centerXAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.centerXAnchor, sut.view2.centerXAnchor),
                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:580:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *centerXAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:13:10: note: add '@MainActor' to make instance method 'testXAxisConstraints()' part of global actor 'MainActor'
    func testXAxisConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:18:41: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.trailingAnchor, sut.view2.trailingAnchor)
                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:573:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:13:10: note: add '@MainActor' to make instance method 'testXAxisConstraints()' part of global actor 'MainActor'
    func testXAxisConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:21:29: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.view1.translatesAutoresizingMaskIntoConstraints)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:29:44: warning: call to main actor-isolated instance method 'constrain(_:to:relatedBy:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAnchor.swift:94:36: note: calls to instance method 'constrain(_:to:relatedBy:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:38:43: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstItem as? UIView, sut.view1)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:163:43: note: property declared here
@property (nullable, readonly, assign) id firstItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:39:43: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.secondItem as? UIView, sut.view2)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:164:43: note: property declared here
@property (nullable, readonly, assign) id secondItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:43:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .leading)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:46:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .centerX)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:48:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .trailing)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:53:43: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstAttribute, constraint.secondAttribute)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:53:70: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstAttribute, constraint.secondAttribute)
                                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:54:43: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.relation, relation)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:173:39: note: property declared here
@property (readonly) NSLayoutRelation relation;
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:55:43: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.multiplier, 1)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:56:43: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.constant, offset)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:57:43: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.priority, priority)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:58:43: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.isActive, isActive)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:63:34: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.view1.translatesAutoresizingMaskIntoConstraints)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:69:65: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.leadingMarginAnchor, sut.view2.layoutMarginsGuide.leadingAnchor),
                                                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:46:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *leadingAnchor;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:66:10: note: add '@MainActor' to make instance method 'testXAxisMarginConstraints()' part of global actor 'MainActor'
    func testXAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:69:46: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.leadingMarginAnchor, sut.view2.layoutMarginsGuide.leadingAnchor),
                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:66:10: note: add '@MainActor' to make instance method 'testXAxisMarginConstraints()' part of global actor 'MainActor'
    func testXAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:70:65: warning: main actor-isolated property 'centerXAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.centerXMarginAnchor, sut.view2.layoutMarginsGuide.centerXAnchor),
                                                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:54:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *centerXAnchor;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:66:10: note: add '@MainActor' to make instance method 'testXAxisMarginConstraints()' part of global actor 'MainActor'
    func testXAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:70:46: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.centerXMarginAnchor, sut.view2.layoutMarginsGuide.centerXAnchor),
                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:66:10: note: add '@MainActor' to make instance method 'testXAxisMarginConstraints()' part of global actor 'MainActor'
    func testXAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:71:66: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.trailingMarginAnchor, sut.view2.layoutMarginsGuide.trailingAnchor)
                                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:47:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutXAxisAnchor *trailingAnchor;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:66:10: note: add '@MainActor' to make instance method 'testXAxisMarginConstraints()' part of global actor 'MainActor'
    func testXAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:71:47: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.trailingMarginAnchor, sut.view2.layoutMarginsGuide.trailingAnchor)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:66:10: note: add '@MainActor' to make instance method 'testXAxisMarginConstraints()' part of global actor 'MainActor'
    func testXAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:74:29: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.view1.translatesAutoresizingMaskIntoConstraints)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:82:44: warning: call to main actor-isolated instance method 'constrain(_:to:relatedBy:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAnchor.swift:94:36: note: calls to instance method 'constrain(_:to:relatedBy:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:91:43: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstItem as? UILayoutGuide, sut.view1.layoutMarginsGuide)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:163:43: note: property declared here
@property (nullable, readonly, assign) id firstItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:91:82: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstItem as? UILayoutGuide, sut.view1.layoutMarginsGuide)
                                                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:92:43: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.secondItem as? UILayoutGuide, sut.view2.layoutMarginsGuide)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:164:43: note: property declared here
@property (nullable, readonly, assign) id secondItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:92:83: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.secondItem as? UILayoutGuide, sut.view2.layoutMarginsGuide)
                                                                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:96:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .leading)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:98:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .centerX)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:100:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .trailing)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:105:43: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstAttribute, constraint.secondAttribute)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:105:70: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstAttribute, constraint.secondAttribute)
                                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:106:43: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.relation, relation)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:173:39: note: property declared here
@property (readonly) NSLayoutRelation relation;
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:107:43: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.multiplier, 1)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:108:43: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.constant, offset)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:109:43: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.priority, priority)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:110:43: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.isActive, isActive)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:115:34: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.view1.translatesAutoresizingMaskIntoConstraints)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:121:36: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.topAnchor, sut.view2.topAnchor),
                                   ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:576:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:118:10: note: add '@MainActor' to make instance method 'testYAxisConstraints()' part of global actor 'MainActor'
    func testYAxisConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:122:40: warning: main actor-isolated property 'centerYAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.centerYAnchor, sut.view2.centerYAnchor),
                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:581:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *centerYAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:118:10: note: add '@MainActor' to make instance method 'testYAxisConstraints()' part of global actor 'MainActor'
    func testYAxisConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:123:39: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.bottomAnchor, sut.view2.bottomAnchor)
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:577:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor API_AVAILABLE(ios(9.0));
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:118:10: note: add '@MainActor' to make instance method 'testYAxisConstraints()' part of global actor 'MainActor'
    func testYAxisConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:126:29: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.view1.translatesAutoresizingMaskIntoConstraints)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:134:44: warning: call to main actor-isolated instance method 'constrain(_:to:relatedBy:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAnchor.swift:151:36: note: calls to instance method 'constrain(_:to:relatedBy:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:143:43: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstItem as? UIView, sut.view1)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:163:43: note: property declared here
@property (nullable, readonly, assign) id firstItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:144:43: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.secondItem as? UIView, sut.view2)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:164:43: note: property declared here
@property (nullable, readonly, assign) id secondItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:148:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .top)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:150:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .centerY)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:152:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .bottom)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:157:43: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstAttribute, constraint.secondAttribute)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:157:70: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstAttribute, constraint.secondAttribute)
                                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:158:43: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.relation, relation)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:173:39: note: property declared here
@property (readonly) NSLayoutRelation relation;
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:159:43: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.multiplier, 1)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:160:43: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.constant, offset)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:161:43: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.priority, priority)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:162:43: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.isActive, isActive)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:167:34: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.view1.translatesAutoresizingMaskIntoConstraints)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:173:61: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.topMarginAnchor, sut.view2.layoutMarginsGuide.topAnchor),
                                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:50:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *topAnchor;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:170:10: note: add '@MainActor' to make instance method 'testYAxisMarginConstraints()' part of global actor 'MainActor'
    func testYAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:173:42: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.topMarginAnchor, sut.view2.layoutMarginsGuide.topAnchor),
                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:170:10: note: add '@MainActor' to make instance method 'testYAxisMarginConstraints()' part of global actor 'MainActor'
    func testYAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:174:65: warning: main actor-isolated property 'centerYAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.centerYMarginAnchor, sut.view2.layoutMarginsGuide.centerYAnchor),
                                                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:55:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *centerYAnchor;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:170:10: note: add '@MainActor' to make instance method 'testYAxisMarginConstraints()' part of global actor 'MainActor'
    func testYAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:174:46: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.centerYMarginAnchor, sut.view2.layoutMarginsGuide.centerYAnchor),
                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:170:10: note: add '@MainActor' to make instance method 'testYAxisMarginConstraints()' part of global actor 'MainActor'
    func testYAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:175:64: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.bottomMarginAnchor, sut.view2.layoutMarginsGuide.bottomAnchor)
                                                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILayoutGuide.h:51:59: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutYAxisAnchor *bottomAnchor;
                                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:170:10: note: add '@MainActor' to make instance method 'testYAxisMarginConstraints()' part of global actor 'MainActor'
    func testYAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:175:45: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.bottomMarginAnchor, sut.view2.layoutMarginsGuide.bottomAnchor)
                                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:170:10: note: add '@MainActor' to make instance method 'testYAxisMarginConstraints()' part of global actor 'MainActor'
    func testYAxisMarginConstraints() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:178:29: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.view1.translatesAutoresizingMaskIntoConstraints)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:186:44: warning: call to main actor-isolated instance method 'constrain(_:to:relatedBy:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAnchor.swift:151:36: note: calls to instance method 'constrain(_:to:relatedBy:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:195:43: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstItem as? UILayoutGuide, sut.view1.layoutMarginsGuide)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:163:43: note: property declared here
@property (nullable, readonly, assign) id firstItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:195:82: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstItem as? UILayoutGuide, sut.view1.layoutMarginsGuide)
                                                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:196:43: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.secondItem as? UILayoutGuide, sut.view2.layoutMarginsGuide)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:164:43: note: property declared here
@property (nullable, readonly, assign) id secondItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:196:83: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.secondItem as? UILayoutGuide, sut.view2.layoutMarginsGuide)
                                                                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:280:43: note: property declared here
@property(readonly,strong) UILayoutGuide *layoutMarginsGuide API_AVAILABLE(ios(9.0));
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:200:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .top)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:202:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .centerY)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:204:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .bottom)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:209:43: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstAttribute, constraint.secondAttribute)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:209:70: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstAttribute, constraint.secondAttribute)
                                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:210:43: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.relation, relation)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:173:39: note: property declared here
@property (readonly) NSLayoutRelation relation;
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:211:43: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.multiplier, 1)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:212:43: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.constant, offset)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:213:43: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.priority, priority)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:214:43: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.isActive, isActive)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:219:34: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.view1.translatesAutoresizingMaskIntoConstraints)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:226:29: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.view1.translatesAutoresizingMaskIntoConstraints)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:234:44: warning: call to main actor-isolated instance method 'constrain(_:relatedBy:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAnchor.swift:207:36: note: calls to instance method 'constrain(_:relatedBy:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:242:43: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstItem as? UIView, sut.view1)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:163:43: note: property declared here
@property (nullable, readonly, assign) id firstItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:243:41: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertNil(constraint.secondItem as? UIView)
                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:164:43: note: property declared here
@property (nullable, readonly, assign) id secondItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:247:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .height)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:249:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .width)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:252:43: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.secondAttribute, .notAnAttribute)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:253:43: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.relation, relation)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:173:39: note: property declared here
@property (readonly) NSLayoutRelation relation;
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:254:43: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.multiplier, 1)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:255:43: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.constant, dimension)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:256:43: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.priority, priority)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:257:43: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.isActive, isActive)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:262:34: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.view1.translatesAutoresizingMaskIntoConstraints)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:269:33: warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.heightAnchor, sut.heightAnchor),
                                ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:579:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:265:10: note: add '@MainActor' to make instance method 'testLayoutDimensions()' part of global actor 'MainActor'
    func testLayoutDimensions() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:270:32: warning: main actor-isolated property 'widthAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.widthAnchor, sut.widthAnchor),
                               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:578:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:265:10: note: add '@MainActor' to make instance method 'testLayoutDimensions()' part of global actor 'MainActor'
    func testLayoutDimensions() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:272:39: warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.heightAnchor, sut.view2.heightAnchor),
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:579:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:265:10: note: add '@MainActor' to make instance method 'testLayoutDimensions()' part of global actor 'MainActor'
    func testLayoutDimensions() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:273:38: warning: main actor-isolated property 'widthAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.widthAnchor, sut.view2.widthAnchor),
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:578:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:265:10: note: add '@MainActor' to make instance method 'testLayoutDimensions()' part of global actor 'MainActor'
    func testLayoutDimensions() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:275:39: warning: main actor-isolated property 'widthAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.heightAnchor, sut.view1.widthAnchor),
                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:578:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *widthAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:265:10: note: add '@MainActor' to make instance method 'testLayoutDimensions()' part of global actor 'MainActor'
    func testLayoutDimensions() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:276:38: warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            (.widthAnchor, sut.view1.heightAnchor)
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:579:57: note: property declared here
@property(nonatomic,readonly,strong) NSLayoutDimension *heightAnchor API_AVAILABLE(ios(9.0));
                                                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:265:10: note: add '@MainActor' to make instance method 'testLayoutDimensions()' part of global actor 'MainActor'
    func testLayoutDimensions() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:279:29: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(sut.view1.translatesAutoresizingMaskIntoConstraints)
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:288:44: warning: call to main actor-isolated instance method 'constrain(_:to:relatedBy:multiplier:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAnchor.swift:255:36: note: calls to instance method 'constrain(_:to:relatedBy:multiplier:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:298:43: warning: main actor-isolated property 'firstItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.firstItem as? UIView, sut.view1)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:163:43: note: property declared here
@property (nullable, readonly, assign) id firstItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:299:44: warning: main actor-isolated property 'secondItem' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertNotNil(constraint.secondItem)
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:164:43: note: property declared here
@property (nullable, readonly, assign) id secondItem;
                                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:303:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .height)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:305:47: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                    XCTAssertEqual(constraint.firstAttribute, .width)
                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:308:38: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssert(constraint.secondAttribute == .height || constraint.secondAttribute == .width)
                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:308:79: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssert(constraint.secondAttribute == .height || constraint.secondAttribute == .width)
                                                                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:309:43: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.relation, relation)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:173:39: note: property declared here
@property (readonly) NSLayoutRelation relation;
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:310:43: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.multiplier, multiplier)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:311:43: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.constant, offset)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:312:43: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.priority, priority)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:313:43: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertEqual(constraint.isActive, isActive)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:318:34: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.view1.translatesAutoresizingMaskIntoConstraints)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:327:25: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let container = MockLayoutContainer()
                        ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:364:5: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    init() {
    ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:364:5: note: main actor isolation inferred from inheritance from class 'UIView'
    init() {
    ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:323:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:29:44: warning: sending '$0.0' risks causing data races; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                 ~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:29:44: note: sending task-isolated '$0.0' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:82:44: warning: sending '$0.0' risks causing data races; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                 ~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:82:44: note: sending task-isolated '$0.0' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:134:44: warning: sending '$0.0' risks causing data races; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                 ~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:134:44: note: sending task-isolated '$0.0' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:186:44: warning: sending '$0.0' risks causing data races; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                 ~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:186:44: note: sending task-isolated '$0.0' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:234:44: warning: sending '$0' risks causing data races; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                 ~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:234:44: note: sending task-isolated '$0' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
                let constraint = sut.view1.constrain(
                                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:288:44: warning: sending '$0.0' risks causing data races; this is an error in the Swift 6 language mode
                let constraint = sut.view1.constrain(
                                 ~~~~~~~~~~^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAnchorTests.swift:288:44: note: sending task-isolated '$0.0' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
                let constraint = sut.view1.constrain(
                                           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:17:30: warning: call to main actor-isolated instance method 'constrainAspectRatio(_:offset:relatedBy:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let constraint = sut.constrainAspectRatio(0.5)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAspectRatio.swift:30:36: note: calls to instance method 'constrainAspectRatio(_:offset:relatedBy:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrainAspectRatio(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:13:10: note: add '@MainActor' to make instance method 'test_constrainAspectRatio_deliversDefaultValues()' part of global actor 'MainActor'
    func test_constrainAspectRatio_deliversDefaultValues() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:19:35: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(constraint.constant, .zero)
                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:20:35: warning: main actor-isolated property 'priority' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(constraint.priority, .required)
                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:149:28: note: property declared here
@property UILayoutPriority priority;
                           ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:21:34: warning: main actor-isolated property 'isActive' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(constraint.isActive)
                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:181:34: note: property declared here
@property (getter=isActive) BOOL active API_AVAILABLE(macos(10.10), ios(8.0));
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:22:35: warning: main actor-isolated property 'relation' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(constraint.relation, .equal)
                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:173:39: note: property declared here
@property (readonly) NSLayoutRelation relation;
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:23:35: warning: main actor-isolated property 'firstAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(constraint.firstAttribute, .width)
                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:165:40: note: property declared here
@property (readonly) NSLayoutAttribute firstAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:24:35: warning: main actor-isolated property 'secondAttribute' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(constraint.secondAttribute, .height)
                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:166:40: note: property declared here
@property (readonly) NSLayoutAttribute secondAttribute;
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:31:13: warning: call to main actor-isolated instance method 'constrainAspectRatio(_:offset:relatedBy:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.constrainAspectRatio(0.5)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAspectRatio.swift:30:36: note: calls to instance method 'constrainAspectRatio(_:offset:relatedBy:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrainAspectRatio(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:27:10: note: add '@MainActor' to make instance method 'test_constrainAspectRatio_translatesAutoresizingMaskIntoConstraintsIsFalse()' part of global actor 'MainActor'
    func test_constrainAspectRatio_translatesAutoresizingMaskIntoConstraintsIsFalse() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:33:28: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.translatesAutoresizingMaskIntoConstraints)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:464:27: note: property declared here
@property(nonatomic) BOOL translatesAutoresizingMaskIntoConstraints API_AVAILABLE(ios(6.0)); // Default YES
                          ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:41:30: warning: call to main actor-isolated instance method 'constrainAspectRatio(_:offset:relatedBy:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let constraint = sut.constrainAspectRatio(ratio)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAspectRatio.swift:30:36: note: calls to instance method 'constrainAspectRatio(_:offset:relatedBy:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrainAspectRatio(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:36:10: note: add '@MainActor' to make instance method 'test_constrainAspectRatio_multiplierAndRatioMatches()' part of global actor 'MainActor'
    func test_constrainAspectRatio_multiplierAndRatioMatches() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:43:35: warning: main actor-isolated property 'multiplier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(constraint.multiplier, ratio)
                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:174:30: note: property declared here
@property (readonly) CGFloat multiplier;
                             ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:48:29: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let containerView = UIView(frame: CGRect(origin: .zero, size: CGSize(width: 500, height: 500)))
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:149:1: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithFrame:(CGRect)frame NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:46:10: note: add '@MainActor' to make instance method 'test_constrainAspectRatio_resizesSUTWithGivenRatio()' part of global actor 'MainActor'
    func test_constrainAspectRatio_resizesSUTWithGivenRatio() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:50:23: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        containerView.addSubview(sut)
                      ^
UIKit.UIView.addSubview:2:22: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
@MainActor open func addSubview(_ view: UIView)}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:46:10: note: add '@MainActor' to make instance method 'test_constrainAspectRatio_resizesSUTWithGivenRatio()' part of global actor 'MainActor'
    func test_constrainAspectRatio_resizesSUTWithGivenRatio() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:54:13: warning: call to main actor-isolated instance method 'constrain(_:relatedBy:constant:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.constrain(.heightAnchor, constant: height)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAnchor.swift:207:36: note: calls to instance method 'constrain(_:relatedBy:constant:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrain(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:46:10: note: add '@MainActor' to make instance method 'test_constrainAspectRatio_resizesSUTWithGivenRatio()' part of global actor 'MainActor'
    func test_constrainAspectRatio_resizesSUTWithGivenRatio() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:56:13: warning: call to main actor-isolated instance method 'constrainAspectRatio(_:offset:relatedBy:priority:isActive:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.constrainAspectRatio(ratio)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/Extensions/UIKit/UIView+constrainAspectRatio.swift:30:36: note: calls to instance method 'constrainAspectRatio(_:offset:relatedBy:priority:isActive:)' from outside of its actor context are implicitly asynchronous
    @discardableResult public func constrainAspectRatio(
                                   ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:46:10: note: add '@MainActor' to make instance method 'test_constrainAspectRatio_resizesSUTWithGivenRatio()' part of global actor 'MainActor'
    func test_constrainAspectRatio_resizesSUTWithGivenRatio() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:57:13: warning: call to main actor-isolated instance method 'layoutIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.layoutIfNeeded()
            ^
UIKit.UIView.layoutIfNeeded:2:22: note: calls to instance method 'layoutIfNeeded()' from outside of its actor context are implicitly asynchronous
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:46:10: note: add '@MainActor' to make instance method 'test_constrainAspectRatio_resizesSUTWithGivenRatio()' part of global actor 'MainActor'
    func test_constrainAspectRatio_resizesSUTWithGivenRatio() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:59:28: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.bounds.width, ratio * sut.bounds.height)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:59:54: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.bounds.width, ratio * sut.bounds.height)
                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:60:28: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.bounds.height, height)
                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:69:19: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = UIView()
                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/UIKit/UIView+constrainAspectRatioTests.swift:65:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(
         ^
    @MainActor
SwiftCompile normal arm64 Compiling\ AnimationTests.swift,\ ElevationTests.swift,\ UIColor+TestHarness.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Foundations/AnimationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Foundations/ElevationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Foundations/UIColor+TestHarness.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Foundations/AnimationTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Foundations/ElevationTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Foundations/UIColor+TestHarness.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ FormViewControllerTests.swift,\ CGFloat+roundedTests.swift,\ CGSize+insetTests.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Components/FormViewControllerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/Foundation/CGFloat+roundedTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/Foundation/CGSize+insetTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/DerivedSources/resource_bundle_accessor.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Components/FormViewControllerTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/Foundation/CGFloat+roundedTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Extensions/Foundation/CGSize+insetTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling UITraitCollection+colorSpaces.swift, UIView+Animation.swift, UIView+constrain.swift (in target 'YCoreUI' from project 'YCoreUI')
SwiftCompile normal arm64 Compiling\ XCTestCase+MemoryLeakTracking.swift,\ ColorableTests.swift,\ ImageAssetTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Helpers/XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Protocols/ColorableTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Protocols/ImageAssetTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Helpers/XCTestCase+MemoryLeakTracking.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Helpers/XCTestCase+MemoryLeakTracking.swift:15:17: warning: sending 'instance' risks causing data races; this is an error in the Swift 6 language mode
                instance,
~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Helpers/XCTestCase+MemoryLeakTracking.swift:15:17: note: task-isolated 'instance' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                instance,
                ^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Protocols/ColorableTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Protocols/ColorableTests.swift:44:17: warning: reference to static property 'isLoggingEnabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        YCoreUI.isLoggingEnabled = false
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/YCoreUI+Logging.swift:15:23: note: static property declared here
    public static var isLoggingEnabled = true
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Protocols/ColorableTests.swift:51:17: warning: reference to static property 'isLoggingEnabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        YCoreUI.isLoggingEnabled = true
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/YCoreUI+Logging.swift:15:23: note: static property declared here
    public static var isLoggingEnabled = true
                      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Protocols/ImageAssetTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Protocols/ImageAssetTests.swift:45:17: warning: reference to static property 'isLoggingEnabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        YCoreUI.isLoggingEnabled = false
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/YCoreUI+Logging.swift:15:23: note: static property declared here
    public static var isLoggingEnabled = true
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Protocols/ImageAssetTests.swift:52:17: warning: reference to static property 'isLoggingEnabled' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
        YCoreUI.isLoggingEnabled = true
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YCoreUI/YCoreUI+Logging.swift:15:23: note: static property declared here
    public static var isLoggingEnabled = true
                      ^
SwiftDriverJobDiscovery normal arm64 Emitting module for YCoreUITests (in target 'YCoreUITests' from project 'YCoreUI')
SwiftDriver\ Compilation\ Requirements YCoreUITests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YCoreUITests' from project 'YCoreUI')
    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 YCoreUITests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.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-tvos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-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/PackageFrameworks -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 -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64 -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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests-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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests_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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling UIEdgeInsets+directionalTests.swift, UIEdgeInsets+horizontalTests.swift, UIEdgeInsets+initTests.swift, UIScreen+scaleFactorTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftDriver\ Compilation YCoreUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YCoreUI' from project 'YCoreUI')
    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 YCoreUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI.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-tvos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-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 -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64 -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/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI-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/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI.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/YCoreUI.build/Debug-appletvos/YCoreUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI_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/YCoreUI.build/Debug-appletvos/YCoreUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.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/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling AnimationTests.swift, ElevationTests.swift, UIColor+TestHarness.swift (in target 'YCoreUITests' from project 'YCoreUI')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUI.o normal (in target 'YCoreUI' from project 'YCoreUI')
    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-tvos14.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/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI_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/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUI.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.swiftmodule (in target 'YCoreUITests' from project 'YCoreUI')
    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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.swiftdoc (in target 'YCoreUITests' from project 'YCoreUI')
    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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.abi.json (in target 'YCoreUITests' from project 'YCoreUI')
    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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.swiftsourceinfo (in target 'YCoreUITests' from project 'YCoreUI')
    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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling UIView+constrainEdgesToMarginsTests.swift, UIView+constrainSizeTests.swift, UIView+constrainTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftDriverJobDiscovery normal arm64 Compiling UIColor+blendedTests.swift, UIColor+rgbComponentsTests.swift, UIColor+rgbTests.swift, UIColor+rgbValueTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
ExtractAppIntentsMetadata (in target 'YCoreUI' from project 'YCoreUI')
    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 YCoreUI --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 14.0 --bundle-identifier spi-builder-workspace.YCoreUI --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUI.appintents --target-triple arm64-apple-tvos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUI.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/YCoreUI.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/YCoreUI.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 15:08:14.382 appintentsmetadataprocessor[738:4391] Starting appintentsmetadataprocessor export
2025-04-27 15:08:14.427 appintentsmetadataprocessor[738:4391] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling String+LocalizedTests.swift, NSDirectionalEdgeInsets+horizontalTests.swift, NSDirectionalEdgeInsets+initTests.swift, UIColor+WCAGTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, FormViewControllerTests.swift, CGFloat+roundedTests.swift, CGSize+insetTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUI.o (in target 'YCoreUI' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUI.o
CpResource /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/YCoreUI_YCoreUITests.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUI_YCoreUITests.bundle (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUI_YCoreUITests.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/empty-YCoreUITests.plist (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/empty-YCoreUITests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform appletvos -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling XCTestCase+MemoryLeakTracking.swift, ColorableTests.swift, ImageAssetTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+constrainBelowTests.swift, UIView+constrainCenterTests.swift, UIView+constrainEdgesTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftDriverJobDiscovery normal arm64 Compiling UIScrollView+keyboardNotificationsTests.swift, UIView+AnimationTests.swift, UIView+constrainAnchorTests.swift, UIView+constrainAspectRatioTests.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftDriverJobDiscovery normal arm64 Compiling SystemImageTests.swift, YCoreUI+LoggingTests.swift, GeneratedAssetSymbols.swift (in target 'YCoreUITests' from project 'YCoreUI')
SwiftDriver\ Compilation YCoreUITests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YCoreUITests' from project 'YCoreUI')
    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 YCoreUITests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.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-tvos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-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/PackageFrameworks -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 -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64 -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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests-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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests_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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -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/YCoreUITests.xctest/YCoreUITests normal (in target 'YCoreUITests' from project 'YCoreUI')
    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-tvos14.0 -bundle -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/PackageFrameworks -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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -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/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.swiftmodule -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/YCoreUITests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUI.build/Objects-normal/arm64/YCoreUI.swiftmodule
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/YCoreUITests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/Extensions --platform appletvos --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os --back-deploy-swift-concurrency
Ignoring --strip-bitcode because --sign was not passed
Copying /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/appletvos/libswift_Concurrency.dylib to /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/Frameworks/libswift_Concurrency.dylib
ExtractAppIntentsMetadata (in target 'YCoreUITests' from project 'YCoreUI')
    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 YCoreUITests --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 14.0 --bundle-identifier spi-builder-workspace.YCoreUITests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest --target-triple arm64-apple-tvos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/YCoreUITests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/YCoreUITests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/YCoreUITests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YCoreUI.build/Debug-appletvos/YCoreUITests.build/Objects-normal/arm64/YCoreUITests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 15:08:15.165 appintentsmetadataprocessor[741:4422] Starting appintentsmetadataprocessor export
2025-04-27 15:08:15.167 appintentsmetadataprocessor[741:4422] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/YCoreUITests (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest/YCoreUITests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest.dSYM
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest (in target 'YCoreUITests' from project 'YCoreUI')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YCoreUITests.xctest
** BUILD SUCCEEDED **
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
  ],
  "manifest_display_name" : "YCoreUI",
  "name" : "YCoreUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "YCoreUI",
      "targets" : [
        "YCoreUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "YCoreUITests",
      "module_type" : "SwiftTarget",
      "name" : "YCoreUITests",
      "path" : "Tests/YCoreUITests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Assets/Colors.xcassets",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Assets/Images.xcassets",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Assets/Strings/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/YCoreUITests/Assets/Strings/en.lproj/Settings.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "Components/FormViewControllerTests.swift",
        "Extensions/Foundation/CGFloat+roundedTests.swift",
        "Extensions/Foundation/CGSize+insetTests.swift",
        "Extensions/Foundation/String+LocalizedTests.swift",
        "Extensions/UIKit/NSDirectionalEdgeInsets+horizontalTests.swift",
        "Extensions/UIKit/NSDirectionalEdgeInsets+initTests.swift",
        "Extensions/UIKit/UIColor+WCAGTests.swift",
        "Extensions/UIKit/UIColor+blendedTests.swift",
        "Extensions/UIKit/UIColor+rgbComponentsTests.swift",
        "Extensions/UIKit/UIColor+rgbTests.swift",
        "Extensions/UIKit/UIColor+rgbValueTests.swift",
        "Extensions/UIKit/UIEdgeInsets+directionalTests.swift",
        "Extensions/UIKit/UIEdgeInsets+horizontalTests.swift",
        "Extensions/UIKit/UIEdgeInsets+initTests.swift",
        "Extensions/UIKit/UIScreen+scaleFactorTests.swift",
        "Extensions/UIKit/UIScrollView+keyboardNotificationsTests.swift",
        "Extensions/UIKit/UIView+AnimationTests.swift",
        "Extensions/UIKit/UIView+constrainAnchorTests.swift",
        "Extensions/UIKit/UIView+constrainAspectRatioTests.swift",
        "Extensions/UIKit/UIView+constrainBelowTests.swift",
        "Extensions/UIKit/UIView+constrainCenterTests.swift",
        "Extensions/UIKit/UIView+constrainEdgesTests.swift",
        "Extensions/UIKit/UIView+constrainEdgesToMarginsTests.swift",
        "Extensions/UIKit/UIView+constrainSizeTests.swift",
        "Extensions/UIKit/UIView+constrainTests.swift",
        "Foundations/AnimationTests.swift",
        "Foundations/ElevationTests.swift",
        "Foundations/UIColor+TestHarness.swift",
        "Helpers/XCTestCase+MemoryLeakTracking.swift",
        "Protocols/ColorableTests.swift",
        "Protocols/ImageAssetTests.swift",
        "Protocols/SystemImageTests.swift",
        "YCoreUI+LoggingTests.swift"
      ],
      "target_dependencies" : [
        "YCoreUI"
      ],
      "type" : "test"
    },
    {
      "c99name" : "YCoreUI",
      "module_type" : "SwiftTarget",
      "name" : "YCoreUI",
      "path" : "Sources/YCoreUI",
      "product_memberships" : [
        "YCoreUI"
      ],
      "sources" : [
        "Components/FormViewController.swift",
        "Extensions/Foundation/CGFloat+rounded.swift",
        "Extensions/Foundation/CGSize+inset.swift",
        "Extensions/Foundation/String+Localizable.swift",
        "Extensions/UIKit/NSDirectionalEdgeInsets+horizontal.swift",
        "Extensions/UIKit/NSDirectionalEdgeInsets+init.swift",
        "Extensions/UIKit/UIColor+WCAG.swift",
        "Extensions/UIKit/UIColor+blended.swift",
        "Extensions/UIKit/UIColor+rgb.swift",
        "Extensions/UIKit/UIColor+rgbComponents.swift",
        "Extensions/UIKit/UIColor+rgbValue.swift",
        "Extensions/UIKit/UIEdgeInsets+directional.swift",
        "Extensions/UIKit/UIEdgeInsets+horizontal.swift",
        "Extensions/UIKit/UIEdgeInsets+init.swift",
        "Extensions/UIKit/UIScreen+scaleFactor.swift",
        "Extensions/UIKit/UIScrollView+keyboardNotifications.swift",
        "Extensions/UIKit/UITraitCollection+colorSpaces.swift",
        "Extensions/UIKit/UIView+Animation.swift",
        "Extensions/UIKit/UIView+constrain.swift",
        "Extensions/UIKit/UIView+constrainAnchor.swift",
        "Extensions/UIKit/UIView+constrainAspectRatio.swift",
        "Extensions/UIKit/UIView+constrainBelow.swift",
        "Extensions/UIKit/UIView+constrainCenter.swift",
        "Extensions/UIKit/UIView+constrainEdges.swift",
        "Extensions/UIKit/UIView+constrainEdgesToMargins.swift",
        "Extensions/UIKit/UIView+constrainSize.swift",
        "Foundations/Animation.swift",
        "Foundations/Elevation.swift",
        "Protocols/Anchorable.swift",
        "Protocols/Colorable.swift",
        "Protocols/ImageAsset.swift",
        "Protocols/Localizable.swift",
        "Protocols/SystemImage.swift",
        "YCoreUI+Logging.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.