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 Instantiate, reference master (5652b7), with Swift 6.0 for macOS (SPM) on 1 Nov 2024 11:13:36 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tarunon/Instantiate.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tarunon/Instantiate
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 5652b7d fix: spm package resolve problem
Cloned https://github.com/tarunon/Instantiate.git
Revision (git rev-parse @):
5652b7deb45e4826dab31fa67336c1f9649e42c2
SUCCESS checkout https://github.com/tarunon/Instantiate.git at master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "instantiate",
      "name": "Instantiate",
      "url": "https://github.com/tarunon/Instantiate.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Instantiate",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/tarunon/Instantiate.git
[1/780] Fetching instantiate
Fetched https://github.com/tarunon/Instantiate.git from cache (0.85s)
Creating working copy for https://github.com/tarunon/Instantiate.git
Working copy of https://github.com/tarunon/Instantiate.git resolved at master (5652b7d)
warning: '.resolve-product-dependencies': dependency 'instantiate' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/tarunon/Instantiate.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--7754E27361AE5C74.txt
[4/21] Compiling Instantiate Nib.swift
[5/21] Compiling Instantiate Reusable.swift
[6/21] Compiling Instantiate Storyboard.swift
[7/21] Compiling Instantiate ViewLoadBeforeInject.swift
[8/21] Compiling Instantiate Nib+UIView.swift
[9/21] Compiling Instantiate Nib+UIViewController.swift
[10/22] Compiling Instantiate Deprecated.swift
[11/22] Compiling Instantiate Identifier.swift
[12/22] Emitting module Instantiate
[13/22] Compiling Instantiate Injectable.swift
[14/22] Compiling Instantiate Instantiatable.swift
[15/22] Compiling Instantiate Reusable+UICollectionView.swift
[16/22] Compiling Instantiate Reusable+UITableView.swift
[17/22] Compiling Instantiate Nib+NSViewController.swift
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSViewController.swift:17:20: warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 |             let nibName = (Self.self as NibType.Type).nibName
16 |             let nibBundle = (Self.self as NibType.Type).nibBundle
17 |             self = Self(nibName: nibName, bundle: nibBundle)
   |                    `- warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 |             if self is ViewLoadBeforeInject {
19 |                 _ = self.view
AppKit.NSViewController:3:23: note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
 1 | @available(macOS 10.5, *)
 2 | @MainActor open class NSViewController : NSResponder, NSEditor, NSSeguePerforming, NSUserInterfaceItemIdentification {
 3 |     @MainActor public init(nibName nibNameOrNil: NSNib.Name?, bundle nibBundleOrNil: Bundle?)
   |                       `- note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
 4 |     public init?(coder: NSCoder)
 5 |     open var nibName: NSNib.Name? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSViewController.swift:19:26: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
