The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of DesignReviewer, reference main (5092cb), with Swift 6.1 for iOS using Xcode 16.3 on 27 Apr 2025 03:20:03 UTC.

Swift 6 data race errors: 29

Build Command

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

Build Log

    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift:108:8: warning: main actor-isolated instance method 'alertView(_:valueDidChange:)' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewSuboptimalAlertViewDelegate'; this is an error in the Swift 6 language mode
  func alertView(_ alertView: DesignReviewSuboptimalAlertView, valueDidChange newValue: Any?) {
       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift:108:8: note: add 'nonisolated' to 'alertView(_:valueDidChange:)' to make this instance method not isolated to the actor
  func alertView(_ alertView: DesignReviewSuboptimalAlertView, valueDidChange newValue: Any?) {
       ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift:107:54: note: add '@preconcurrency' to the 'DesignReviewSuboptimalAlertViewDelegate' conformance to defer isolation checking to run time
extension DesignReviewSuboptimalAlertViewController: DesignReviewSuboptimalAlertViewDelegate {
                                                     ^
                                                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertView.swift:12:8: note: mark the protocol requirement 'alertView(_:valueDidChange:)' 'async' to allow actor-isolated conformances
  func alertView(_ alertView: DesignReviewSuboptimalAlertView, valueDidChange newValue: Any?)
       ^
                                                                                              async
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ DesignReviewContainerView.swift,\ DesignReviewCoordinator.swift,\ DesignReviewCoordinatorProtocol.swift,\ DesignReviewHUD.swift,\ DesignReviewImageCapturer.swift,\ DesignReviewCustomEnumAttribute.swift,\ DesignReviewCustomMutableAttribute.swift,\ DesignReviewEnumAttribute.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewContainerView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinatorProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewHUD.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewImageCapturer.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomMutableAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewEnumAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/resource_bundle_accessor.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:25:14: warning: static property 'isPresenting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var isPresenting = false
             ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:25:14: note: convert 'isPresenting' to a 'let' constant to make 'Sendable' shared state immutable
  static var isPresenting = false
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:25:14: note: add '@MainActor' to make static property 'isPresenting' part of global actor 'MainActor'
  static var isPresenting = false
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:25:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var isPresenting = false
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:56:12: warning: call to main actor-isolated class method 'animate(withDuration:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    UIView.animate(withDuration: 0.3, animations: { [weak self] in
           ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:animations:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:55:8: note: add '@MainActor' to make instance method 'dismissReviewHUD()' part of global actor 'MainActor'
  func dismissReviewHUD() {
       ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:57:21: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      self?.window?.alpha = 0
                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic)                 CGFloat           alpha;                      // animatable. default is 1.0
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:60:24: warning: call to main actor-isolated instance method 'makeKeyAndVisible()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
      self?.appWindow?.makeKeyAndVisible()
                       ^
UIKit.UIWindow.makeKeyAndVisible:2:22: note: calls to instance method 'makeKeyAndVisible()' from outside of its actor context are implicitly asynchronous
@MainActor open func makeKeyAndVisible()}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:62:21: warning: main actor-isolated property 'rootViewController' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      self?.window?.rootViewController = nil
                    ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:66:57: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0));  // default is nil
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:81:31: warning: main actor-isolated property 'windowScene' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
    if let scene = appWindow?.windowScene {
                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:29:53: note: property declared here
@property(nullable, nonatomic, weak) UIWindowScene *windowScene API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(watchos);
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:82:16: warning: call to main actor-isolated initializer 'init(windowScene:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
      window = UIWindow(windowScene: scene)
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:25:1: note: calls to initializer 'init(windowScene:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithWindowScene:(UIWindowScene *)windowScene API_AVAILABLE(ios(13.0)) API_UNAVAILABLE(watchos);
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:84:16: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
      window = UIWindow(frame: UIScreen.main.bounds)
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h: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/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:84:46: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      window = UIWindow(frame: UIScreen.main.bounds)
                                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:59:39: note: property declared here
@property(nonatomic,readonly) CGRect  bounds;                // Bounds of entire screen in points
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:84:41: warning: main actor-isolated class property 'main' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
      window = UIWindow(frame: UIScreen.main.bounds)
                                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScreen.h:57:49: note: class property declared here
@property(class, nonatomic, readonly) UIScreen *mainScreen API_DEPRECATED("Use a UIScreen instance found through context instead: i.e, view.window.windowScene.screen", ios(2.0, API_TO_BE_DEPRECATED), visionos(1.0, API_TO_BE_DEPRECATED)) API_UNAVAILABLE(watchos); // the device's internal screen
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:87:12: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    window.backgroundColor = .clear
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,copy)            UIColor          *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
                                                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:89:12: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    window.alpha = 0
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic)                 CGFloat           alpha;                      // animatable. default is 1.0
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:90:12: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    window.frame = appWindow?.bounds ?? .zero
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:185:40: note: mutation of this property is only permitted within the actor
@property(nonatomic) CGRect            frame;
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:90:31: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
    window.frame = appWindow?.bounds ?? .zero
                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.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/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:91:12: warning: main actor-isolated property 'windowLevel' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    window.windowLevel = .normal
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:37:36: note: mutation of this property is only permitted within the actor
@property(nonatomic) UIWindowLevel windowLevel;                   // default = 0.0
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:92:12: warning: main actor-isolated property 'rootViewController' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
    window.rootViewController = DesignReviewViewController(viewModel: viewModel)
           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:66:57: note: mutation of this property is only permitted within the actor
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0));  // default is nil
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:92:33: warning: call to main actor-isolated initializer 'init(viewModel:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    window.rootViewController = DesignReviewViewController(viewModel: viewModel)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewViewController.swift:41:3: note: calls to initializer 'init(viewModel:)' from outside of its actor context are implicitly asynchronous
  init(viewModel: DesignReviewViewModel) {
  ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewViewController.swift:41:3: note: main actor isolation inferred from inheritance from class 'UIViewController'
  init(viewModel: DesignReviewViewModel) {
  ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:96:12: warning: call to main actor-isolated instance method 'makeKeyAndVisible()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    window.makeKeyAndVisible()
           ^
UIKit.UIWindow.makeKeyAndVisible:2:22: note: calls to instance method 'makeKeyAndVisible()' from outside of its actor context are implicitly asynchronous
@MainActor open func makeKeyAndVisible()}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:98:12: warning: call to main actor-isolated class method 'animate(withDuration:animations:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    UIView.animate(withDuration: 0.3) {
           ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:animations:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, animations: @escaping () -> Void)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:78:16: note: add '@MainActor' to make instance method 'presentReviewHUD()' part of global actor 'MainActor'
  private func presentReviewHUD() {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:99:14: warning: main actor-isolated property 'alpha' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
      window.alpha = 1
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:304:56: note: mutation of this property is only permitted within the actor
@property(nonatomic)                 CGFloat           alpha;                      // animatable. default is 1.0
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:107:44: warning: main actor-isolated property 'rootViewController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
    guard let rootViewController = window?.rootViewController else { return }
                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIWindow.h:66:57: note: property declared here
@property(nullable, nonatomic,strong) UIViewController *rootViewController API_AVAILABLE(ios(4.0));  // default is nil
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:106:8: note: add '@MainActor' to make instance method 'presentDesignReview(for:)' part of global actor 'MainActor'
  func presentDesignReview(for reviewable: DesignReviewable) {
       ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:43:7: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
      self.presentReviewHUD()
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:43:7: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      self.presentReviewHUD()
      ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:92:33: warning: sending 'self.viewModel' risks causing data races; this is an error in the Swift 6 language mode
    window.rootViewController = DesignReviewViewController(viewModel: viewModel)
                                ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:92:33: note: sending task-isolated 'self.viewModel' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
    window.rootViewController = DesignReviewViewController(viewModel: viewModel)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:51:7: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
      self.dismissReviewHUD()
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:51:7: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
      self.dismissReviewHUD()
      ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:56:12: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
    UIView.animate(withDuration: 0.3, animations: { [weak self] in
    ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:56:12: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'animate(withDuration:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
    UIView.animate(withDuration: 0.3, animations: { [weak self] in
           ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:56:12: warning: sending value of non-Sendable type '(Bool) -> Void' risks causing data races; this is an error in the Swift 6 language mode
    UIView.animate(withDuration: 0.3, animations: { [weak self] in
    ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:56:12: note: sending task-isolated value of non-Sendable type '(Bool) -> Void' to main actor-isolated class method 'animate(withDuration:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
    UIView.animate(withDuration: 0.3, animations: { [weak self] in
           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinatorProtocol.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:55:32: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  private func toEnumAttribute<T>(
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:11:47: note: 'T' previously declared here
public struct DesignReviewCustomEnumAttribute<T>: DesignReviewCustomAttribute, Hashable where T: ReviewableDescribing, T.RawValue == Int {
                                              ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomMutableAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewEnumAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ DesignReviewer (in target 'DesignReviewer' from project 'DesignReviewer')
EmitSwiftModule normal arm64 (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:25:14: warning: static property 'isPresenting' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  static var isPresenting = false
             ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:25:14: note: convert 'isPresenting' to a 'let' constant to make 'Sendable' shared state immutable
  static var isPresenting = false
         ~~~ ^
         let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:25:14: note: add '@MainActor' to make static property 'isPresenting' part of global actor 'MainActor'
  static var isPresenting = false
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift:25:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static var isPresenting = false
             ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:55:32: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  private func toEnumAttribute<T>(
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:11:47: note: 'T' previously declared here
public struct DesignReviewCustomEnumAttribute<T>: DesignReviewCustomAttribute, Hashable where T: ReviewableDescribing, T.RawValue == Int {
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'Attribute' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLayoutConstraint.Attribute: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension NSLayoutConstraint.Attribute: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:11:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var allCases: [NSLayoutConstraint.Attribute] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:11:21: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
  public static var allCases: [NSLayoutConstraint.Attribute] = {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:11:21: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
  public static var allCases: [NSLayoutConstraint.Attribute] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:11:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var allCases: [NSLayoutConstraint.Attribute] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:67:1: warning: extension declares a conformance of imported type 'Axis' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLayoutConstraint.Axis: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:67:1: note: add '@retroactive' to silence this warning
extension NSLayoutConstraint.Axis: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:68:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var allCases: [NSLayoutConstraint.Axis] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:68:21: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
  public static var allCases: [NSLayoutConstraint.Axis] = {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:68:21: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
  public static var allCases: [NSLayoutConstraint.Axis] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:68:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var allCases: [NSLayoutConstraint.Axis] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:84:1: warning: extension declares a conformance of imported type 'Relation' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLayoutConstraint.Relation: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:84:1: note: add '@retroactive' to silence this warning
extension NSLayoutConstraint.Relation: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:85:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var allCases: [NSLayoutConstraint.Relation] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:85:21: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
  public static var allCases: [NSLayoutConstraint.Relation] = {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:85:21: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
  public static var allCases: [NSLayoutConstraint.Relation] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:85:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var allCases: [NSLayoutConstraint.Relation] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIImage+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'RenderingMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIImage.RenderingMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIImage+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension UIImage.RenderingMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'NSLineBreakMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLineBreakMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension NSLineBreakMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:11:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var allCases: [NSLineBreakMode] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:11:21: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
  public static var allCases: [NSLineBreakMode] = {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:11:21: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
  public static var allCases: [NSLineBreakMode] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:11:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var allCases: [NSLineBreakMode] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:36:1: warning: extension declares a conformance of imported type 'NSTextAlignment' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSTextAlignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:36:1: note: add '@retroactive' to silence this warning
extension NSTextAlignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:37:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var allCases: [NSTextAlignment] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:37:21: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
  public static var allCases: [NSTextAlignment] = {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:37:21: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
  public static var allCases: [NSTextAlignment] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:37:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var allCases: [NSTextAlignment] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'Alignment' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIStackView.Alignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension UIStackView.Alignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:11:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var allCases: [UIStackView.Alignment] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:11:21: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
  public static var allCases: [UIStackView.Alignment] = {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:11:21: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
  public static var allCases: [UIStackView.Alignment] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:11:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var allCases: [UIStackView.Alignment] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:39:1: warning: extension declares a conformance of imported type 'Distribution' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIStackView.Distribution: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:39:1: note: add '@retroactive' to silence this warning
extension UIStackView.Distribution: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:40:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var allCases: [UIStackView.Distribution] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:40:21: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
  public static var allCases: [UIStackView.Distribution] = {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:40:21: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
  public static var allCases: [UIStackView.Distribution] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:40:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var allCases: [UIStackView.Distribution] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'ContentMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIView.ContentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension UIView.ContentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:11:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var allCases: [UIView.ContentMode] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:11:21: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
  public static var allCases: [UIView.ContentMode] = {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:11:21: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
  public static var allCases: [UIView.ContentMode] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:11:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var allCases: [UIView.ContentMode] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:50:1: warning: extension declares a conformance of imported type 'TintAdjustmentMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIView.TintAdjustmentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:50:1: note: add '@retroactive' to silence this warning
extension UIView.TintAdjustmentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:51:21: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var allCases: [UIView.TintAdjustmentMode] = {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:51:21: note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
  public static var allCases: [UIView.TintAdjustmentMode] = {
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:51:21: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
  public static var allCases: [UIView.TintAdjustmentMode] = {
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:51:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var allCases: [UIView.TintAdjustmentMode] = {
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift:108:8: warning: main actor-isolated instance method 'alertView(_:valueDidChange:)' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewSuboptimalAlertViewDelegate'; this is an error in the Swift 6 language mode
  func alertView(_ alertView: DesignReviewSuboptimalAlertView, valueDidChange newValue: Any?) {
       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift:108:8: note: add 'nonisolated' to 'alertView(_:valueDidChange:)' to make this instance method not isolated to the actor
  func alertView(_ alertView: DesignReviewSuboptimalAlertView, valueDidChange newValue: Any?) {
       ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift:107:54: note: add '@preconcurrency' to the 'DesignReviewSuboptimalAlertViewDelegate' conformance to defer isolation checking to run time
extension DesignReviewSuboptimalAlertViewController: DesignReviewSuboptimalAlertViewDelegate {
                                                     ^
                                                     @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertView.swift:12:8: note: mark the protocol requirement 'alertView(_:valueDidChange:)' 'async' to allow actor-isolated conformances
  func alertView(_ alertView: DesignReviewSuboptimalAlertView, valueDidChange newValue: Any?)
       ^
                                                                                              async
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewViewController.swift:136:8: warning: main actor-isolated instance method 'didBegin(in:)' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewContainerViewDelegate'; this is an error in the Swift 6 language mode
  func didBegin(in container: DesignReviewContainerView) {
       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewViewController.swift:136:8: note: add 'nonisolated' to 'didBegin(in:)' to make this instance method not isolated to the actor
  func didBegin(in container: DesignReviewContainerView) {
       ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewViewController.swift:135:39: note: add '@preconcurrency' to the 'DesignReviewContainerViewDelegate' conformance to defer isolation checking to run time
extension DesignReviewViewController: DesignReviewContainerViewDelegate {
                                      ^
                                      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewContainerView.swift:12:8: note: mark the protocol requirement 'didBegin(in:)' 'async' to allow actor-isolated conformances
  func didBegin(in container: DesignReviewContainerView)
       ^
                                                         async
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewViewController.swift:140:8: warning: main actor-isolated instance method 'didEnd(in:)' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewContainerViewDelegate'; this is an error in the Swift 6 language mode
  func didEnd(in container: DesignReviewContainerView) {
       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewViewController.swift:140:8: note: add 'nonisolated' to 'didEnd(in:)' to make this instance method not isolated to the actor
  func didEnd(in container: DesignReviewContainerView) {
       ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewContainerView.swift:13:8: note: mark the protocol requirement 'didEnd(in:)' 'async' to allow actor-isolated conformances
  func didEnd(in container: DesignReviewContainerView)
       ^
                                                       async
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/NSLayoutConstraint+DesignReviewable.swift:12:15: warning: main actor-isolated instance method 'createReviewableAttributes()' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewable'; this is an error in the Swift 6 language mode
  public func createReviewableAttributes() -> [DesignReviewInspectorAttributeGroup: [DesignReviewInspectorAttribute]] {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/NSLayoutConstraint+DesignReviewable.swift:12:15: note: add 'nonisolated' to 'createReviewableAttributes()' to make this instance method not isolated to the actor
  public func createReviewableAttributes() -> [DesignReviewInspectorAttributeGroup: [DesignReviewInspectorAttribute]] {
              ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/NSLayoutConstraint+DesignReviewable.swift:11:31: note: add '@preconcurrency' to the 'DesignReviewable' conformance to defer isolation checking to run time
extension NSLayoutConstraint: DesignReviewable {
                              ^
                              @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/DesignReviewable.swift:50:8: note: mark the protocol requirement 'createReviewableAttributes()' 'async' to allow actor-isolated conformances
  func createReviewableAttributes() -> [DesignReviewInspectorAttributeGroup: [DesignReviewInspectorAttribute]]
       ^
                                    async
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIView+DesignReviewable.swift:18:14: warning: main actor-isolated property 'isOnScreen' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewable'; this is an error in the Swift 6 language mode
  public var isOnScreen: Bool {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIView+DesignReviewable.swift:11:19: note: add '@preconcurrency' to the 'DesignReviewable' conformance to defer isolation checking to run time
extension UIView: DesignReviewable {
                  ^
                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/DesignReviewable.swift:38:7: note: requirement 'isOnScreen' declared here
  var isOnScreen: Bool { get }
      ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIView+DesignReviewable.swift:12:14: warning: main actor-isolated property 'subReviewables' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewable'; this is an error in the Swift 6 language mode
  public var subReviewables: [DesignReviewable] { subviews as [DesignReviewable] }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/DesignReviewable.swift:44:7: note: requirement 'subReviewables' declared here
  var subReviewables: [DesignReviewable] { get }
      ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIView+DesignReviewable.swift:14:15: warning: main actor-isolated instance method 'convertBounds(to:)' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewable'; this is an error in the Swift 6 language mode
  public func convertBounds(to target: UIView) -> CGRect {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIView+DesignReviewable.swift:14:15: note: add 'nonisolated' to 'convertBounds(to:)' to make this instance method not isolated to the actor
  public func convertBounds(to target: UIView) -> CGRect {
              ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/DesignReviewable.swift:47:8: note: mark the protocol requirement 'convertBounds(to:)' 'async' to allow actor-isolated conformances
  func convertBounds(to target: UIView) -> CGRect
       ^
                                        async
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIView+DesignReviewable.swift:90:15: warning: main actor-isolated instance method 'createReviewableAttributes()' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewable'; this is an error in the Swift 6 language mode
  public func createReviewableAttributes()
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIView+DesignReviewable.swift:90:15: note: add 'nonisolated' to 'createReviewableAttributes()' to make this instance method not isolated to the actor
  public func createReviewableAttributes()
              ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/DesignReviewable.swift:50:8: note: mark the protocol requirement 'createReviewableAttributes()' 'async' to allow actor-isolated conformances
  func createReviewableAttributes() -> [DesignReviewInspectorAttributeGroup: [DesignReviewInspectorAttribute]]
       ^
                                    async
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:16:22: warning: static property 'coordinator' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  private static var coordinator: DesignReviewCoordinator?
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:16:22: note: convert 'coordinator' to a 'let' constant to make 'Sendable' shared state immutable
  private static var coordinator: DesignReviewCoordinator?
                 ~~~ ^
                 let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:16:22: note: add '@MainActor' to make static property 'coordinator' part of global actor 'MainActor'
  private static var coordinator: DesignReviewCoordinator?
                     ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:16:22: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  private static var coordinator: DesignReviewCoordinator?
                     ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:18:23: warning: static property 'window' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  internal static var window: UIWindow?
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:18:23: note: convert 'window' to a 'let' constant to make 'Sendable' shared state immutable
  internal static var window: UIWindow?
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:18:23: note: add '@MainActor' to make static property 'window' part of global actor 'MainActor'
  internal static var window: UIWindow?
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static var window: UIWindow?
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:20:23: warning: static property 'customAttributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  internal static var customAttributes = [String: DesignReviewCustomAttributeSet]()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:20:23: note: convert 'customAttributes' to a 'let' constant to make 'Sendable' shared state immutable
  internal static var customAttributes = [String: DesignReviewCustomAttributeSet]()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:20:23: note: add '@MainActor' to make static property 'customAttributes' part of global actor 'MainActor'
  internal static var customAttributes = [String: DesignReviewCustomAttributeSet]()
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static var customAttributes = [String: DesignReviewCustomAttributeSet]()
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:22:23: warning: static property 'onFinish' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  internal static var onFinish: (() -> Void)?
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:22:23: note: convert 'onFinish' to a 'let' constant to make 'Sendable' shared state immutable
  internal static var onFinish: (() -> Void)?
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:22:23: note: add '@MainActor' to make static property 'onFinish' part of global actor 'MainActor'
  internal static var onFinish: (() -> Void)?
                      ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  internal static var onFinish: (() -> Void)?
                      ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded Hierarchy/DesignReviewExplodedHierarchyViewController.swift:159:8: warning: main actor-isolated instance method 'containerView(_:didChangePrimaryView:)' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewExplodedHierarchyContainerViewDelegate'; this is an error in the Swift 6 language mode
  func containerView(_ container: DesignReviewExplodedHierarchyContainerView,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded Hierarchy/DesignReviewExplodedHierarchyViewController.swift:159:8: note: add 'nonisolated' to 'containerView(_:didChangePrimaryView:)' to make this instance method not isolated to the actor
  func containerView(_ container: DesignReviewExplodedHierarchyContainerView,
       ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded Hierarchy/DesignReviewExplodedHierarchyViewController.swift:158:56: note: add '@preconcurrency' to the 'DesignReviewExplodedHierarchyContainerViewDelegate' conformance to defer isolation checking to run time
extension DesignReviewExplodedHierarchyViewController: DesignReviewExplodedHierarchyContainerViewDelegate {
                                                       ^
                                                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded Hierarchy/DesignReviewExplodedHierarchyContainerView.swift:12:8: note: mark the protocol requirement 'containerView(_:didChangePrimaryView:)' 'async' to allow actor-isolated conformances
  func containerView(_ container: DesignReviewExplodedHierarchyContainerView,
       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewController.swift:214:8: warning: main actor-isolated instance method 'sectionHeaderShouldToggleExpandedState' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewCollapsibleHeaderViewDelegate'; this is an error in the Swift 6 language mode
  func sectionHeaderShouldToggleExpandedState(_ view: DesignReviewCollapsibleHeaderView) {
       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewController.swift:214:8: note: add 'nonisolated' to 'sectionHeaderShouldToggleExpandedState' to make this instance method not isolated to the actor
  func sectionHeaderShouldToggleExpandedState(_ view: DesignReviewCollapsibleHeaderView) {
       ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewController.swift:213:48: note: add '@preconcurrency' to the 'DesignReviewCollapsibleHeaderViewDelegate' conformance to defer isolation checking to run time
extension DesignReviewInspectorViewController: DesignReviewCollapsibleHeaderViewDelegate {
                                               ^
                                               @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewCollapsibleHeaderView.swift:11:10: note: mark the protocol requirement 'sectionHeaderShouldToggleExpandedState' 'async' to allow actor-isolated conformances
    func sectionHeaderShouldToggleExpandedState(_ view: DesignReviewCollapsibleHeaderView)
         ^
                                                                                           async
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewController.swift:239:8: warning: main actor-isolated instance method 'inspectorTableViewCellWasModified' cannot be used to satisfy nonisolated requirement from protocol 'DesignReviewInspectorTableViewCellDelegate'; this is an error in the Swift 6 language mode
  func inspectorTableViewCellWasModified(_ cell: DesignReviewInspectorTableViewCell) {
       ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewController.swift:239:8: note: add 'nonisolated' to 'inspectorTableViewCellWasModified' to make this instance method not isolated to the actor
  func inspectorTableViewCellWasModified(_ cell: DesignReviewInspectorTableViewCell) {
       ^
  nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewController.swift:238:48: note: add '@preconcurrency' to the 'DesignReviewInspectorTableViewCellDelegate' conformance to defer isolation checking to run time
extension DesignReviewInspectorViewController: DesignReviewInspectorTableViewCellDelegate {
                                               ^
                                               @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewInspectorTableViewCell.swift:12:8: note: mark the protocol requirement 'inspectorTableViewCellWasModified' 'async' to allow actor-isolated conformances
  func inspectorTableViewCellWasModified(_ cell: DesignReviewInspectorTableViewCell)
       ^
                                                                                     async
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/Keys.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var defaultValue: UIWindow? = nil
               ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/Keys.swift:30:16: note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
    static var defaultValue: UIWindow? = nil
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/Keys.swift:30:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static var defaultValue: UIWindow? = nil
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/Keys.swift:30:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var defaultValue: UIWindow? = nil
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperModiferView.swift:84:13: warning: var 'globalDummyNumber' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private var globalDummyNumber: CGFloat = 32
            ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperModiferView.swift:84:13: note: convert 'globalDummyNumber' to a 'let' constant to make 'Sendable' shared state immutable
private var globalDummyNumber: CGFloat = 32
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperModiferView.swift:84:13: note: add '@MainActor' to make var 'globalDummyNumber' part of global actor 'MainActor'
private var globalDummyNumber: CGFloat = 32
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperModiferView.swift:84:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var globalDummyNumber: CGFloat = 32
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleWindowManager.swift:13:14: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SpuddleWindowManager' may have shared mutable state; this is an error in the Swift 6 language mode
  static let shared = SpuddleWindowManager()
             ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleWindowManager.swift:12:7: note: class 'SpuddleWindowManager' does not conform to the 'Sendable' protocol
class SpuddleWindowManager {
      ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleWindowManager.swift:13:14: note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
  static let shared = SpuddleWindowManager()
             ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleWindowManager.swift:13:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  static let shared = SpuddleWindowManager()
             ^
  nonisolated(unsafe)
LinkAssetCatalog /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Assets/Colors.xcassets /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Assets/Media.xcassets (in target 'DesignReviewer_DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-linkAssetCatalog --thinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/assetcatalog_output/thinned --thinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/assetcatalog_dependencies_thinned --thinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/assetcatalog_generated_info.plist_thinned --unthinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/assetcatalog_output/unthinned --unthinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/assetcatalog_dependencies_unthinned --unthinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/assetcatalog_generated_info.plist_unthinned --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle --plist-output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/assetcatalog_generated_info.plist
note: Emplaced /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle/Assets.car (in target 'DesignReviewer_DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Emitting module for DesignReviewer (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriver\ Compilation\ Requirements DesignReviewer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DesignReviewer' from project 'DesignReviewer')
    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 DesignReviewer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/empty-DesignReviewer_DesignReviewer.plist (in target 'DesignReviewer_DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/empty-DesignReviewer_DesignReviewer.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/assetcatalog_generated_info.plist -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle/Info.plist
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DesignReviewer-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-Swift.h (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DesignReviewer-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftmodule (in target 'DesignReviewer' from project 'DesignReviewer')
    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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftdoc (in target 'DesignReviewer' from project 'DesignReviewer')
    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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.abi.json (in target 'DesignReviewer' from project 'DesignReviewer')
    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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftsourceinfo (in target 'DesignReviewer' from project 'DesignReviewer')
    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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ TextContainingView.swift,\ UIColor+ColorAssets.swift,\ UIEdgeInsets+Convenience.swift,\ UIFont+Presets.swift,\ UITableView+EmptyCell.swift,\ UIView+Constraints.swift,\ UIView+StringBuilding.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/TextContainingView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIColor+ColorAssets.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIEdgeInsets+Convenience.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIFont+Presets.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UITableView+EmptyCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIView+Constraints.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIView+StringBuilding.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/TextContainingView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility Extensions/TextContainingView.swift:43:27: warning: main actor-isolated static property 'sneakPeekLength' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
    guard count > UILabel.sneakPeekLength else { return self }
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility Extensions/TextContainingView.swift:18:14: note: static property declared here
  static var sneakPeekLength: Int { 10 }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility Extensions/TextContainingView.swift:45:34: warning: main actor-isolated static property 'sneakPeekLength' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
    return String(prefix(UILabel.sneakPeekLength)) + "..."
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility Extensions/TextContainingView.swift:18:14: note: static property declared here
  static var sneakPeekLength: Int { 10 }
             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIColor+ColorAssets.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIEdgeInsets+Convenience.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIFont+Presets.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UITableView+EmptyCell.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIView+Constraints.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIView+StringBuilding.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling DesignReviewImmutableAttribute.swift, DesignReviewInspectorAttribute.swift, DesignReviewMutableAttribute.swift, DesignReviewScreenshotAttribute.swift, DesignReviewSummaryAttribute.swift, NSLayoutConstraint+ReviewableDescribing.swift, UIImage+ReviewableDescribing.swift, UILabel+ReviewableDescribing.swift, UIStackView+ReviewableDescribing.swift (in target 'DesignReviewer' from project 'DesignReviewer')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle (in target 'DesignReviewer_DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle (in target 'DesignReviewer_DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle
SwiftDriverJobDiscovery normal arm64 Compiling DesignReviewSuboptimalAlertViewModelProtocol.swift, DesignReviewViewController.swift, DesignReviewViewModel.swift, DesignReviewable.swift, NSLayoutConstraint+DesignReviewable.swift, NSString+DesignReviewable.swift, UIColor+DesignReviewable.swift, UIImage+DesignReviewable.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, DesignReviewContainerView.swift, DesignReviewCoordinator.swift, DesignReviewCoordinatorProtocol.swift, DesignReviewHUD.swift, DesignReviewImageCapturer.swift, DesignReviewCustomEnumAttribute.swift, DesignReviewCustomMutableAttribute.swift, DesignReviewEnumAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+ReviewableDescribing.swift, DesignReviewSelectableView.swift, DesignReviewSpecContainerView.swift, DesignReviewSpecView.swift, DesignReviewHairlineView.swift, DesignReviewSuboptimalAlertCoordinator.swift, DesignReviewSuboptimalAlertView.swift, DesignReviewSuboptimalAlertViewController.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling DesignReviewInspectorViewController.swift, DesignReviewInspectorViewModel.swift, DesignReviewUIColorAccessoryView.swift, DesignReviewUIImageAccessoryView.swift, DesignReviewCollapsibleHeaderView.swift, DesignReviewInspectorScreenshotTableViewCell.swift, DesignReviewInspectorSummaryTableViewCell.swift, DesignReviewInspectorTableViewCell.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling SpuddlePresentedViewModel.swift, SpuddleStepperCoordinator.swift, SpuddleStepperModiferView.swift, SpuddleStepperModifierViewModel.swift, SpuddleTextCoordinator.swift, SpuddleTextModifierView.swift, SpuddleTextModifierViewModel.swift, SpuddleViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling Keys.swift, Spuddle.swift, SpuddleContainerView.swift, SpuddleFakeWindowView.swift, SpuddleOptionsCoordinator.swift, SpuddleOptionsModifierView.swift, SpuddleOptionsModifierViewModel.swift, SpuddlePlacement.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling SpuddleWindowManager.swift, Animation+Extensions.swift, UIResponder+Extensions.swift, UIView+Extensions.swift, UIViewController+Extensions.swift, View+Extensions.swift, CGFloat+Convenience.swift, NSLayoutConstraint+StringBuilding.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+DesignReviewable.swift, DesignReviewer.swift, DesignReviewExplodedHierarchyContainerView.swift, DesignReviewExplodedHierarchyView.swift, DesignReviewExplodedHierarchyViewController.swift, DesignReviewExplodedHierarchyViewModel.swift, DesignReviewSolidButton.swift, DesignReviewInspectorCoordinator.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling TextContainingView.swift, UIColor+ColorAssets.swift, UIEdgeInsets+Convenience.swift, UIFont+Presets.swift, UITableView+EmptyCell.swift, UIView+Constraints.swift, UIView+StringBuilding.swift, GeneratedAssetSymbols.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriver\ Compilation DesignReviewer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DesignReviewer' from project 'DesignReviewer')
    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 DesignReviewer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o normal (in target 'DesignReviewer' from project 'DesignReviewer')
    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-ios14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o
ExtractAppIntentsMetadata (in target 'DesignReviewer' from project 'DesignReviewer')
    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 DesignReviewer --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.DesignReviewer --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.appintents --target-triple arm64-apple-ios14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DesignReviewer.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DesignReviewer.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 20:20:02.639 appintentsmetadataprocessor[731:4275] Starting appintentsmetadataprocessor export
2025-04-26 20:20:02.679 appintentsmetadataprocessor[731:4275] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "DesignReviewer",
  "name" : "DesignReviewer",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "DesignReviewer",
      "targets" : [
        "DesignReviewer"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "DesignReviewerTests",
      "module_type" : "SwiftTarget",
      "name" : "DesignReviewerTests",
      "path" : "Tests/DesignReviewerTests",
      "sources" : [
        "DesignReviewerTests.swift"
      ],
      "target_dependencies" : [
        "DesignReviewer"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DesignReviewer",
      "module_type" : "SwiftTarget",
      "name" : "DesignReviewer",
      "path" : "Sources/DesignReviewer",
      "product_memberships" : [
        "DesignReviewer"
      ],
      "sources" : [
        "DesignReviewContainerView.swift",
        "DesignReviewCoordinator.swift",
        "DesignReviewCoordinatorProtocol.swift",
        "DesignReviewHUD.swift",
        "DesignReviewImageCapturer.swift",
        "DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift",
        "DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomMutableAttribute.swift",
        "DesignReviewInspectorAttribute/DesignReviewEnumAttribute.swift",
        "DesignReviewInspectorAttribute/DesignReviewImmutableAttribute.swift",
        "DesignReviewInspectorAttribute/DesignReviewInspectorAttribute.swift",
        "DesignReviewInspectorAttribute/DesignReviewMutableAttribute.swift",
        "DesignReviewInspectorAttribute/DesignReviewScreenshotAttribute.swift",
        "DesignReviewInspectorAttribute/DesignReviewSummaryAttribute.swift",
        "DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift",
        "DesignReviewInspectorAttribute/ReviewableDescribings/UIImage+ReviewableDescribing.swift",
        "DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift",
        "DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift",
        "DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift",
        "DesignReviewSelectableView.swift",
        "DesignReviewSpecContainerView.swift",
        "DesignReviewSpecView.swift",
        "DesignReviewSuboptimalAlert/DesignReviewHairlineView.swift",
        "DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertCoordinator.swift",
        "DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertView.swift",
        "DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift",
        "DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewModelProtocol.swift",
        "DesignReviewViewController.swift",
        "DesignReviewViewModel.swift",
        "DesignReviewables/DesignReviewable.swift",
        "DesignReviewables/NSLayoutConstraint+DesignReviewable.swift",
        "DesignReviewables/NSString+DesignReviewable.swift",
        "DesignReviewables/UIColor+DesignReviewable.swift",
        "DesignReviewables/UIImage+DesignReviewable.swift",
        "DesignReviewables/UIView+DesignReviewable.swift",
        "DesignReviewer.swift",
        "Exploded Hierarchy/DesignReviewExplodedHierarchyContainerView.swift",
        "Exploded Hierarchy/DesignReviewExplodedHierarchyView.swift",
        "Exploded Hierarchy/DesignReviewExplodedHierarchyViewController.swift",
        "Exploded Hierarchy/DesignReviewExplodedHierarchyViewModel.swift",
        "Exploded Hierarchy/DesignReviewSolidButton.swift",
        "Inspector/DesignReviewInspectorCoordinator.swift",
        "Inspector/DesignReviewInspectorViewController.swift",
        "Inspector/DesignReviewInspectorViewModel.swift",
        "Inspector/TableViewCells/Custom Accessories/DesignReviewUIColorAccessoryView.swift",
        "Inspector/TableViewCells/Custom Accessories/DesignReviewUIImageAccessoryView.swift",
        "Inspector/TableViewCells/DesignReviewCollapsibleHeaderView.swift",
        "Inspector/TableViewCells/DesignReviewInspectorScreenshotTableViewCell.swift",
        "Inspector/TableViewCells/DesignReviewInspectorSummaryTableViewCell.swift",
        "Inspector/TableViewCells/DesignReviewInspectorTableViewCell.swift",
        "Spuddle/Keys.swift",
        "Spuddle/Spuddle.swift",
        "Spuddle/SpuddleContainerView.swift",
        "Spuddle/SpuddleFakeWindowView.swift",
        "Spuddle/SpuddleOptionsModifier/SpuddleOptionsCoordinator.swift",
        "Spuddle/SpuddleOptionsModifier/SpuddleOptionsModifierView.swift",
        "Spuddle/SpuddleOptionsModifier/SpuddleOptionsModifierViewModel.swift",
        "Spuddle/SpuddlePlacement.swift",
        "Spuddle/SpuddlePresentedViewModel.swift",
        "Spuddle/SpuddleStepperModifier/SpuddleStepperCoordinator.swift",
        "Spuddle/SpuddleStepperModifier/SpuddleStepperModiferView.swift",
        "Spuddle/SpuddleStepperModifier/SpuddleStepperModifierViewModel.swift",
        "Spuddle/SpuddleTextModifier/SpuddleTextCoordinator.swift",
        "Spuddle/SpuddleTextModifier/SpuddleTextModifierView.swift",
        "Spuddle/SpuddleTextModifier/SpuddleTextModifierViewModel.swift",
        "Spuddle/SpuddleViewModel.swift",
        "Spuddle/SpuddleWindowManager.swift",
        "Spuddle/SpuddledAnimations/Animation+Extensions.swift",
        "Spuddle/UIResponder+Extensions.swift",
        "Spuddle/UIView+Extensions.swift",
        "Spuddle/UIViewController+Extensions.swift",
        "Spuddle/View+Extensions.swift",
        "Utility Extensions/CGFloat+Convenience.swift",
        "Utility Extensions/NSLayoutConstraint+StringBuilding.swift",
        "Utility Extensions/TextContainingView.swift",
        "Utility Extensions/UIColor+ColorAssets.swift",
        "Utility Extensions/UIEdgeInsets+Convenience.swift",
        "Utility Extensions/UIFont+Presets.swift",
        "Utility Extensions/UITableView+EmptyCell.swift",
        "Utility Extensions/UIView+Constraints.swift",
        "Utility Extensions/UIView+StringBuilding.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/alexslee/designreviewer/main
Repository:               alexslee/DesignReviewer
Swift version used:       6.1
Target:                   DesignReviewer
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData docbuild "OTHER_DOCC_FLAGS=--emit-digest --source-service github --source-service-base-url https://github.com/alexslee/DesignReviewer/blob/main --checkout-path /Users/admin/builder/spi-builder-workspace" -scheme DesignReviewer -destination generic/platform=iOS
Build settings from command line:
    OTHER_DOCC_FLAGS = --emit-digest --source-service github --source-service-base-url https://github.com/alexslee/DesignReviewer/blob/main --checkout-path /Users/admin/builder/spi-builder-workspace
Resolve Package Graph
Fetching from https://github.com/swiftlang/swift-docc-plugin (cached)
Fetching from https://github.com/swiftlang/swift-docc-symbolkit (cached)
Creating working copy of package ‘swift-docc-plugin’
Checking out 1.4.3 of package ‘swift-docc-plugin’
Creating working copy of package ‘swift-docc-symbolkit’
Checking out 1.0.0 of package ‘swift-docc-symbolkit’
Resolve Package Graph
Resolved source packages:
  DesignReviewer: /Users/admin/builder/spi-builder-workspace
  SymbolKit: https://github.com/swiftlang/swift-docc-symbolkit @ 1.0.0
  SwiftDocCPlugin: https://github.com/swiftlang/swift-docc-plugin @ 1.4.3
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (3 targets)
    Target 'DesignReviewer' in project 'DesignReviewer'
        ➜ Explicit dependency on target 'DesignReviewer' in project 'DesignReviewer'
        ➜ Explicit dependency on target 'DesignReviewer_DesignReviewer' in project 'DesignReviewer'
    Target 'DesignReviewer' in project 'DesignReviewer'
        ➜ Explicit dependency on target 'DesignReviewer_DesignReviewer' in project 'DesignReviewer'
    Target 'DesignReviewer_DesignReviewer' in project 'DesignReviewer' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool --version --output-format xml1
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ReadFileContents /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/share/docc/features.json
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: 5cc7cf5d4fbaadae5355674105076184
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/5cc7cf5d4fbaadae5355674105076184.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/symbol-graph/swift/arm64-apple-ios (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/symbol-graph/swift/arm64-apple-ios
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/empty-DesignReviewer_DesignReviewer.plist (in target 'DesignReviewer_DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/empty-DesignReviewer_DesignReviewer.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform iphoneos -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer_DesignReviewer.build/assetcatalog_generated_info.plist -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer_DesignReviewer.bundle/Info.plist
SwiftDriver DesignReviewer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DesignReviewer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftmodule -emit-symbol-graph -emit-symbol-graph-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/symbol-graph/swift/arm64-apple-ios -emit-extension-block-symbols -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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ DesignReviewContainerView.swift,\ DesignReviewCoordinator.swift,\ DesignReviewCoordinatorProtocol.swift,\ DesignReviewHUD.swift,\ DesignReviewImageCapturer.swift,\ DesignReviewCustomEnumAttribute.swift,\ DesignReviewCustomMutableAttribute.swift,\ DesignReviewEnumAttribute.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewContainerView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinator.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewCoordinatorProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewHUD.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewImageCapturer.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomMutableAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewEnumAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/resource_bundle_accessor.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:55:32: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  private func toEnumAttribute<T>(
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:11:47: note: 'T' previously declared here
public struct DesignReviewCustomEnumAttribute<T>: DesignReviewCustomAttribute, Hashable where T: ReviewableDescribing, T.RawValue == Int {
                                              ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomMutableAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewEnumAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ DesignReviewInspectorViewController.swift,\ DesignReviewInspectorViewModel.swift,\ DesignReviewUIColorAccessoryView.swift,\ DesignReviewUIImageAccessoryView.swift,\ DesignReviewCollapsibleHeaderView.swift,\ DesignReviewInspectorScreenshotTableViewCell.swift,\ DesignReviewInspectorSummaryTableViewCell.swift,\ DesignReviewInspectorTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/Custom\ Accessories/DesignReviewUIColorAccessoryView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/Custom\ Accessories/DesignReviewUIImageAccessoryView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewCollapsibleHeaderView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewInspectorScreenshotTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewInspectorSummaryTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewInspectorTableViewCell.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewController.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/Custom\ Accessories/DesignReviewUIColorAccessoryView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/Custom\ Accessories/DesignReviewUIImageAccessoryView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewCollapsibleHeaderView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewInspectorScreenshotTableViewCell.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewInspectorSummaryTableViewCell.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/TableViewCells/DesignReviewInspectorTableViewCell.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UIView+DesignReviewable.swift,\ DesignReviewer.swift,\ DesignReviewExplodedHierarchyContainerView.swift,\ DesignReviewExplodedHierarchyView.swift,\ DesignReviewExplodedHierarchyViewController.swift,\ DesignReviewExplodedHierarchyViewModel.swift,\ DesignReviewSolidButton.swift,\ DesignReviewInspectorCoordinator.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIView+DesignReviewable.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewer.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewExplodedHierarchyContainerView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewExplodedHierarchyView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewExplodedHierarchyViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewExplodedHierarchyViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewSolidButton.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorCoordinator.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIView+DesignReviewable.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewExplodedHierarchyContainerView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewExplodedHierarchyView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewExplodedHierarchyViewController.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewExplodedHierarchyViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Exploded\ Hierarchy/DesignReviewSolidButton.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Inspector/DesignReviewInspectorCoordinator.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UIView+ReviewableDescribing.swift,\ DesignReviewSelectableView.swift,\ DesignReviewSpecContainerView.swift,\ DesignReviewSpecView.swift,\ DesignReviewHairlineView.swift,\ DesignReviewSuboptimalAlertCoordinator.swift,\ DesignReviewSuboptimalAlertView.swift,\ DesignReviewSuboptimalAlertViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSelectableView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSpecContainerView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSpecView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewHairlineView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertCoordinator.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'ContentMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIView.ContentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension UIView.ContentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:50:1: warning: extension declares a conformance of imported type 'TintAdjustmentMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIView.TintAdjustmentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:50:1: note: add '@retroactive' to silence this warning
extension UIView.TintAdjustmentMode: ReviewableDescribing {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSelectableView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewHairlineView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertCoordinator.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewController.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Keys.swift,\ Spuddle.swift,\ SpuddleContainerView.swift,\ SpuddleFakeWindowView.swift,\ SpuddleOptionsCoordinator.swift,\ SpuddleOptionsModifierView.swift,\ SpuddleOptionsModifierViewModel.swift,\ SpuddlePlacement.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/Spuddle.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleContainerView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleFakeWindowView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleOptionsModifier/SpuddleOptionsCoordinator.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleOptionsModifier/SpuddleOptionsModifierView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleOptionsModifier/SpuddleOptionsModifierViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddlePlacement.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/Keys.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleContainerView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleFakeWindowView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleOptionsModifier/SpuddleOptionsCoordinator.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleOptionsModifier/SpuddleOptionsModifierView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleOptionsModifier/SpuddleOptionsModifierViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddlePlacement.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SpuddlePresentedViewModel.swift,\ SpuddleStepperCoordinator.swift,\ SpuddleStepperModiferView.swift,\ SpuddleStepperModifierViewModel.swift,\ SpuddleTextCoordinator.swift,\ SpuddleTextModifierView.swift,\ SpuddleTextModifierViewModel.swift,\ SpuddleViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddlePresentedViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperCoordinator.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperModiferView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperModifierViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleTextModifier/SpuddleTextCoordinator.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleTextModifier/SpuddleTextModifierView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleTextModifier/SpuddleTextModifierViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddlePresentedViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperCoordinator.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperModiferView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleStepperModifier/SpuddleStepperModifierViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleTextModifier/SpuddleTextCoordinator.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleTextModifier/SpuddleTextModifierView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleTextModifier/SpuddleTextModifierViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SpuddleWindowManager.swift,\ Animation+Extensions.swift,\ UIResponder+Extensions.swift,\ UIView+Extensions.swift,\ UIViewController+Extensions.swift,\ View+Extensions.swift,\ CGFloat+Convenience.swift,\ NSLayoutConstraint+StringBuilding.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleWindowManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddledAnimations/Animation+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/UIResponder+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/UIView+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/UIViewController+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/View+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/CGFloat+Convenience.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/NSLayoutConstraint+StringBuilding.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddleWindowManager.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/SpuddledAnimations/Animation+Extensions.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/UIResponder+Extensions.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/UIView+Extensions.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/UIViewController+Extensions.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Spuddle/View+Extensions.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/CGFloat+Convenience.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/NSLayoutConstraint+StringBuilding.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ DesignReviewer (in target 'DesignReviewer' from project 'DesignReviewer')
EmitSwiftModule normal arm64 (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:55:32: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
  private func toEnumAttribute<T>(
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:11:47: note: 'T' previously declared here
public struct DesignReviewCustomEnumAttribute<T>: DesignReviewCustomAttribute, Hashable where T: ReviewableDescribing, T.RawValue == Int {
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'Attribute' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLayoutConstraint.Attribute: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension NSLayoutConstraint.Attribute: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:67:1: warning: extension declares a conformance of imported type 'Axis' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLayoutConstraint.Axis: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:67:1: note: add '@retroactive' to silence this warning
extension NSLayoutConstraint.Axis: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:84:1: warning: extension declares a conformance of imported type 'Relation' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLayoutConstraint.Relation: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:84:1: note: add '@retroactive' to silence this warning
extension NSLayoutConstraint.Relation: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIImage+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'RenderingMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIImage.RenderingMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIImage+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension UIImage.RenderingMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'NSLineBreakMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLineBreakMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension NSLineBreakMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:36:1: warning: extension declares a conformance of imported type 'NSTextAlignment' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSTextAlignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:36:1: note: add '@retroactive' to silence this warning
extension NSTextAlignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'Alignment' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIStackView.Alignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension UIStackView.Alignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:39:1: warning: extension declares a conformance of imported type 'Distribution' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIStackView.Distribution: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:39:1: note: add '@retroactive' to silence this warning
extension UIStackView.Distribution: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'ContentMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIView.ContentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension UIView.ContentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:50:1: warning: extension declares a conformance of imported type 'TintAdjustmentMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIView.TintAdjustmentMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIView+ReviewableDescribing.swift:50:1: note: add '@retroactive' to silence this warning
extension UIView.TintAdjustmentMode: ReviewableDescribing {
^
SwiftCompile normal arm64 Compiling\ TextContainingView.swift,\ UIColor+ColorAssets.swift,\ UIEdgeInsets+Convenience.swift,\ UIFont+Presets.swift,\ UITableView+EmptyCell.swift,\ UIView+Constraints.swift,\ UIView+StringBuilding.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/TextContainingView.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIColor+ColorAssets.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIEdgeInsets+Convenience.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIFont+Presets.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UITableView+EmptyCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIView+Constraints.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIView+StringBuilding.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/TextContainingView.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIColor+ColorAssets.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIEdgeInsets+Convenience.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIFont+Presets.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UITableView+EmptyCell.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIView+Constraints.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Utility\ Extensions/UIView+StringBuilding.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ DesignReviewSuboptimalAlertViewModelProtocol.swift,\ DesignReviewViewController.swift,\ DesignReviewViewModel.swift,\ DesignReviewable.swift,\ NSLayoutConstraint+DesignReviewable.swift,\ NSString+DesignReviewable.swift,\ UIColor+DesignReviewable.swift,\ UIImage+DesignReviewable.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewModelProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/DesignReviewable.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/NSLayoutConstraint+DesignReviewable.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/NSString+DesignReviewable.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIColor+DesignReviewable.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIImage+DesignReviewable.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewSuboptimalAlert/DesignReviewSuboptimalAlertViewModelProtocol.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/DesignReviewable.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/NSLayoutConstraint+DesignReviewable.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/NSString+DesignReviewable.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIColor+DesignReviewable.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewables/UIImage+DesignReviewable.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ DesignReviewImmutableAttribute.swift,\ DesignReviewInspectorAttribute.swift,\ DesignReviewMutableAttribute.swift,\ DesignReviewScreenshotAttribute.swift,\ DesignReviewSummaryAttribute.swift,\ NSLayoutConstraint+ReviewableDescribing.swift,\ UIImage+ReviewableDescribing.swift,\ UILabel+ReviewableDescribing.swift,\ UIStackView+ReviewableDescribing.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewImmutableAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewInspectorAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewMutableAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewScreenshotAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewSummaryAttribute.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIImage+ReviewableDescribing.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewImmutableAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewMutableAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewScreenshotAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/DesignReviewSummaryAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'Attribute' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLayoutConstraint.Attribute: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension NSLayoutConstraint.Attribute: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:67:1: warning: extension declares a conformance of imported type 'Axis' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLayoutConstraint.Axis: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:67:1: note: add '@retroactive' to silence this warning
extension NSLayoutConstraint.Axis: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:84:1: warning: extension declares a conformance of imported type 'Relation' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLayoutConstraint.Relation: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/NSLayoutConstraint+ReviewableDescribing.swift:84:1: note: add '@retroactive' to silence this warning
extension NSLayoutConstraint.Relation: ReviewableDescribing {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIImage+ReviewableDescribing.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIImage+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'RenderingMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIImage.RenderingMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIImage+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension UIImage.RenderingMode: ReviewableDescribing {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'NSLineBreakMode' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSLineBreakMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension NSLineBreakMode: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:36:1: warning: extension declares a conformance of imported type 'NSTextAlignment' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension NSTextAlignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UILabel+ReviewableDescribing.swift:36:1: note: add '@retroactive' to silence this warning
extension NSTextAlignment: ReviewableDescribing {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:10:1: warning: extension declares a conformance of imported type 'Alignment' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIStackView.Alignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:10:1: note: add '@retroactive' to silence this warning
extension UIStackView.Alignment: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:39:1: warning: extension declares a conformance of imported type 'Distribution' to imported protocol 'CaseIterable'; this will not behave correctly if the owners of 'UIKit' introduce this conformance in the future
extension UIStackView.Distribution: ReviewableDescribing {
^
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/ReviewableDescribings/UIStackView+ReviewableDescribing.swift:39:1: note: add '@retroactive' to silence this warning
extension UIStackView.Distribution: ReviewableDescribing {
^
SwiftDriverJobDiscovery normal arm64 Compiling SpuddleWindowManager.swift, Animation+Extensions.swift, UIResponder+Extensions.swift, UIView+Extensions.swift, UIViewController+Extensions.swift, View+Extensions.swift, CGFloat+Convenience.swift, NSLayoutConstraint+StringBuilding.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling TextContainingView.swift, UIColor+ColorAssets.swift, UIEdgeInsets+Convenience.swift, UIFont+Presets.swift, UITableView+EmptyCell.swift, UIView+Constraints.swift, UIView+StringBuilding.swift, GeneratedAssetSymbols.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling DesignReviewSuboptimalAlertViewModelProtocol.swift, DesignReviewViewController.swift, DesignReviewViewModel.swift, DesignReviewable.swift, NSLayoutConstraint+DesignReviewable.swift, NSString+DesignReviewable.swift, UIColor+DesignReviewable.swift, UIImage+DesignReviewable.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling SpuddlePresentedViewModel.swift, SpuddleStepperCoordinator.swift, SpuddleStepperModiferView.swift, SpuddleStepperModifierViewModel.swift, SpuddleTextCoordinator.swift, SpuddleTextModifierView.swift, SpuddleTextModifierViewModel.swift, SpuddleViewModel.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, DesignReviewContainerView.swift, DesignReviewCoordinator.swift, DesignReviewCoordinatorProtocol.swift, DesignReviewHUD.swift, DesignReviewImageCapturer.swift, DesignReviewCustomEnumAttribute.swift, DesignReviewCustomMutableAttribute.swift, DesignReviewEnumAttribute.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+ReviewableDescribing.swift, DesignReviewSelectableView.swift, DesignReviewSpecContainerView.swift, DesignReviewSpecView.swift, DesignReviewHairlineView.swift, DesignReviewSuboptimalAlertCoordinator.swift, DesignReviewSuboptimalAlertView.swift, DesignReviewSuboptimalAlertViewController.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling DesignReviewImmutableAttribute.swift, DesignReviewInspectorAttribute.swift, DesignReviewMutableAttribute.swift, DesignReviewScreenshotAttribute.swift, DesignReviewSummaryAttribute.swift, NSLayoutConstraint+ReviewableDescribing.swift, UIImage+ReviewableDescribing.swift, UILabel+ReviewableDescribing.swift, UIStackView+ReviewableDescribing.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Emitting module for DesignReviewer (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriver\ Compilation\ Requirements DesignReviewer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DesignReviewer' from project 'DesignReviewer')
    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 DesignReviewer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftmodule -emit-symbol-graph -emit-symbol-graph-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/symbol-graph/swift/arm64-apple-ios -emit-extension-block-symbols -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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
CompileDocumentation /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Documentation.docc (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/docc convert --emit-lmdb-index --fallback-display-name DesignReviewer --fallback-bundle-identifier spi-builder-workspace.DesignReviewer --output-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.doccarchive --ide-console-output --diagnostics-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DesignReviewer-diagnostics.json --emit-digest --source-service github --source-service-base-url https://github.com/alexslee/DesignReviewer/blob/main --checkout-path /Users/admin/builder/spi-builder-workspace /Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/Documentation.docc --additional-symbol-graph-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/symbol-graph
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:36:41: warning: Parameter 'shouldModifyViaAlert' is missing documentation (in target 'DesignReviewer' from project 'DesignReviewer')
    note: Document 'shouldModifyViaAlert' parameter
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:36:41: warning: Parameter 'shouldModifyViaAlert' is missing documentation. Document 'shouldModifyViaAlert' parameter.
/Users/admin/builder/spi-builder-workspace/Sources/DesignReviewer/DesignReviewInspectorAttribute/CustomAttributes/DesignReviewCustomEnumAttribute.swift:34:6-34:6: fixit: - shouldModifyViaAlert: <#parameter description#>
///
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftmodule (in target 'DesignReviewer' from project 'DesignReviewer')
    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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.abi.json (in target 'DesignReviewer' from project 'DesignReviewer')
    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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.swiftmodule/arm64-apple-ios.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling Keys.swift, Spuddle.swift, SpuddleContainerView.swift, SpuddleFakeWindowView.swift, SpuddleOptionsCoordinator.swift, SpuddleOptionsModifierView.swift, SpuddleOptionsModifierViewModel.swift, SpuddlePlacement.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling DesignReviewInspectorViewController.swift, DesignReviewInspectorViewModel.swift, DesignReviewUIColorAccessoryView.swift, DesignReviewUIImageAccessoryView.swift, DesignReviewCollapsibleHeaderView.swift, DesignReviewInspectorScreenshotTableViewCell.swift, DesignReviewInspectorSummaryTableViewCell.swift, DesignReviewInspectorTableViewCell.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+DesignReviewable.swift, DesignReviewer.swift, DesignReviewExplodedHierarchyContainerView.swift, DesignReviewExplodedHierarchyView.swift, DesignReviewExplodedHierarchyViewController.swift, DesignReviewExplodedHierarchyViewModel.swift, DesignReviewSolidButton.swift, DesignReviewInspectorCoordinator.swift (in target 'DesignReviewer' from project 'DesignReviewer')
SwiftDriver\ Compilation DesignReviewer normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DesignReviewer' from project 'DesignReviewer')
    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 DesignReviewer -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftmodule -emit-symbol-graph -emit-symbol-graph-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/symbol-graph/swift/arm64-apple-ios -emit-extension-block-symbols -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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.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/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o normal (in target 'DesignReviewer' from project 'DesignReviewer')
    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-ios14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o
ExtractAppIntentsMetadata (in target 'DesignReviewer' from project 'DesignReviewer')
    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 DesignReviewer --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.DesignReviewer --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.appintents --target-triple arm64-apple-ios14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DesignReviewer.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/DesignReviewer.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DesignReviewer.build/Debug-iphoneos/DesignReviewer.build/Objects-normal/arm64/DesignReviewer.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 20:20:27.804 appintentsmetadataprocessor[955:5526] Starting appintentsmetadataprocessor export
2025-04-26 20:20:27.840 appintentsmetadataprocessor[955:5526] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o (in target 'DesignReviewer' from project 'DesignReviewer')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.o
** BUILD DOCUMENTATION SUCCEEDED **
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DesignReviewer.doccarchive
     379
4	/Users/admin/builder/spi-builder-workspace/.docs/alexslee/designreviewer/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/alexslee/designreviewer/main
File count: 379
Doc size:   4.0MB
Preparing doc bundle ...
Uploading prod-alexslee-designreviewer-main-45850e36.zip to s3://spi-docs-inbox/prod-alexslee-designreviewer-main-45850e36.zip
Copying... [17%]
Copying... [26%]
Copying... [35%]
Copying... [44%]
Copying... [52%]
Copying... [61%]
Copying... [79%]
Copying... [87%]
Copying... [96%]
Copying... [100%]
Done.