17 |             self = Self(nibName: nibName, bundle: nibBundle)
18 |             if self is ViewLoadBeforeInject {
19 |                 _ = self.view
   |                          `- warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
20 |             }
21 |             self.inject(dependency)
AppKit.NSViewController:9:24: note: property declared here
 7 |     open var representedObject: Any? { get set }
 8 |     open var title: String? { get set }
 9 |     @IBOutlet open var view: NSView { get set }
   |                        `- note: property declared here
10 |     @available(macOS 14.0, *)
11 |     open var viewIfLoaded: NSView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Reusable+NSCollectionView.swift:14:39: warning: call to main actor-isolated instance method 'makeItem(withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
11 |
12 |     public extension Reusable where Self: NSCollectionViewItem {
13 |         static func dequeue(from collectionView: NSCollectionView, for indexPath: IndexPath, with dependency: Dependency) -> Self {
   |                     `- note: add '@MainActor' to make static method 'dequeue(from:for:with:)' part of global actor 'MainActor'
14 |             let cell = collectionView.makeItem(withIdentifier: Self.reusableIdentifier, for: indexPath) as! Self
   |                                       `- warning: call to main actor-isolated instance method 'makeItem(withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 |             cell.inject(dependency)
16 |             return cell
AppKit.NSCollectionView:90:26: note: calls to instance method 'makeItem(withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
 88 |     open func registerNib(_ nib: NSNib?, forSupplementaryViewOfKind kind: NSCollectionView.SupplementaryElementKind, withIdentifier identifier: NSUserInterfaceItemIdentifier)
 89 |     @available(macOS 10.11, *)
 90 |     @MainActor open func makeItem(withIdentifier identifier: NSUserInterfaceItemIdentifier, for indexPath: IndexPath) -> NSCollectionViewItem
    |                          `- note: calls to instance method 'makeItem(withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
 91 |     @available(macOS 10.11, *)
 92 |     @available(swift, obsoleted: 3, renamed: "makeItem(withIdentifier:for:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Reusable+NSCollectionView.swift:28:39: warning: call to main actor-isolated instance method 'makeSupplementaryView(ofKind:withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 |
26 |     public extension Reusable where Self: NSView {
27 |         static func dequeue(from collectionView: NSCollectionView, of kind: NSCollectionView.SupplementaryElementKind, for indexPath: IndexPath, with dependency: Dependency) -> Self {
   |                     `- note: add '@MainActor' to make static method 'dequeue(from:of:for:with:)' part of global actor 'MainActor'
28 |             let view = collectionView.makeSupplementaryView(ofKind: kind, withIdentifier: Self.reusableIdentifier, for: indexPath) as! Self
   |                                       `- warning: call to main actor-isolated instance method 'makeSupplementaryView(ofKind:withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 |             view.inject(dependency)
30 |             return view
AppKit.NSCollectionView:95:15: note: calls to instance method 'makeSupplementaryView(ofKind:withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
 93 |     open func makeItemWithIdentifier(_ identifier: NSUserInterfaceItemIdentifier, forIndexPath indexPath: IndexPath) -> NSCollectionViewItem
 94 |     @available(macOS 10.11, *)
 95 |     open func makeSupplementaryView(ofKind elementKind: NSCollectionView.SupplementaryElementKind, withIdentifier identifier: NSUserInterfaceItemIdentifier, for indexPath: IndexPath) -> NSView
    |               `- note: calls to instance method 'makeSupplementaryView(ofKind:withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
 96 |     @available(macOS 10.11, *)
 97 |     @available(swift, obsoleted: 3, renamed: "makeSupplementaryView(ofKind:withIdentifier:for:)")
[18/22] Compiling Instantiate Reusable+NSCollectionView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSViewController.swift:17:20: warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 |             let nibName = (Self.self as NibType.Type).nibName
16 |             let nibBundle = (Self.self as NibType.Type).nibBundle
17 |             self = Self(nibName: nibName, bundle: nibBundle)
   |                    `- warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
18 |             if self is ViewLoadBeforeInject {
19 |                 _ = self.view
AppKit.NSViewController:3:23: note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
 1 | @available(macOS 10.5, *)
 2 | @MainActor open class NSViewController : NSResponder, NSEditor, NSSeguePerforming, NSUserInterfaceItemIdentification {
 3 |     @MainActor public init(nibName nibNameOrNil: NSNib.Name?, bundle nibBundleOrNil: Bundle?)
   |                       `- note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
 4 |     public init?(coder: NSCoder)
 5 |     open var nibName: NSNib.Name? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSViewController.swift:19:26: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
17 |             self = Self(nibName: nibName, bundle: nibBundle)
18 |             if self is ViewLoadBeforeInject {
19 |                 _ = self.view
   |                          `- warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
20 |             }
21 |             self.inject(dependency)
AppKit.NSViewController:9:24: note: property declared here
 7 |     open var representedObject: Any? { get set }
 8 |     open var title: String? { get set }
 9 |     @IBOutlet open var view: NSView { get set }
   |                        `- note: property declared here
10 |     @available(macOS 14.0, *)
11 |     open var viewIfLoaded: NSView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Reusable+NSCollectionView.swift:14:39: warning: call to main actor-isolated instance method 'makeItem(withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
11 |
12 |     public extension Reusable where Self: NSCollectionViewItem {
13 |         static func dequeue(from collectionView: NSCollectionView, for indexPath: IndexPath, with dependency: Dependency) -> Self {
   |                     `- note: add '@MainActor' to make static method 'dequeue(from:for:with:)' part of global actor 'MainActor'
14 |             let cell = collectionView.makeItem(withIdentifier: Self.reusableIdentifier, for: indexPath) as! Self
   |                                       `- warning: call to main actor-isolated instance method 'makeItem(withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 |             cell.inject(dependency)
16 |             return cell
AppKit.NSCollectionView:90:26: note: calls to instance method 'makeItem(withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
 88 |     open func registerNib(_ nib: NSNib?, forSupplementaryViewOfKind kind: NSCollectionView.SupplementaryElementKind, withIdentifier identifier: NSUserInterfaceItemIdentifier)
 89 |     @available(macOS 10.11, *)
 90 |     @MainActor open func makeItem(withIdentifier identifier: NSUserInterfaceItemIdentifier, for indexPath: IndexPath) -> NSCollectionViewItem
    |                          `- note: calls to instance method 'makeItem(withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
 91 |     @available(macOS 10.11, *)
 92 |     @available(swift, obsoleted: 3, renamed: "makeItem(withIdentifier:for:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Reusable+NSCollectionView.swift:28:39: warning: call to main actor-isolated instance method 'makeSupplementaryView(ofKind:withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
25 |
26 |     public extension Reusable where Self: NSView {
27 |         static func dequeue(from collectionView: NSCollectionView, of kind: NSCollectionView.SupplementaryElementKind, for indexPath: IndexPath, with dependency: Dependency) -> Self {
   |                     `- note: add '@MainActor' to make static method 'dequeue(from:of:for:with:)' part of global actor 'MainActor'
28 |             let view = collectionView.makeSupplementaryView(ofKind: kind, withIdentifier: Self.reusableIdentifier, for: indexPath) as! Self
   |                                       `- warning: call to main actor-isolated instance method 'makeSupplementaryView(ofKind:withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 |             view.inject(dependency)
30 |             return view
AppKit.NSCollectionView:95:15: note: calls to instance method 'makeSupplementaryView(ofKind:withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
 93 |     open func makeItemWithIdentifier(_ identifier: NSUserInterfaceItemIdentifier, forIndexPath indexPath: IndexPath) -> NSCollectionViewItem
 94 |     @available(macOS 10.11, *)
 95 |     open func makeSupplementaryView(ofKind elementKind: NSCollectionView.SupplementaryElementKind, withIdentifier identifier: NSUserInterfaceItemIdentifier, for indexPath: IndexPath) -> NSView
    |               `- note: calls to instance method 'makeSupplementaryView(ofKind:withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
 96 |     @available(macOS 10.11, *)
 97 |     @available(swift, obsoleted: 3, renamed: "makeSupplementaryView(ofKind:withIdentifier:for:)")
[19/22] Compiling Instantiate Reusable+NSTableView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Reusable+NSTableView.swift:14:34: warning: call to main actor-isolated instance method 'makeView(withIdentifier:owner:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
11 |
12 |     public extension Reusable where Self: NSView {
13 |         static func dequeue(from tableView: NSTableView, with dependency: Dependency) -> Self {
   |                     `- note: add '@MainActor' to make static method 'dequeue(from:with:)' part of global actor 'MainActor'
14 |             let view = tableView.makeView(withIdentifier: Self.reusableIdentifier, owner: nil) as! Self
   |                                  `- warning: call to main actor-isolated instance method 'makeView(withIdentifier:owner:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
15 |             view.inject(dependency)
16 |             return view
AppKit.NSTableView:156:26: note: calls to instance method 'makeView(withIdentifier:owner:)' from outside of its actor context are implicitly asynchronous
154 |     open func columnForView(_ view: NSView) -> Int
155 |     @available(macOS 10.7, *)
156 |     @MainActor open func makeView(withIdentifier identifier: NSUserInterfaceItemIdentifier, owner: Any?) -> NSView?
    |                          `- note: calls to instance method 'makeView(withIdentifier:owner:)' from outside of its actor context are implicitly asynchronous
157 |     @available(macOS 10.7, *)
158 |     @available(swift, obsoleted: 4, renamed: "makeView(withIdentifier:owner:)")
[20/22] Compiling Instantiate Storyboard+UIViewController.swift
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:23:25: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
21 |     public extension NibInstantiatableWrapper where Self: NSView, Wrapped: NSView {
22 |         var view: Wrapped {
23 |             return self.subviews.first as! Wrapped
   |                         `- warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
24 |         }
25 |
AppKit.NSView:6:25: note: property declared here
  4 |     unowned(unsafe) open var window: NSWindow? { get }
  5 |     unowned(unsafe) open var superview: NSView? { get }
  6 |     @MainActor open var subviews: [NSView] { get set }
    |                         `- note: property declared here
  7 |     open func isDescendant(of view: NSView) -> Bool
  8 |     @available(swift, obsoleted: 3, renamed: "isDescendant(of:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:27:25: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
25 |
26 |         var viewIfLoaded: Wrapped? {
27 |             return self.subviews.first as? Wrapped
   |                         `- warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
AppKit.NSView:6:25: note: property declared here
  4 |     unowned(unsafe) open var window: NSWindow? { get }
  5 |     unowned(unsafe) open var superview: NSView? { get }
  6 |     @MainActor open var subviews: [NSView] { get set }
    |                         `- note: property declared here
  7 |     open func isDescendant(of view: NSView) -> Bool
  8 |     @available(swift, obsoleted: 3, renamed: "isDescendant(of:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:32:16: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   |                `- warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
34 |                 view.autoresizingMask = [.width, .height]
AppKit.NSView:3:25: note: property declared here
1 | extension NSView {
2 |     @available(macOS 10.7, *)
3 |     @MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
  |                         `- note: property declared here
4 |     @available(macOS 10.7, *)
5 |     open class var requiresConstraintBasedLayout: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:33:22: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
   |                      `- warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
AppKit.NSView:3:25: note: mutation of this property is only permitted within the actor
1 | extension NSView {
2 |     @available(macOS 10.7, *)
3 |     @MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
  |                         `- note: mutation of this property is only permitted within the actor
4 |     @available(macOS 10.7, *)
5 |     open class var requiresConstraintBasedLayout: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:34:22: warning: main actor-isolated property 'autoresizingMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
34 |                 view.autoresizingMask = [.width, .height]
   |                      `- warning: main actor-isolated property 'autoresizingMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 |                 view.frame = self.bounds
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
AppKit.NSView:57:14: note: mutation of this property is only permitted within the actor
 55 |     open func resizeWithOldSuperviewSize(_ oldSize: NSSize)
 56 |     open var autoresizesSubviews: Bool { get set }
 57 |     open var autoresizingMask: NSView.AutoresizingMask { get set }
    |              `- note: mutation of this property is only permitted within the actor
 58 |     open func setFrameOrigin(_ newOrigin: NSPoint)
 59 |     open func setFrameSize(_ newSize: NSSize)
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:35:22: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
   |                      `- warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
37 |             } else {
AppKit.NSView:60:14: note: mutation of this property is only permitted within the actor
 58 |     open func setFrameOrigin(_ newOrigin: NSPoint)
 59 |     open func setFrameSize(_ newSize: NSSize)
 60 |     open var frame: NSRect { get set }
    |              `- note: mutation of this property is only permitted within the actor
 61 |     open var frameRotation: CGFloat { get set }
 62 |     @available(macOS 10.5, *)
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:35:35: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
   |                                   `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
37 |             } else {
AppKit.NSView:76:14: note: property declared here
 74 |     @available(swift, obsoleted: 3, renamed: "rotate(byDegrees:)")
 75 |     open func rotateByAngle(_ angle: CGFloat)
 76 |     open var bounds: NSRect { get set }
    |              `- note: property declared here
 77 |     open var isFlipped: Bool { get }
 78 |     @available(swift, obsoleted: 3, renamed: "isFlipped")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:36:22: warning: call to main actor-isolated instance method 'addSubview(_:positioned:relativeTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
   |                      `- warning: call to main actor-isolated instance method 'addSubview(_:positioned:relativeTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
AppKit.NSView:30:15: note: calls to instance method 'addSubview(_:positioned:relativeTo:)' from outside of its actor context are implicitly asynchronous
 28 |     open func viewDidUnhide()
 29 |     open func addSubview(_ view: NSView)
 30 |     open func addSubview(_ view: NSView, positioned place: NSWindow.OrderingMode, relativeTo otherView: NSView?)
    |               `- note: calls to instance method 'addSubview(_:positioned:relativeTo:)' from outside of its actor context are implicitly asynchronous
 31 |     open func sortSubviews(_ compare: @convention(c) (NSView, NSView, UnsafeMutableRawPointer?) -> ComparisonResult, context: UnsafeMutableRawPointer?)
 32 |     @available(swift, obsoleted: 3, renamed: "sortSubviews(_:context:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:36:76: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
   |                                                                            `- warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
AppKit.NSView:6:25: note: property declared here
  4 |     unowned(unsafe) open var window: NSWindow? { get }
  5 |     unowned(unsafe) open var superview: NSView? { get }
  6 |     @MainActor open var subviews: [NSView] { get set }
    |                         `- note: property declared here
  7 |     open func isDescendant(of view: NSView) -> Bool
  8 |     @available(swift, obsoleted: 3, renamed: "isDescendant(of:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:38:22: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
   |                      `- warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
AppKit.NSView:3:25: note: mutation of this property is only permitted within the actor
1 | extension NSView {
2 |     @available(macOS 10.7, *)
3 |     @MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
  |                         `- note: mutation of this property is only permitted within the actor
4 |     @available(macOS 10.7, *)
5 |     open class var requiresConstraintBasedLayout: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:39:22: warning: call to main actor-isolated instance method 'addSubview(_:positioned:relativeTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
   |                      `- warning: call to main actor-isolated instance method 'addSubview(_:positioned:relativeTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
AppKit.NSView:30:15: note: calls to instance method 'addSubview(_:positioned:relativeTo:)' from outside of its actor context are implicitly asynchronous
 28 |     open func viewDidUnhide()
 29 |     open func addSubview(_ view: NSView)
 30 |     open func addSubview(_ view: NSView, positioned place: NSWindow.OrderingMode, relativeTo otherView: NSView?)
    |               `- note: calls to instance method 'addSubview(_:positioned:relativeTo:)' from outside of its actor context are implicitly asynchronous
 31 |     open func sortSubviews(_ compare: @convention(c) (NSView, NSView, UnsafeMutableRawPointer?) -> ComparisonResult, context: UnsafeMutableRawPointer?)
 32 |     @available(swift, obsoleted: 3, renamed: "sortSubviews(_:context:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:39:76: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
   |                                                                            `- warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
AppKit.NSView:6:25: note: property declared here
  4 |     unowned(unsafe) open var window: NSWindow? { get }
  5 |     unowned(unsafe) open var superview: NSView? { get }
  6 |     @MainActor open var subviews: [NSView] { get set }
    |                         `- note: property declared here
  7 |     open func isDescendant(of view: NSView) -> Bool
  8 |     @available(swift, obsoleted: 3, renamed: "isDescendant(of:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:40:22: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
   |                      `- warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
AppKit.NSView:11:25: note: property declared here
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
10 |     @available(macOS 10.11, *)
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
   |                         `- note: property declared here
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:40:57: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
   |                                                         `- warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
AppKit.NSView:11:25: note: property declared here
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
10 |     @available(macOS 10.11, *)
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
   |                         `- note: property declared here
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:41:22: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
   |                      `- warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
AppKit.NSView:13:14: note: property declared here
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
   |              `- note: property declared here
14 |     @available(macOS 10.11, *)
15 |     open var widthAnchor: NSLayoutDimension { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:41:60: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
   |                                                            `- warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
AppKit.NSView:13:14: note: property declared here
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
   |              `- note: property declared here
14 |     @available(macOS 10.11, *)
15 |     open var widthAnchor: NSLayoutDimension { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:42:22: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
   |                      `- warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
44 |             }
AppKit.NSView:7:14: note: property declared here
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
 6 |     @available(macOS 10.11, *)
 7 |     open var leftAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:42:58: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
   |                                                          `- warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
44 |             }
AppKit.NSView:7:14: note: property declared here
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
 6 |     @available(macOS 10.11, *)
 7 |     open var leftAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:43:22: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
   |                      `- warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
44 |             }
45 |         }
AppKit.NSView:9:14: note: property declared here
 7 |     open var leftAnchor: NSLayoutXAxisAnchor { get }
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
10 |     @available(macOS 10.11, *)
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:43:59: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
   |                                                           `- warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
44 |             }
45 |         }
AppKit.NSView:9:14: note: property declared here
 7 |     open var leftAnchor: NSLayoutXAxisAnchor { get }
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
10 |     @available(macOS 10.11, *)
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
[21/22] Compiling Instantiate Nib+NSView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:23:25: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
21 |     public extension NibInstantiatableWrapper where Self: NSView, Wrapped: NSView {
22 |         var view: Wrapped {
23 |             return self.subviews.first as! Wrapped
   |                         `- warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
24 |         }
25 |
AppKit.NSView:6:25: note: property declared here
  4 |     unowned(unsafe) open var window: NSWindow? { get }
  5 |     unowned(unsafe) open var superview: NSView? { get }
  6 |     @MainActor open var subviews: [NSView] { get set }
    |                         `- note: property declared here
  7 |     open func isDescendant(of view: NSView) -> Bool
  8 |     @available(swift, obsoleted: 3, renamed: "isDescendant(of:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:27:25: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
25 |
26 |         var viewIfLoaded: Wrapped? {
27 |             return self.subviews.first as? Wrapped
   |                         `- warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
AppKit.NSView:6:25: note: property declared here
  4 |     unowned(unsafe) open var window: NSWindow? { get }
  5 |     unowned(unsafe) open var superview: NSView? { get }
  6 |     @MainActor open var subviews: [NSView] { get set }
    |                         `- note: property declared here
  7 |     open func isDescendant(of view: NSView) -> Bool
  8 |     @available(swift, obsoleted: 3, renamed: "isDescendant(of:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:32:16: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   |                `- warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
34 |                 view.autoresizingMask = [.width, .height]
AppKit.NSView:3:25: note: property declared here
1 | extension NSView {
2 |     @available(macOS 10.7, *)
3 |     @MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
  |                         `- note: property declared here
4 |     @available(macOS 10.7, *)
5 |     open class var requiresConstraintBasedLayout: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:33:22: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
   |                      `- warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
AppKit.NSView:3:25: note: mutation of this property is only permitted within the actor
1 | extension NSView {
2 |     @available(macOS 10.7, *)
3 |     @MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
  |                         `- note: mutation of this property is only permitted within the actor
4 |     @available(macOS 10.7, *)
5 |     open class var requiresConstraintBasedLayout: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:34:22: warning: main actor-isolated property 'autoresizingMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
34 |                 view.autoresizingMask = [.width, .height]
   |                      `- warning: main actor-isolated property 'autoresizingMask' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
35 |                 view.frame = self.bounds
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
AppKit.NSView:57:14: note: mutation of this property is only permitted within the actor
 55 |     open func resizeWithOldSuperviewSize(_ oldSize: NSSize)
 56 |     open var autoresizesSubviews: Bool { get set }
 57 |     open var autoresizingMask: NSView.AutoresizingMask { get set }
    |              `- note: mutation of this property is only permitted within the actor
 58 |     open func setFrameOrigin(_ newOrigin: NSPoint)
 59 |     open func setFrameSize(_ newSize: NSSize)
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:35:22: warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
   |                      `- warning: main actor-isolated property 'frame' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
37 |             } else {
AppKit.NSView:60:14: note: mutation of this property is only permitted within the actor
 58 |     open func setFrameOrigin(_ newOrigin: NSPoint)
 59 |     open func setFrameSize(_ newSize: NSSize)
 60 |     open var frame: NSRect { get set }
    |              `- note: mutation of this property is only permitted within the actor
 61 |     open var frameRotation: CGFloat { get set }
 62 |     @available(macOS 10.5, *)
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:35:35: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
33 |                 view.translatesAutoresizingMaskIntoConstraints = true
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
   |                                   `- warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
37 |             } else {
AppKit.NSView:76:14: note: property declared here
 74 |     @available(swift, obsoleted: 3, renamed: "rotate(byDegrees:)")
 75 |     open func rotateByAngle(_ angle: CGFloat)
 76 |     open var bounds: NSRect { get set }
    |              `- note: property declared here
 77 |     open var isFlipped: Bool { get }
 78 |     @available(swift, obsoleted: 3, renamed: "isFlipped")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:36:22: warning: call to main actor-isolated instance method 'addSubview(_:positioned:relativeTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
   |                      `- warning: call to main actor-isolated instance method 'addSubview(_:positioned:relativeTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
AppKit.NSView:30:15: note: calls to instance method 'addSubview(_:positioned:relativeTo:)' from outside of its actor context are implicitly asynchronous
 28 |     open func viewDidUnhide()
 29 |     open func addSubview(_ view: NSView)
 30 |     open func addSubview(_ view: NSView, positioned place: NSWindow.OrderingMode, relativeTo otherView: NSView?)
    |               `- note: calls to instance method 'addSubview(_:positioned:relativeTo:)' from outside of its actor context are implicitly asynchronous
 31 |     open func sortSubviews(_ compare: @convention(c) (NSView, NSView, UnsafeMutableRawPointer?) -> ComparisonResult, context: UnsafeMutableRawPointer?)
 32 |     @available(swift, obsoleted: 3, renamed: "sortSubviews(_:context:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:36:76: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
34 |                 view.autoresizingMask = [.width, .height]
35 |                 view.frame = self.bounds
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
   |                                                                            `- warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
AppKit.NSView:6:25: note: property declared here
  4 |     unowned(unsafe) open var window: NSWindow? { get }
  5 |     unowned(unsafe) open var superview: NSView? { get }
  6 |     @MainActor open var subviews: [NSView] { get set }
    |                         `- note: property declared here
  7 |     open func isDescendant(of view: NSView) -> Bool
  8 |     @available(swift, obsoleted: 3, renamed: "isDescendant(of:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:38:22: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
36 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
   |                      `- warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
AppKit.NSView:3:25: note: mutation of this property is only permitted within the actor
1 | extension NSView {
2 |     @available(macOS 10.7, *)
3 |     @MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
  |                         `- note: mutation of this property is only permitted within the actor
4 |     @available(macOS 10.7, *)
5 |     open class var requiresConstraintBasedLayout: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:39:22: warning: call to main actor-isolated instance method 'addSubview(_:positioned:relativeTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
   |                      `- warning: call to main actor-isolated instance method 'addSubview(_:positioned:relativeTo:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
AppKit.NSView:30:15: note: calls to instance method 'addSubview(_:positioned:relativeTo:)' from outside of its actor context are implicitly asynchronous
 28 |     open func viewDidUnhide()
 29 |     open func addSubview(_ view: NSView)
 30 |     open func addSubview(_ view: NSView, positioned place: NSWindow.OrderingMode, relativeTo otherView: NSView?)
    |               `- note: calls to instance method 'addSubview(_:positioned:relativeTo:)' from outside of its actor context are implicitly asynchronous
 31 |     open func sortSubviews(_ compare: @convention(c) (NSView, NSView, UnsafeMutableRawPointer?) -> ComparisonResult, context: UnsafeMutableRawPointer?)
 32 |     @available(swift, obsoleted: 3, renamed: "sortSubviews(_:context:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:39:76: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
37 |             } else {
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
   |                                                                            `- warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
AppKit.NSView:6:25: note: property declared here
  4 |     unowned(unsafe) open var window: NSWindow? { get }
  5 |     unowned(unsafe) open var superview: NSView? { get }
  6 |     @MainActor open var subviews: [NSView] { get set }
    |                         `- note: property declared here
  7 |     open func isDescendant(of view: NSView) -> Bool
  8 |     @available(swift, obsoleted: 3, renamed: "isDescendant(of:)")
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:40:22: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
   |                      `- warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
AppKit.NSView:11:25: note: property declared here
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
10 |     @available(macOS 10.11, *)
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
   |                         `- note: property declared here
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:40:57: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
38 |                 view.translatesAutoresizingMaskIntoConstraints = false
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
   |                                                         `- warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
AppKit.NSView:11:25: note: property declared here
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
10 |     @available(macOS 10.11, *)
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
   |                         `- note: property declared here
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:41:22: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
   |                      `- warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
AppKit.NSView:13:14: note: property declared here
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
   |              `- note: property declared here
14 |     @available(macOS 10.11, *)
15 |     open var widthAnchor: NSLayoutDimension { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:41:60: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
39 |                 self.addSubview(view, positioned: .above, relativeTo: self.subviews.first)
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
   |                                                            `- warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
AppKit.NSView:13:14: note: property declared here
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
   |              `- note: property declared here
14 |     @available(macOS 10.11, *)
15 |     open var widthAnchor: NSLayoutDimension { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:42:22: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
   |                      `- warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
44 |             }
AppKit.NSView:7:14: note: property declared here
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
 6 |     @available(macOS 10.11, *)
 7 |     open var leftAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:42:58: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
40 |                 view.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
   |                                                          `- warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
44 |             }
AppKit.NSView:7:14: note: property declared here
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
 6 |     @available(macOS 10.11, *)
 7 |     open var leftAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:43:22: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
   |                      `- warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
44 |             }
45 |         }
AppKit.NSView:9:14: note: property declared here
 7 |     open var leftAnchor: NSLayoutXAxisAnchor { get }
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
10 |     @available(macOS 10.11, *)
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Nib+NSView.swift:43:59: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
28 |         }
29 |
30 |         func loadView(with dependency: Wrapped.Dependency) {
   |              `- note: add '@MainActor' to make instance method 'loadView(with:)' part of global actor 'MainActor'
31 |             let view = Wrapped(with: dependency)
32 |             if translatesAutoresizingMaskIntoConstraints {
   :
41 |                 view.bottomAnchor.constraint(equalTo: self.bottomAnchor).isActive = true
42 |                 view.leftAnchor.constraint(equalTo: self.leftAnchor).isActive = true
43 |                 view.rightAnchor.constraint(equalTo: self.rightAnchor).isActive = true
   |                                                           `- warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
44 |             }
45 |         }
AppKit.NSView:9:14: note: property declared here
 7 |     open var leftAnchor: NSLayoutXAxisAnchor { get }
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
10 |     @available(macOS 10.11, *)
11 |     @MainActor open var topAnchor: NSLayoutYAxisAnchor { get }
[22/22] Compiling Instantiate Storyboard+NSViewController.swift
/Users/admin/builder/spi-builder-workspace/Sources/Instantiate/macOS/Storyboard+NSViewController.swift:22:26: warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
20 |             }
21 |             if self is ViewLoadBeforeInject {
22 |                 _ = self.view
   |                          `- warning: main actor-isolated property 'view' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
23 |             }
24 |             self.inject(dependency)
AppKit.NSViewController:9:35: note: property declared here
 7 |     open var representedObject: Any? { get set }
 8 |     open var title: String? { get set }
 9 |     @IBOutlet @MainActor open var view: NSView { get set }
   |                                   `- note: property declared here
10 |     @available(macOS 14.0, *)
11 |     open var viewIfLoaded: NSView? { get }
[23/25] Emitting module InstantiateStandard
[24/25] Compiling InstantiateStandard Deprecated.swift
[25/25] Compiling InstantiateStandard Extensions.swift
Build complete! (13.92s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Instantiate",
  "name" : "Instantiate",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "macos",
      "version" : "10.11"
    }
  ],
  "products" : [
    {
      "name" : "Instantiate",
      "targets" : [
        "Instantiate"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "InstantiateStandard",
      "targets" : [
        "InstantiateStandard"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4",
    "5"
  ],
  "targets" : [
    {
      "c99name" : "InstantiateTests",
      "module_type" : "SwiftTarget",
      "name" : "InstantiateTests",
      "path" : "Tests/InstantiateTests",
      "sources" : [
        "InstantiateTests.swift",
        "iOS/Resources-iOS.swift",
        "macOS/Resources-macOS.swift",
        "tvOS/Resoources-tvOS.swift"
      ],
      "target_dependencies" : [
        "Instantiate",
        "InstantiateStandard"
      ],
      "type" : "test"
    },
    {
      "c99name" : "InstantiateStandard",
      "module_type" : "SwiftTarget",
      "name" : "InstantiateStandard",
      "path" : "Sources/InstantiateStandard",
      "product_memberships" : [
        "InstantiateStandard"
      ],
      "sources" : [
        "Deprecated.swift",
        "Extensions.swift"
      ],
      "target_dependencies" : [
        "Instantiate"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Instantiate",
      "module_type" : "SwiftTarget",
      "name" : "Instantiate",
      "path" : "Sources/Instantiate",
      "product_memberships" : [
        "Instantiate",
        "InstantiateStandard"
      ],
      "sources" : [
        "Deprecated.swift",
        "Identifier.swift",
        "Injectable.swift",
        "Instantiatable.swift",
        "Nib.swift",
        "Reusable.swift",
        "Storyboard.swift",
        "ViewLoadBeforeInject.swift",
        "iOS/Nib+UIView.swift",
        "iOS/Nib+UIViewController.swift",
        "iOS/Reusable+UICollectionView.swift",
        "iOS/Reusable+UITableView.swift",
        "iOS/Storyboard+UIViewController.swift",
        "macOS/Nib+NSView.swift",
        "macOS/Nib+NSViewController.swift",
        "macOS/Reusable+NSCollectionView.swift",
        "macOS/Reusable+NSTableView.swift",
        "macOS/Storyboard+NSViewController.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.