The Swift Package Index logo.Swift Package Index

Build Information

Successful build of FluentUI, reference 0.35.0 (0ec0c4), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 25 Oct 2025 00:22:01 UTC.

Swift 6 data race errors: 39

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme FluentUI -destination platform=macOS,arch=arm64 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

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

/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:147:14: warning: static property 'defaultBackgroundColor' is not concurrency-safe because non-'Sendable' type 'LegacyDynamicColor' may have shared mutable state; this is an error in the Swift 6 language mode
                static let defaultBackgroundColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueTint40.color, dark: Colors.Palette.communicationBlueTint30.color)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift:22:14: note: class 'LegacyDynamicColor' does not conform to the 'Sendable' protocol
public class LegacyDynamicColor: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:147:14: note: add '@MainActor' to make static property 'defaultBackgroundColor' part of global actor 'MainActor'
                static let defaultBackgroundColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueTint40.color, dark: Colors.Palette.communicationBlueTint30.color)
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:147:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let defaultBackgroundColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueTint40.color, dark: Colors.Palette.communicationBlueTint30.color)
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:148:14: warning: static property 'defaultTextColor' is not concurrency-safe because non-'Sendable' type 'LegacyDynamicColor' may have shared mutable state; this is an error in the Swift 6 language mode
                static let defaultTextColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueShade20.color, dark: Colors.Palette.communicationBlueShade20.color)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift:22:14: note: class 'LegacyDynamicColor' does not conform to the 'Sendable' protocol
public class LegacyDynamicColor: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:148:14: note: add '@MainActor' to make static property 'defaultTextColor' part of global actor 'MainActor'
                static let defaultTextColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueShade20.color, dark: Colors.Palette.communicationBlueShade20.color)
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:148:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let defaultTextColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueShade20.color, dark: Colors.Palette.communicationBlueShade20.color)
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:150:14: warning: static property 'primaryBackgroundColor' is not concurrency-safe because non-'Sendable' type 'LegacyDynamicColor' may have shared mutable state; this is an error in the Swift 6 language mode
                static let primaryBackgroundColor: LegacyDynamicColor = .init(light: Colors.primaryTint40, dark: Colors.primaryTint30)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift:22:14: note: class 'LegacyDynamicColor' does not conform to the 'Sendable' protocol
public class LegacyDynamicColor: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:150:14: note: add '@MainActor' to make static property 'primaryBackgroundColor' part of global actor 'MainActor'
                static let primaryBackgroundColor: LegacyDynamicColor = .init(light: Colors.primaryTint40, dark: Colors.primaryTint30)
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:150:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let primaryBackgroundColor: LegacyDynamicColor = .init(light: Colors.primaryTint40, dark: Colors.primaryTint30)
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:151:14: warning: static property 'primaryTextColor' is not concurrency-safe because non-'Sendable' type 'LegacyDynamicColor' may have shared mutable state; this is an error in the Swift 6 language mode
                static let primaryTextColor: LegacyDynamicColor = .init(light: Colors.primary, dark: Colors.primaryShade20)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift:22:14: note: class 'LegacyDynamicColor' does not conform to the 'Sendable' protocol
public class LegacyDynamicColor: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:151:14: note: add '@MainActor' to make static property 'primaryTextColor' part of global actor 'MainActor'
                static let primaryTextColor: LegacyDynamicColor = .init(light: Colors.primary, dark: Colors.primaryShade20)
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:151:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let primaryTextColor: LegacyDynamicColor = .init(light: Colors.primary, dark: Colors.primaryShade20)
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:64:16: warning: main actor-isolated instance method 'accessibilityLabel()' cannot be used to satisfy nonisolated requirement from protocol 'NSAccessibilityStepper'; this is an error in the Swift 6 language mode
        override func accessibilityLabel() -> String? {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:64:16: note: add 'nonisolated' to 'accessibilityLabel()' to make this instance method not isolated to the actor
        override func accessibilityLabel() -> String? {
                      ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:34:55: note: add '@preconcurrency' to the 'NSAccessibilityStepper' conformance to defer isolation checking to run time
class AccessibleCalendarHeaderStackView: NSStackView, NSAccessibilityStepper {
                                                      ^
                                                      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:56:16: warning: main actor-isolated instance method 'accessibilityPerformIncrement()' cannot be used to satisfy nonisolated requirement from protocol 'NSAccessibilityStepper'; this is an error in the Swift 6 language mode
        override func accessibilityPerformIncrement() -> Bool {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:56:16: note: add 'nonisolated' to 'accessibilityPerformIncrement()' to make this instance method not isolated to the actor
        override func accessibilityPerformIncrement() -> Bool {
                      ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:60:16: warning: main actor-isolated instance method 'accessibilityPerformDecrement()' cannot be used to satisfy nonisolated requirement from protocol 'NSAccessibilityStepper'; this is an error in the Swift 6 language mode
        override func accessibilityPerformDecrement() -> Bool {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:60:16: note: add 'nonisolated' to 'accessibilityPerformDecrement()' to make this instance method not isolated to the actor
        override func accessibilityPerformDecrement() -> Bool {
                      ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:68:16: warning: main actor-isolated instance method 'accessibilityValue()' cannot be used to satisfy nonisolated requirement from protocol 'NSAccessibilityStepper'; this is an error in the Swift 6 language mode
        override func accessibilityValue() -> Any? {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:68:16: note: add 'nonisolated' to 'accessibilityValue()' to make this instance method not isolated to the actor
        override func accessibilityValue() -> Any? {
                      ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:321:7: warning: main actor-isolated instance method 'datePicker(_:didSelectDate:)' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePicker(_ datePicker: DatePickerView, didSelectDate date: Date) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:321:7: note: add 'nonisolated' to 'datePicker(_:didSelectDate:)' to make this instance method not isolated to the actor
        func datePicker(_ datePicker: DatePickerView, didSelectDate date: Date) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:304:33: note: add '@preconcurrency' to the 'DatePickerViewDelegate' conformance to defer isolation checking to run time
extension DatePickerController: DatePickerViewDelegate {
                                ^
                                @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:420:7: note: mark the protocol requirement 'datePicker(_:didSelectDate:)' 'async' to allow actor-isolated conformances
        func datePicker(_ datePicker: DatePickerView, didSelectDate date: Date)
             ^
                                                                                async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:330:7: warning: main actor-isolated instance method 'datePicker(_:didSelectDateTime:)' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePicker(_ datePicker: DatePickerView, didSelectDateTime date: Date) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:330:7: note: add 'nonisolated' to 'datePicker(_:didSelectDateTime:)' to make this instance method not isolated to the actor
        func datePicker(_ datePicker: DatePickerView, didSelectDateTime date: Date) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:427:7: note: mark the protocol requirement 'datePicker(_:didSelectDateTime:)' 'async' to allow actor-isolated conformances
        func datePicker(_ datePicker: DatePickerView, didSelectDateTime date: Date)
             ^
                                                                                    async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:338:7: warning: main actor-isolated instance method 'datePickerDidPressNext' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePickerDidPressNext(_ datePicker: DatePickerView) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:338:7: note: add 'nonisolated' to 'datePickerDidPressNext' to make this instance method not isolated to the actor
        func datePickerDidPressNext(_ datePicker: DatePickerView) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:433:7: note: mark the protocol requirement 'datePickerDidPressNext' 'async' to allow actor-isolated conformances
        func datePickerDidPressNext(_ datePicker: DatePickerView)
             ^
                                                                  async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:346:7: warning: main actor-isolated instance method 'datePickerDidPressPrevious' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePickerDidPressPrevious(_ datePicker: DatePickerView) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:346:7: note: add 'nonisolated' to 'datePickerDidPressPrevious' to make this instance method not isolated to the actor
        func datePickerDidPressPrevious(_ datePicker: DatePickerView) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:439:7: note: mark the protocol requirement 'datePickerDidPressPrevious' 'async' to allow actor-isolated conformances
        func datePickerDidPressPrevious(_ datePicker: DatePickerView)
             ^
                                                                      async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:312:7: warning: main actor-isolated instance method 'datePicker(_:shouldHighlightButton:)' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePicker(_ datePicker: DatePickerView, shouldHighlightButton button: CalendarDayButton) -> Bool {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:312:7: note: add 'nonisolated' to 'datePicker(_:shouldHighlightButton:)' to make this instance method not isolated to the actor
        func datePicker(_ datePicker: DatePickerView, shouldHighlightButton button: CalendarDayButton) -> Bool {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:447:7: note: mark the protocol requirement 'datePicker(_:shouldHighlightButton:)' 'async' to allow actor-isolated conformances
        func datePicker(_ datePicker: DatePickerView, shouldHighlightButton button: CalendarDayButton) -> Bool
             ^
                                                                                                       async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:101:6: warning: main actor-isolated property 'selectedDate' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        var selectedDate: Date {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:373:33: note: add '@preconcurrency' to the 'DatePickerViewDataSource' conformance to defer isolation checking to run time
extension DatePickerController: DatePickerViewDataSource {
                                ^
                                @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:469:6: note: requirement 'selectedDate' declared here
        var selectedDate: Date { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:142:19: warning: main actor-isolated property 'selectedDateTime' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        private(set) var selectedDateTime: Date
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:472:6: note: requirement 'selectedDateTime' declared here
        var selectedDateTime: Date { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:145:19: warning: main actor-isolated property 'visibleRange' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        private(set) var visibleRange: (first: Date, last: Date) {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:475:6: note: requirement 'visibleRange' declared here
        var visibleRange: (first: Date, last: Date) { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:106:6: warning: main actor-isolated property 'paddedDays' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        var paddedDays: PaddedCalendarDays {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:478:6: note: requirement 'paddedDays' declared here
        var paddedDays: PaddedCalendarDays { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:376:6: warning: main actor-isolated property 'shortWeekdays' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        var shortWeekdays: [String] {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:484:6: note: requirement 'shortWeekdays' declared here
        var shortWeekdays: [String] { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:382:6: warning: main actor-isolated property 'longWeekdays' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        var longWeekdays: [String] {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:487:6: note: requirement 'longWeekdays' declared here
        var longWeekdays: [String] { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:360:7: warning: main actor-isolated instance method 'calendarView(_:didSelectDate:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarViewDelegate'; this is an error in the Swift 6 language mode
        func calendarView(_ calendarView: CalendarView, didSelectDate date: Date) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:360:7: note: add 'nonisolated' to 'calendarView(_:didSelectDate:)' to make this instance method not isolated to the actor
        func calendarView(_ calendarView: CalendarView, didSelectDate date: Date) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:353:27: note: add '@preconcurrency' to the 'CalendarViewDelegate' conformance to defer isolation checking to run time
extension DatePickerView: CalendarViewDelegate {
                          ^
                          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarView.swift:149:7: note: mark the protocol requirement 'calendarView(_:didSelectDate:)' 'async' to allow actor-isolated conformances
        func calendarView(_ calendarView: CalendarView, didSelectDate date: Date)
             ^
                                                                                  async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:376:7: warning: main actor-isolated instance method 'calendarHeaderView(_:didPressLeading:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarHeaderViewDelegate'; this is an error in the Swift 6 language mode
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressLeading button: NSButton) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:376:7: note: add 'nonisolated' to 'calendarHeaderView(_:didPressLeading:)' to make this instance method not isolated to the actor
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressLeading button: NSButton) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:369:27: note: add '@preconcurrency' to the 'CalendarHeaderViewDelegate' conformance to defer isolation checking to run time
extension DatePickerView: CalendarHeaderViewDelegate {
                          ^
                          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:207:7: note: mark the protocol requirement 'calendarHeaderView(_:didPressLeading:)' 'async' to allow actor-isolated conformances
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressLeading button: NSButton)
             ^
                                                                                                        async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:391:7: warning: main actor-isolated instance method 'calendarHeaderView(_:didPressTrailing:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarHeaderViewDelegate'; this is an error in the Swift 6 language mode
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressTrailing button: NSButton) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:391:7: note: add 'nonisolated' to 'calendarHeaderView(_:didPressTrailing:)' to make this instance method not isolated to the actor
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressTrailing button: NSButton) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:214:7: note: mark the protocol requirement 'calendarHeaderView(_:didPressTrailing:)' 'async' to allow actor-isolated conformances
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressTrailing button: NSButton)
             ^
                                                                                                         async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:152:13: warning: let 'linkAttributes' is not concurrency-safe because non-'Sendable' type '[NSAttributedString.Key : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
private let linkAttributes: [NSAttributedString.Key: Any] = [:]
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:152:13: note: add '@MainActor' to make let 'linkAttributes' part of global actor 'MainActor'
private let linkAttributes: [NSAttributedString.Key: Any] = [:]
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:152:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let linkAttributes: [NSAttributedString.Key: Any] = [:]
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:154:13: warning: let 'underlinedLinkAttributes' is not concurrency-safe because non-'Sendable' type '[NSAttributedString.Key : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
private let underlinedLinkAttributes: [NSAttributedString.Key: Any] = [
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:154:13: note: add '@MainActor' to make let 'underlinedLinkAttributes' part of global actor 'MainActor'
private let underlinedLinkAttributes: [NSAttributedString.Key: Any] = [
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:154:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let underlinedLinkAttributes: [NSAttributedString.Key: Any] = [
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:515:26: warning: static property 'colorProvider' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        @objc public static var colorProvider: ColorProviding?
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:515:26: note: convert 'colorProvider' to a 'let' constant to make 'Sendable' shared state immutable
        @objc public static var colorProvider: ColorProviding?
                            ~~~ ^
                            let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:515:26: note: add '@MainActor' to make static property 'colorProvider' part of global actor 'MainActor'
        @objc public static var colorProvider: ColorProviding?
                                ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:515:26: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        @objc public static var colorProvider: ColorProviding?
                                ^
              nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:518:21: warning: static property '_primary' 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 _primary: NSColor = Colors.Palette.communicationBlue.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:518:21: note: convert '_primary' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primary: NSColor = Colors.Palette.communicationBlue.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:518:21: note: add '@MainActor' to make static property '_primary' part of global actor 'MainActor'
        private static var _primary: NSColor = Colors.Palette.communicationBlue.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:518:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primary: NSColor = Colors.Palette.communicationBlue.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:519:21: warning: static property '_primaryShade10' 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 _primaryShade10: NSColor = Colors.Palette.communicationBlueShade10.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:519:21: note: convert '_primaryShade10' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryShade10: NSColor = Colors.Palette.communicationBlueShade10.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:519:21: note: add '@MainActor' to make static property '_primaryShade10' part of global actor 'MainActor'
        private static var _primaryShade10: NSColor = Colors.Palette.communicationBlueShade10.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:519:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryShade10: NSColor = Colors.Palette.communicationBlueShade10.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:520:21: warning: static property '_primaryShade20' 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 _primaryShade20: NSColor = Colors.Palette.communicationBlueShade20.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:520:21: note: convert '_primaryShade20' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryShade20: NSColor = Colors.Palette.communicationBlueShade20.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:520:21: note: add '@MainActor' to make static property '_primaryShade20' part of global actor 'MainActor'
        private static var _primaryShade20: NSColor = Colors.Palette.communicationBlueShade20.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:520:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryShade20: NSColor = Colors.Palette.communicationBlueShade20.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:521:21: warning: static property '_primaryShade30' 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 _primaryShade30: NSColor = Colors.Palette.communicationBlueShade30.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:521:21: note: convert '_primaryShade30' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryShade30: NSColor = Colors.Palette.communicationBlueShade30.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:521:21: note: add '@MainActor' to make static property '_primaryShade30' part of global actor 'MainActor'
        private static var _primaryShade30: NSColor = Colors.Palette.communicationBlueShade30.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:521:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryShade30: NSColor = Colors.Palette.communicationBlueShade30.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:522:21: warning: static property '_primaryTint10' 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 _primaryTint10: NSColor = Colors.Palette.communicationBlueTint10.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:522:21: note: convert '_primaryTint10' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryTint10: NSColor = Colors.Palette.communicationBlueTint10.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:522:21: note: add '@MainActor' to make static property '_primaryTint10' part of global actor 'MainActor'
        private static var _primaryTint10: NSColor = Colors.Palette.communicationBlueTint10.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:522:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryTint10: NSColor = Colors.Palette.communicationBlueTint10.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:523:21: warning: static property '_primaryTint20' 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 _primaryTint20: NSColor = Colors.Palette.communicationBlueTint20.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:523:21: note: convert '_primaryTint20' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryTint20: NSColor = Colors.Palette.communicationBlueTint20.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:523:21: note: add '@MainActor' to make static property '_primaryTint20' part of global actor 'MainActor'
        private static var _primaryTint20: NSColor = Colors.Palette.communicationBlueTint20.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:523:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryTint20: NSColor = Colors.Palette.communicationBlueTint20.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:524:21: warning: static property '_primaryTint30' 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 _primaryTint30: NSColor = Colors.Palette.communicationBlueTint30.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:524:21: note: convert '_primaryTint30' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryTint30: NSColor = Colors.Palette.communicationBlueTint30.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:524:21: note: add '@MainActor' to make static property '_primaryTint30' part of global actor 'MainActor'
        private static var _primaryTint30: NSColor = Colors.Palette.communicationBlueTint30.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:524:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryTint30: NSColor = Colors.Palette.communicationBlueTint30.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:525:21: warning: static property '_primaryTint40' 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 _primaryTint40: NSColor = Colors.Palette.communicationBlueTint40.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:525:21: note: convert '_primaryTint40' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryTint40: NSColor = Colors.Palette.communicationBlueTint40.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:525:21: note: add '@MainActor' to make static property '_primaryTint40' part of global actor 'MainActor'
        private static var _primaryTint40: NSColor = Colors.Palette.communicationBlueTint40.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:525:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryTint40: NSColor = Colors.Palette.communicationBlueTint40.color
                           ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ColorProviding.swift,\ Colors.swift,\ ControlHostingView.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/ColorProviding.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/ControlHostingView.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/ColorProviding.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:515:26: warning: static property 'colorProvider' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        @objc public static var colorProvider: ColorProviding?
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:515:26: note: convert 'colorProvider' to a 'let' constant to make 'Sendable' shared state immutable
        @objc public static var colorProvider: ColorProviding?
                            ~~~ ^
                            let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:515:26: note: add '@MainActor' to make static property 'colorProvider' part of global actor 'MainActor'
        @objc public static var colorProvider: ColorProviding?
                                ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:515:26: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        @objc public static var colorProvider: ColorProviding?
                                ^
              nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:518:21: warning: static property '_primary' 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 _primary: NSColor = Colors.Palette.communicationBlue.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:518:21: note: convert '_primary' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primary: NSColor = Colors.Palette.communicationBlue.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:518:21: note: add '@MainActor' to make static property '_primary' part of global actor 'MainActor'
        private static var _primary: NSColor = Colors.Palette.communicationBlue.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:518:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primary: NSColor = Colors.Palette.communicationBlue.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:519:21: warning: static property '_primaryShade10' 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 _primaryShade10: NSColor = Colors.Palette.communicationBlueShade10.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:519:21: note: convert '_primaryShade10' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryShade10: NSColor = Colors.Palette.communicationBlueShade10.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:519:21: note: add '@MainActor' to make static property '_primaryShade10' part of global actor 'MainActor'
        private static var _primaryShade10: NSColor = Colors.Palette.communicationBlueShade10.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:519:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryShade10: NSColor = Colors.Palette.communicationBlueShade10.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:520:21: warning: static property '_primaryShade20' 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 _primaryShade20: NSColor = Colors.Palette.communicationBlueShade20.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:520:21: note: convert '_primaryShade20' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryShade20: NSColor = Colors.Palette.communicationBlueShade20.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:520:21: note: add '@MainActor' to make static property '_primaryShade20' part of global actor 'MainActor'
        private static var _primaryShade20: NSColor = Colors.Palette.communicationBlueShade20.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:520:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryShade20: NSColor = Colors.Palette.communicationBlueShade20.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:521:21: warning: static property '_primaryShade30' 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 _primaryShade30: NSColor = Colors.Palette.communicationBlueShade30.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:521:21: note: convert '_primaryShade30' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryShade30: NSColor = Colors.Palette.communicationBlueShade30.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:521:21: note: add '@MainActor' to make static property '_primaryShade30' part of global actor 'MainActor'
        private static var _primaryShade30: NSColor = Colors.Palette.communicationBlueShade30.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:521:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryShade30: NSColor = Colors.Palette.communicationBlueShade30.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:522:21: warning: static property '_primaryTint10' 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 _primaryTint10: NSColor = Colors.Palette.communicationBlueTint10.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:522:21: note: convert '_primaryTint10' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryTint10: NSColor = Colors.Palette.communicationBlueTint10.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:522:21: note: add '@MainActor' to make static property '_primaryTint10' part of global actor 'MainActor'
        private static var _primaryTint10: NSColor = Colors.Palette.communicationBlueTint10.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:522:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryTint10: NSColor = Colors.Palette.communicationBlueTint10.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:523:21: warning: static property '_primaryTint20' 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 _primaryTint20: NSColor = Colors.Palette.communicationBlueTint20.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:523:21: note: convert '_primaryTint20' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryTint20: NSColor = Colors.Palette.communicationBlueTint20.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:523:21: note: add '@MainActor' to make static property '_primaryTint20' part of global actor 'MainActor'
        private static var _primaryTint20: NSColor = Colors.Palette.communicationBlueTint20.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:523:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryTint20: NSColor = Colors.Palette.communicationBlueTint20.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:524:21: warning: static property '_primaryTint30' 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 _primaryTint30: NSColor = Colors.Palette.communicationBlueTint30.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:524:21: note: convert '_primaryTint30' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryTint30: NSColor = Colors.Palette.communicationBlueTint30.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:524:21: note: add '@MainActor' to make static property '_primaryTint30' part of global actor 'MainActor'
        private static var _primaryTint30: NSColor = Colors.Palette.communicationBlueTint30.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:524:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryTint30: NSColor = Colors.Palette.communicationBlueTint30.color
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:525:21: warning: static property '_primaryTint40' 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 _primaryTint40: NSColor = Colors.Palette.communicationBlueTint40.color
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:525:21: note: convert '_primaryTint40' to a 'let' constant to make 'Sendable' shared state immutable
        private static var _primaryTint40: NSColor = Colors.Palette.communicationBlueTint40.color
                       ~~~ ^
                       let
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:525:21: note: add '@MainActor' to make static property '_primaryTint40' part of global actor 'MainActor'
        private static var _primaryTint40: NSColor = Colors.Palette.communicationBlueTint40.color
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Colors.swift:525:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static var _primaryTint40: NSColor = Colors.Palette.communicationBlueTint40.color
                           ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/ControlHostingView.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for FluentUI_macos (in target 'FluentUI_macos' from project 'FluentUI')
SwiftDriver\ Compilation\ Requirements FluentUI_macos normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FluentUI_macos' from project 'FluentUI')
    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 FluentUI_macos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos-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/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.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/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling TokenSet.swift, TokenizedControl.swift (in target 'FluentUI_common' from project 'FluentUI')
SwiftCompile normal arm64 Compiling\ LegacyDynamicColor.swift,\ FluentUI_macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/FluentUI_macOS.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/FluentUI_macos-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos-Swift.h (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/FluentUI_macos-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling GlobalTokens.swift, LinearGradientInfo.swift, ShadowInfo.swift (in target 'FluentUI_common' from project 'FluentUI')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.swiftmodule (in target 'FluentUI_macos' from project 'FluentUI')
    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/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.swiftdoc (in target 'FluentUI_macos' from project 'FluentUI')
    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/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.abi.json (in target 'FluentUI_macos' from project 'FluentUI')
    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/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.swiftsourceinfo (in target 'FluentUI_macos' from project 'FluentUI')
    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/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ MultilinePillPickerView.swift,\ NotificationBarView.swift,\ Separator.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/MultilinePillPicker/MultilinePillPickerView.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Notification/NotificationBarView.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Separator/Separator.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/MultilinePillPicker/MultilinePillPickerView.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Notification/NotificationBarView.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Separator/Separator.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ CalendarView.swift,\ DatePickerController.swift,\ DatePickerView.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarView.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarView.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:321:7: warning: main actor-isolated instance method 'datePicker(_:didSelectDate:)' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePicker(_ datePicker: DatePickerView, didSelectDate date: Date) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:321:7: note: add 'nonisolated' to 'datePicker(_:didSelectDate:)' to make this instance method not isolated to the actor
        func datePicker(_ datePicker: DatePickerView, didSelectDate date: Date) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:304:33: note: add '@preconcurrency' to the 'DatePickerViewDelegate' conformance to defer isolation checking to run time
extension DatePickerController: DatePickerViewDelegate {
                                ^
                                @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:420:7: note: mark the protocol requirement 'datePicker(_:didSelectDate:)' 'async' to allow actor-isolated conformances
        func datePicker(_ datePicker: DatePickerView, didSelectDate date: Date)
             ^
                                                                                async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:330:7: warning: main actor-isolated instance method 'datePicker(_:didSelectDateTime:)' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePicker(_ datePicker: DatePickerView, didSelectDateTime date: Date) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:330:7: note: add 'nonisolated' to 'datePicker(_:didSelectDateTime:)' to make this instance method not isolated to the actor
        func datePicker(_ datePicker: DatePickerView, didSelectDateTime date: Date) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:427:7: note: mark the protocol requirement 'datePicker(_:didSelectDateTime:)' 'async' to allow actor-isolated conformances
        func datePicker(_ datePicker: DatePickerView, didSelectDateTime date: Date)
             ^
                                                                                    async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:338:7: warning: main actor-isolated instance method 'datePickerDidPressNext' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePickerDidPressNext(_ datePicker: DatePickerView) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:338:7: note: add 'nonisolated' to 'datePickerDidPressNext' to make this instance method not isolated to the actor
        func datePickerDidPressNext(_ datePicker: DatePickerView) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:433:7: note: mark the protocol requirement 'datePickerDidPressNext' 'async' to allow actor-isolated conformances
        func datePickerDidPressNext(_ datePicker: DatePickerView)
             ^
                                                                  async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:346:7: warning: main actor-isolated instance method 'datePickerDidPressPrevious' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePickerDidPressPrevious(_ datePicker: DatePickerView) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:346:7: note: add 'nonisolated' to 'datePickerDidPressPrevious' to make this instance method not isolated to the actor
        func datePickerDidPressPrevious(_ datePicker: DatePickerView) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:439:7: note: mark the protocol requirement 'datePickerDidPressPrevious' 'async' to allow actor-isolated conformances
        func datePickerDidPressPrevious(_ datePicker: DatePickerView)
             ^
                                                                      async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:312:7: warning: main actor-isolated instance method 'datePicker(_:shouldHighlightButton:)' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDelegate'; this is an error in the Swift 6 language mode
        func datePicker(_ datePicker: DatePickerView, shouldHighlightButton button: CalendarDayButton) -> Bool {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:312:7: note: add 'nonisolated' to 'datePicker(_:shouldHighlightButton:)' to make this instance method not isolated to the actor
        func datePicker(_ datePicker: DatePickerView, shouldHighlightButton button: CalendarDayButton) -> Bool {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:447:7: note: mark the protocol requirement 'datePicker(_:shouldHighlightButton:)' 'async' to allow actor-isolated conformances
        func datePicker(_ datePicker: DatePickerView, shouldHighlightButton button: CalendarDayButton) -> Bool
             ^
                                                                                                       async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:101:6: warning: main actor-isolated property 'selectedDate' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        var selectedDate: Date {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:373:33: note: add '@preconcurrency' to the 'DatePickerViewDataSource' conformance to defer isolation checking to run time
extension DatePickerController: DatePickerViewDataSource {
                                ^
                                @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:469:6: note: requirement 'selectedDate' declared here
        var selectedDate: Date { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:142:19: warning: main actor-isolated property 'selectedDateTime' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        private(set) var selectedDateTime: Date
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:472:6: note: requirement 'selectedDateTime' declared here
        var selectedDateTime: Date { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:145:19: warning: main actor-isolated property 'visibleRange' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        private(set) var visibleRange: (first: Date, last: Date) {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:475:6: note: requirement 'visibleRange' declared here
        var visibleRange: (first: Date, last: Date) { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:106:6: warning: main actor-isolated property 'paddedDays' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        var paddedDays: PaddedCalendarDays {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:478:6: note: requirement 'paddedDays' declared here
        var paddedDays: PaddedCalendarDays { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:376:6: warning: main actor-isolated property 'shortWeekdays' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        var shortWeekdays: [String] {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:484:6: note: requirement 'shortWeekdays' declared here
        var shortWeekdays: [String] { get }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerController.swift:382:6: warning: main actor-isolated property 'longWeekdays' cannot be used to satisfy nonisolated requirement from protocol 'DatePickerViewDataSource'; this is an error in the Swift 6 language mode
        var longWeekdays: [String] {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:487:6: note: requirement 'longWeekdays' declared here
        var longWeekdays: [String] { get }
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:360:7: warning: main actor-isolated instance method 'calendarView(_:didSelectDate:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarViewDelegate'; this is an error in the Swift 6 language mode
        func calendarView(_ calendarView: CalendarView, didSelectDate date: Date) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:360:7: note: add 'nonisolated' to 'calendarView(_:didSelectDate:)' to make this instance method not isolated to the actor
        func calendarView(_ calendarView: CalendarView, didSelectDate date: Date) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:353:27: note: add '@preconcurrency' to the 'CalendarViewDelegate' conformance to defer isolation checking to run time
extension DatePickerView: CalendarViewDelegate {
                          ^
                          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarView.swift:149:7: note: mark the protocol requirement 'calendarView(_:didSelectDate:)' 'async' to allow actor-isolated conformances
        func calendarView(_ calendarView: CalendarView, didSelectDate date: Date)
             ^
                                                                                  async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:376:7: warning: main actor-isolated instance method 'calendarHeaderView(_:didPressLeading:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarHeaderViewDelegate'; this is an error in the Swift 6 language mode
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressLeading button: NSButton) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:376:7: note: add 'nonisolated' to 'calendarHeaderView(_:didPressLeading:)' to make this instance method not isolated to the actor
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressLeading button: NSButton) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:369:27: note: add '@preconcurrency' to the 'CalendarHeaderViewDelegate' conformance to defer isolation checking to run time
extension DatePickerView: CalendarHeaderViewDelegate {
                          ^
                          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:207:7: note: mark the protocol requirement 'calendarHeaderView(_:didPressLeading:)' 'async' to allow actor-isolated conformances
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressLeading button: NSButton)
             ^
                                                                                                        async
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:391:7: warning: main actor-isolated instance method 'calendarHeaderView(_:didPressTrailing:)' cannot be used to satisfy nonisolated requirement from protocol 'CalendarHeaderViewDelegate'; this is an error in the Swift 6 language mode
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressTrailing button: NSButton) {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/DatePickerView.swift:391:7: note: add 'nonisolated' to 'calendarHeaderView(_:didPressTrailing:)' to make this instance method not isolated to the actor
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressTrailing button: NSButton) {
             ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:214:7: note: mark the protocol requirement 'calendarHeaderView(_:didPressTrailing:)' 'async' to allow actor-isolated conformances
        func calendarHeaderView(_ calendarHeader: CalendarHeaderView, didPressTrailing button: NSButton)
             ^
                                                                                                         async
SwiftDriverJobDiscovery normal arm64 Compiling View+Modifiers.swift, FluentTheme+Tokens.swift, FluentTheme+iOS.swift (in target 'FluentUI_common' from project 'FluentUI')
SwiftCompile normal arm64 Compiling\ Apperance+Theme.swift,\ NSFont+Extensions.swift,\ FluentUIResources.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Extensions/Apperance+Theme.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Extensions/NSFont+Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/FluentUIResources.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Extensions/Apperance+Theme.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/Extensions/NSFont+Extensions.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/FluentUIResources.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling TokenizedControlView.swift, AnimationSynchronizer.swift (in target 'FluentUI_common' from project 'FluentUI')
SwiftCompile normal arm64 Compiling\ ShadowInfo+AppKit.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Theme/Tokens/ShadowInfo+AppKit.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Theme/Tokens/ShadowInfo+AppKit.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling DynamicColor.swift, EmptyTokenSet.swift, FontInfo.swift (in target 'FluentUI_common' from project 'FluentUI')
SwiftCompile normal arm64 Compiling\ Button.swift,\ CalendarDayButton.swift,\ CalendarHeaderView.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Button/Button.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarDayButton.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Button/Button.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Button/Button.swift:121:10: warning: main actor-isolated property 'increaseContrastEnabled' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                        self?.increaseContrastEnabled = NSWorkspace.shared.accessibilityDisplayShouldIncreaseContrast
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Button/Button.swift:629:14: note: mutation of this property is only permitted within the actor
        private var increaseContrastEnabled: Bool = NSWorkspace.shared.accessibilityDisplayShouldIncreaseContrast {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Button/Button.swift:340:11: warning: main actor-isolated property 'isWindowInactive' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                self?.isWindowInactive = true
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Button/Button.swift:617:14: note: mutation of this property is only permitted within the actor
        private var isWindowInactive: Bool = false {
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Button/Button.swift:346:11: warning: main actor-isolated property 'isWindowInactive' can not be mutated from a Sendable closure; this is an error in the Swift 6 language mode
                                self?.isWindowInactive = false
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Button/Button.swift:617:14: note: mutation of this property is only permitted within the actor
        private var isWindowInactive: Bool = false {
                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarDayButton.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:64:16: warning: main actor-isolated instance method 'accessibilityLabel()' cannot be used to satisfy nonisolated requirement from protocol 'NSAccessibilityStepper'; this is an error in the Swift 6 language mode
        override func accessibilityLabel() -> String? {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:64:16: note: add 'nonisolated' to 'accessibilityLabel()' to make this instance method not isolated to the actor
        override func accessibilityLabel() -> String? {
                      ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:34:55: note: add '@preconcurrency' to the 'NSAccessibilityStepper' conformance to defer isolation checking to run time
class AccessibleCalendarHeaderStackView: NSStackView, NSAccessibilityStepper {
                                                      ^
                                                      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:56:16: warning: main actor-isolated instance method 'accessibilityPerformIncrement()' cannot be used to satisfy nonisolated requirement from protocol 'NSAccessibilityStepper'; this is an error in the Swift 6 language mode
        override func accessibilityPerformIncrement() -> Bool {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:56:16: note: add 'nonisolated' to 'accessibilityPerformIncrement()' to make this instance method not isolated to the actor
        override func accessibilityPerformIncrement() -> Bool {
                      ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:60:16: warning: main actor-isolated instance method 'accessibilityPerformDecrement()' cannot be used to satisfy nonisolated requirement from protocol 'NSAccessibilityStepper'; this is an error in the Swift 6 language mode
        override func accessibilityPerformDecrement() -> Bool {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:60:16: note: add 'nonisolated' to 'accessibilityPerformDecrement()' to make this instance method not isolated to the actor
        override func accessibilityPerformDecrement() -> Bool {
                      ^
        nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:68:16: warning: main actor-isolated instance method 'accessibilityValue()' cannot be used to satisfy nonisolated requirement from protocol 'NSAccessibilityStepper'; this is an error in the Swift 6 language mode
        override func accessibilityValue() -> Any? {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/DatePicker/CalendarHeaderView.swift:68:16: note: add 'nonisolated' to 'accessibilityValue()' to make this instance method not isolated to the actor
        override func accessibilityValue() -> Any? {
                      ^
        nonisolated
SwiftDriverJobDiscovery normal arm64 Compiling Color+Extensions.swift, NSColor+Extensions.swift, UIColor+Extensions.swift (in target 'FluentUI_common' from project 'FluentUI')
SwiftCompile normal arm64 Compiling\ FluentTheme+AppKit.swift,\ GlobalTokens+AppKit.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Theme/FluentTheme+AppKit.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Theme/Tokens/GlobalTokens+AppKit.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Theme/FluentTheme+AppKit.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Theme/Tokens/GlobalTokens+AppKit.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ColorProviding.swift, Colors.swift, ControlHostingView.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ AvatarView.swift,\ BadgeView.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/AvatarView/AvatarView.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/DerivedSources/resource_bundle_accessor.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/AvatarView/AvatarView.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/AvatarView/AvatarView.swift:565:15: warning: call to main actor-isolated instance method 'updateAppearance' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        strongSelf.updateAppearance(window.effectiveAppearance)
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/AvatarView/AvatarView.swift:355:15: note: calls to instance method 'updateAppearance' from outside of its actor context are implicitly asynchronous
        private func updateAppearance(_ appearance: NSAppearance? = nil) {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/AvatarView/AvatarView.swift:355:15: note: main actor isolation inferred from inheritance from class 'NSView'
        private func updateAppearance(_ appearance: NSAppearance? = nil) {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/AvatarView/AvatarView.swift:565:39: warning: main actor-isolated property 'effectiveAppearance' can not be referenced from a Sendable closure; this is an error in the Swift 6 language mode
                        strongSelf.updateAppearance(window.effectiveAppearance)
                                                           ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSAppearance.h:90:44: note: property declared here
@property (readonly, strong) NSAppearance *effectiveAppearance API_AVAILABLE(macos(10.9));
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/AvatarView/AvatarView.swift:584:37: warning: main actor-isolated static property 'fontSizeScalingDefault' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return floor(diameter * AvatarView.fontSizeScalingDefault * 2) / 2
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/AvatarView/AvatarView.swift:441:13: note: static property declared here
        static let fontSizeScalingDefault: CGFloat = 0.4
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/AvatarView/AvatarView.swift:583:14: note: add '@MainActor' to make global function 'fontSize(forCircleDiameter:)' part of global actor 'MainActor'
private func fontSize(forCircleDiameter diameter: CGFloat) -> CGFloat {
             ^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:147:14: warning: static property 'defaultBackgroundColor' is not concurrency-safe because non-'Sendable' type 'LegacyDynamicColor' may have shared mutable state; this is an error in the Swift 6 language mode
                static let defaultBackgroundColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueTint40.color, dark: Colors.Palette.communicationBlueTint30.color)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift:22:14: note: class 'LegacyDynamicColor' does not conform to the 'Sendable' protocol
public class LegacyDynamicColor: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:147:14: note: add '@MainActor' to make static property 'defaultBackgroundColor' part of global actor 'MainActor'
                static let defaultBackgroundColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueTint40.color, dark: Colors.Palette.communicationBlueTint30.color)
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:147:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let defaultBackgroundColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueTint40.color, dark: Colors.Palette.communicationBlueTint30.color)
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:148:14: warning: static property 'defaultTextColor' is not concurrency-safe because non-'Sendable' type 'LegacyDynamicColor' may have shared mutable state; this is an error in the Swift 6 language mode
                static let defaultTextColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueShade20.color, dark: Colors.Palette.communicationBlueShade20.color)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift:22:14: note: class 'LegacyDynamicColor' does not conform to the 'Sendable' protocol
public class LegacyDynamicColor: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:148:14: note: add '@MainActor' to make static property 'defaultTextColor' part of global actor 'MainActor'
                static let defaultTextColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueShade20.color, dark: Colors.Palette.communicationBlueShade20.color)
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:148:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let defaultTextColor: LegacyDynamicColor = .init(light: Colors.Palette.communicationBlueShade20.color, dark: Colors.Palette.communicationBlueShade20.color)
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:150:14: warning: static property 'primaryBackgroundColor' is not concurrency-safe because non-'Sendable' type 'LegacyDynamicColor' may have shared mutable state; this is an error in the Swift 6 language mode
                static let primaryBackgroundColor: LegacyDynamicColor = .init(light: Colors.primaryTint40, dark: Colors.primaryTint30)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift:22:14: note: class 'LegacyDynamicColor' does not conform to the 'Sendable' protocol
public class LegacyDynamicColor: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:150:14: note: add '@MainActor' to make static property 'primaryBackgroundColor' part of global actor 'MainActor'
                static let primaryBackgroundColor: LegacyDynamicColor = .init(light: Colors.primaryTint40, dark: Colors.primaryTint30)
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:150:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let primaryBackgroundColor: LegacyDynamicColor = .init(light: Colors.primaryTint40, dark: Colors.primaryTint30)
                           ^
                nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:151:14: warning: static property 'primaryTextColor' is not concurrency-safe because non-'Sendable' type 'LegacyDynamicColor' may have shared mutable state; this is an error in the Swift 6 language mode
                static let primaryTextColor: LegacyDynamicColor = .init(light: Colors.primary, dark: Colors.primaryShade20)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Core/LegacyDynamicColor.swift:22:14: note: class 'LegacyDynamicColor' does not conform to the 'Sendable' protocol
public class LegacyDynamicColor: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:151:14: note: add '@MainActor' to make static property 'primaryTextColor' part of global actor 'MainActor'
                static let primaryTextColor: LegacyDynamicColor = .init(light: Colors.primary, dark: Colors.primaryShade20)
                           ^
                @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Badge/BadgeView.swift:151:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
                static let primaryTextColor: LegacyDynamicColor = .init(light: Colors.primary, dark: Colors.primaryShade20)
                           ^
                nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling FluentTheme+macOS.swift, FontInfo+macOS.swift, GlobalTokens+macOS.swift (in target 'FluentUI_common' from project 'FluentUI')
SwiftCompile normal arm64 Compiling\ FilledTemplateImageView.swift,\ Link.swift,\ MultilinePillPicker.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/FilledTemplateImageView/FilledTemplateImageView.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/MultilinePillPicker/MultilinePillPicker.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/FilledTemplateImageView/FilledTemplateImageView.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:152:13: warning: let 'linkAttributes' is not concurrency-safe because non-'Sendable' type '[NSAttributedString.Key : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
private let linkAttributes: [NSAttributedString.Key: Any] = [:]
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:152:13: note: add '@MainActor' to make let 'linkAttributes' part of global actor 'MainActor'
private let linkAttributes: [NSAttributedString.Key: Any] = [:]
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:152:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let linkAttributes: [NSAttributedString.Key: Any] = [:]
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:154:13: warning: let 'underlinedLinkAttributes' is not concurrency-safe because non-'Sendable' type '[NSAttributedString.Key : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
private let underlinedLinkAttributes: [NSAttributedString.Key: Any] = [
            ^
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:154:13: note: add '@MainActor' to make let 'underlinedLinkAttributes' part of global actor 'MainActor'
private let underlinedLinkAttributes: [NSAttributedString.Key: Any] = [
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/Link/Link.swift:154:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let underlinedLinkAttributes: [NSAttributedString.Key: Any] = [
            ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Components/MultilinePillPicker/MultilinePillPicker.swift (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling PlatformGlobalTokensProviding.swift, PlatformThemeProviding.swift, ControlTokenSet.swift (in target 'FluentUI_common' from project 'FluentUI')
SwiftDriverJobDiscovery normal arm64 Compiling FluentTheme.swift, FluentThemeable.swift, PlatformFontInfoProviding.swift (in target 'FluentUI_common' from project 'FluentUI')
SwiftDriver\ Compilation FluentUI_common normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FluentUI_common' from project 'FluentUI')
    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 FluentUI_common -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common-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/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.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/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common-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/FluentUI_common.o normal (in target 'FluentUI_common' from project 'FluentUI')
    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-macos14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_common.o
ExtractAppIntentsMetadata (in target 'FluentUI_common' from project 'FluentUI')
    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 FluentUI_common --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.FluentUI-common --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_common.appintents --target-triple arm64-apple-macos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_common.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/FluentUI_common.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/FluentUI_common.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_common.build/Objects-normal/arm64/FluentUI_common.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-10-24 17:21:59.067 appintentsmetadataprocessor[798:4504] Starting appintentsmetadataprocessor export
2025-10-24 17:21:59.117 appintentsmetadataprocessor[798:4504] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling LegacyDynamicColor.swift, FluentUI_macOS.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftDriver FluentUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FluentUI' from project 'FluentUI')
    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 FluentUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI-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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ FluentUI (in target 'FluentUI' from project 'FluentUI')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FluentUI/FluentUI.swift (in target 'FluentUI' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftDriverJobDiscovery normal arm64 Compiling FluentTheme+AppKit.swift, GlobalTokens+AppKit.swift (in target 'FluentUI_macos' from project 'FluentUI')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_common.o (in target 'FluentUI_common' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_common.o
SwiftDriverJobDiscovery normal arm64 Emitting module for FluentUI (in target 'FluentUI' from project 'FluentUI')
SwiftDriver\ Compilation\ Requirements FluentUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FluentUI' from project 'FluentUI')
    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 FluentUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI-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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/FluentUI-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI-Swift.h (in target 'FluentUI' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/FluentUI-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftmodule (in target 'FluentUI' from project 'FluentUI')
    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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftdoc (in target 'FluentUI' from project 'FluentUI')
    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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.abi.json (in target 'FluentUI' from project 'FluentUI')
    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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftsourceinfo (in target 'FluentUI' from project 'FluentUI')
    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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Apperance+Theme.swift, NSFont+Extensions.swift, FluentUIResources.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftDriverJobDiscovery normal arm64 Compiling FluentUI.swift (in target 'FluentUI' from project 'FluentUI')
SwiftDriver\ Compilation FluentUI normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FluentUI' from project 'FluentUI')
    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 FluentUI -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -parse-as-library -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI-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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.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/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ShadowInfo+AppKit.swift, GeneratedAssetSymbols.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftDriverJobDiscovery normal arm64 Compiling FilledTemplateImageView.swift, Link.swift, MultilinePillPicker.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftDriverJobDiscovery normal arm64 Compiling MultilinePillPickerView.swift, NotificationBarView.swift, Separator.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftDriverJobDiscovery normal arm64 Compiling CalendarView.swift, DatePickerController.swift, DatePickerView.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftDriverJobDiscovery normal arm64 Compiling Button.swift, CalendarDayButton.swift, CalendarHeaderView.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, AvatarView.swift, BadgeView.swift (in target 'FluentUI_macos' from project 'FluentUI')
SwiftDriver\ Compilation FluentUI_macos normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FluentUI_macos' from project 'FluentUI')
    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 FluentUI_macos -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.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/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -emit-localized-strings -emit-localized-strings-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos-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/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.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/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos-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/FluentUI_macos.o normal (in target 'FluentUI_macos' from project 'FluentUI')
    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-macos14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.o
ExtractAppIntentsMetadata (in target 'FluentUI_macos' from project 'FluentUI')
    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 FluentUI_macos --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.FluentUI-macos --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.appintents --target-triple arm64-apple-macos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/FluentUI_macos.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/FluentUI_macos.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI_macos.build/Objects-normal/arm64/FluentUI_macos.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-10-24 17:22:00.345 appintentsmetadataprocessor[803:4556] Starting appintentsmetadataprocessor export
2025-10-24 17:22:00.380 appintentsmetadataprocessor[803:4556] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.o (in target 'FluentUI_macos' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI_macos.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.o normal (in target 'FluentUI' from project 'FluentUI')
    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-macos14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.o
ExtractAppIntentsMetadata (in target 'FluentUI' from project 'FluentUI')
    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 FluentUI --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.FluentUI --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.appintents --target-triple arm64-apple-macos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/FluentUI.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/FluentUI.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FluentUI.build/Debug/FluentUI.build/Objects-normal/arm64/FluentUI.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-10-24 17:22:00.425 appintentsmetadataprocessor[806:4572] Starting appintentsmetadataprocessor export
2025-10-24 17:22:00.459 appintentsmetadataprocessor[806:4572] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.o (in target 'FluentUI' from project 'FluentUI')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FluentUI.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:1bcf96b448c12dc9ce597c147008272f5809daab, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:1bcf96b448c12dc9ce597c147008272f5809daab, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:1bcf96b448c12dc9ce597c147008272f5809daab, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:1bcf96b448c12dc9ce597c147008272f5809daab, name:My Mac }
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
  ],
  "manifest_display_name" : "FluentUI",
  "name" : "FluentUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "FluentUI",
      "targets" : [
        "FluentUI"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FluentUI_macos",
      "module_type" : "SwiftTarget",
      "name" : "FluentUI_macos",
      "path" : "Sources/FluentUI_macOS",
      "product_memberships" : [
        "FluentUI"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/ar.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "ar"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/ca.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "ca"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/cs.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "cs"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/da.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "da"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/de.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "de"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/el.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "el"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/en-GB.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "en-gb"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/en.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/es-MX.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "es-mx"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/es.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "es"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/fi.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "fi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/fr.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "fr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/he.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "he"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/hi.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "hi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/hr.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "hr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/hu.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "hu"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/id.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "id"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/it.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "it"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/ja.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "ja"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/ko.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "ko"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/ms.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "ms"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/nb-NO.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "nb-no"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/nl.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "nl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/pl.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "pl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/pt-BR.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "pt-br"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/pt-PT.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "pt-pt"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/ro.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "ro"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/ru.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "ru"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/sk.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "sk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/sv.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "sv"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/th.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "th"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/tr.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "tr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/uk.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "uk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/vi.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "vi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/zh-Hans.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "zh-hans"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_macOS/Resources/Strings/zh-Hant.lproj/FluentUI.strings",
          "rule" : {
            "process" : {
              "localization" : "zh-hant"
            }
          }
        }
      ],
      "sources" : [
        "Components/AvatarView/AvatarView.swift",
        "Components/Badge/BadgeView.swift",
        "Components/Button/Button.swift",
        "Components/DatePicker/CalendarDayButton.swift",
        "Components/DatePicker/CalendarHeaderView.swift",
        "Components/DatePicker/CalendarView.swift",
        "Components/DatePicker/DatePickerController.swift",
        "Components/DatePicker/DatePickerView.swift",
        "Components/FilledTemplateImageView/FilledTemplateImageView.swift",
        "Components/Link/Link.swift",
        "Components/MultilinePillPicker/MultilinePillPicker.swift",
        "Components/MultilinePillPicker/MultilinePillPickerView.swift",
        "Components/Notification/NotificationBarView.swift",
        "Components/Separator/Separator.swift",
        "Core/ColorProviding.swift",
        "Core/Colors.swift",
        "Core/ControlHostingView.swift",
        "Core/Extensions/Apperance+Theme.swift",
        "Core/Extensions/NSFont+Extensions.swift",
        "Core/FluentUIResources.swift",
        "Core/LegacyDynamicColor.swift",
        "FluentUI_macOS.swift",
        "Theme/FluentTheme+AppKit.swift",
        "Theme/Tokens/GlobalTokens+AppKit.swift",
        "Theme/Tokens/ShadowInfo+AppKit.swift"
      ],
      "target_dependencies" : [
        "FluentUI_common"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FluentUI_macOS_Tests",
      "module_type" : "SwiftTarget",
      "name" : "FluentUI_macOS_Tests",
      "path" : "Tests/FluentUI_macOS_Tests",
      "sources" : [
        "AvatarViewTests.swift",
        "DatePickerControllerTests.swift"
      ],
      "target_dependencies" : [
        "FluentUI_macos"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FluentUI_ios",
      "module_type" : "SwiftTarget",
      "name" : "FluentUI_ios",
      "path" : "Sources/FluentUI_iOS",
      "product_memberships" : [
        "FluentUI"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ar.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ar"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ar.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "ar"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ca.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ca"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ca.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "ca"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/cs.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "cs"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/cs.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "cs"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/da.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "da"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/da.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "da"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/de.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "de"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/de.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "de"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/el.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "el"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/el.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "el"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/en-GB.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en-gb"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/en-GB.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "en-gb"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/en.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/es-MX.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "es-mx"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/es-MX.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "es-mx"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/es.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "es"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/es.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "es"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/fi.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "fi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/fi.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "fi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/fr.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "fr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/fr.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "fr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/he.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "he"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/he.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "he"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/hi.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "hi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/hi.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "hi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/hr.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "hr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/hr.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "hr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/hu.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "hu"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/hu.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "hu"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/id.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "id"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/id.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "id"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/it.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "it"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/it.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "it"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ja.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ja"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ja.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "ja"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ko.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ko"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ko.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "ko"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ms.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ms"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ms.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "ms"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/nb-NO.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "nb-no"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/nb-NO.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "nb-no"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/nl.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "nl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/nl.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "nl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/pl.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "pl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/pl.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "pl"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/pt-BR.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "pt-br"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/pt-BR.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "pt-br"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/pt-PT.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "pt-pt"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/pt-PT.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "pt-pt"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ro.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ro"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ro.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "ro"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ru.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "ru"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/ru.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "ru"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/sk.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "sk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/sk.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "sk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/sv.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "sv"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/sv.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "sv"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/th.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "th"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/th.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "th"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/tr.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "tr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/tr.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "tr"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/uk.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "uk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/uk.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "uk"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/vi.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "vi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/vi.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "vi"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/zh-Hans.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "zh-hans"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/zh-Hans.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "zh-hans"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/zh-Hant.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "zh-hant"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Localization/zh-Hant.lproj/Localizable.stringsdict",
          "rule" : {
            "process" : {
              "localization" : "zh-hant"
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/FluentUI_iOS/Resources/Version.plist",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Components/ActivityIndicator/ActivityIndicator.swift",
        "Components/ActivityIndicator/ActivityIndicatorModifiers.swift",
        "Components/ActivityIndicator/ActivityIndicatorTokenSet.swift",
        "Components/ActivityIndicator/MSFActivityIndicator.swift",
        "Components/Avatar/Avatar.swift",
        "Components/Avatar/AvatarModifiers.swift",
        "Components/Avatar/AvatarTokenSet.swift",
        "Components/Avatar/MSFAvatar.swift",
        "Components/Avatar/MSFAvatarPresence.swift",
        "Components/Avatar/Persona.swift",
        "Components/AvatarGroup/AvatarGroup.swift",
        "Components/AvatarGroup/AvatarGroupModifiers.swift",
        "Components/AvatarGroup/AvatarGroupTokenSet.swift",
        "Components/AvatarGroup/MSFAvatarGroup.swift",
        "Components/BadgeField/BadgeField.swift",
        "Components/BadgeField/BadgeFieldTokenSet.swift",
        "Components/BadgeField/BadgeStringExtractor.swift",
        "Components/BadgeField/BadgeView.swift",
        "Components/BadgeField/BadgeViewTokenSet.swift",
        "Components/BarButtonItems/BarButtonItems.swift",
        "Components/BottomCommanding/BottomCommandingController.swift",
        "Components/BottomCommanding/BottomCommandingTokenSet.swift",
        "Components/BottomCommanding/CommandingItem.swift",
        "Components/BottomCommanding/CommandingSection.swift",
        "Components/BottomSheet/BottomSheetController.swift",
        "Components/BottomSheet/BottomSheetPassthroughView.swift",
        "Components/BottomSheet/BottomSheetTokenSet.swift",
        "Components/BottomSheet/ContentHeightResolutionContext.swift",
        "Components/Button/Button.swift",
        "Components/Button/ButtonTokenSet.swift",
        "Components/Button/FluentButtonStyle.swift",
        "Components/Button/FluentButtonToggleStyle.swift",
        "Components/Calendar/AccessibilityContainerView.swift",
        "Components/Calendar/AccessibleViewDelegate.swift",
        "Components/Calendar/Calendar+Extensions.swift",
        "Components/Calendar/CalendarConfiguration.swift",
        "Components/Calendar/CalendarView.swift",
        "Components/Calendar/CalendarViewDataSource.swift",
        "Components/Calendar/CalendarViewLayout.swift",
        "Components/Calendar/Views/CalendarViewDayCell.swift",
        "Components/Calendar/Views/CalendarViewDayMonthCell.swift",
        "Components/Calendar/Views/CalendarViewDayMonthYearCell.swift",
        "Components/Calendar/Views/CalendarViewDayTodayCell.swift",
        "Components/Calendar/Views/CalendarViewMonthBannerView.swift",
        "Components/Calendar/Views/CalendarViewWeekdayHeadingView.swift",
        "Components/Card/CardView.swift",
        "Components/CardNudge/CardNudge.swift",
        "Components/CardNudge/CardNudgeModifiers.swift",
        "Components/CardNudge/CardNudgeTokenSet.swift",
        "Components/CardNudge/MSFCardNudge.swift",
        "Components/CommandBar/CommandBar.swift",
        "Components/CommandBar/CommandBarButton.swift",
        "Components/CommandBar/CommandBarButtonGroupView.swift",
        "Components/CommandBar/CommandBarCommandGroupsView.swift",
        "Components/CommandBar/CommandBarItem.swift",
        "Components/CommandBar/CommandBarTokenSet.swift",
        "Components/DateTimePickers/Date+Extensions.swift",
        "Components/DateTimePickers/DateComponents+Extensions.swift",
        "Components/DateTimePickers/DatePicker/DatePickerController.swift",
        "Components/DateTimePickers/DatePicker/DatePickerSelectionManager.swift",
        "Components/DateTimePickers/DateTimePicker.swift",
        "Components/DateTimePickers/DateTimePicker/DateTimePickerController.swift",
        "Components/DateTimePickers/DateTimePicker/Views/DateTimePickerView.swift",
        "Components/DateTimePickers/DateTimePicker/Views/DateTimePickerViewComponent.swift",
        "Components/DateTimePickers/DateTimePicker/Views/DateTimePickerViewComponentCell.swift",
        "Components/DateTimePickers/DateTimePicker/Views/DateTimePickerViewComponentTableView.swift",
        "Components/DateTimePickers/DateTimePicker/Views/DateTimePickerViewDataSource.swift",
        "Components/DateTimePickers/DateTimePicker/Views/DateTimePickerViewLayout.swift",
        "Components/DateTimePickers/DayOfMonth.swift",
        "Components/DateTimePickers/GenericDateTimePicker.swift",
        "Components/DateTimePickers/String+Date.swift",
        "Components/DotView/DotView.swift",
        "Components/Drawer/CALayer+Extensions.swift",
        "Components/Drawer/DrawerController.swift",
        "Components/Drawer/DrawerPresentationController.swift",
        "Components/Drawer/DrawerShadowView.swift",
        "Components/Drawer/DrawerTokenSet.swift",
        "Components/Drawer/DrawerTransitionAnimator.swift",
        "Components/EasyTapButton/EasyTapButton.swift",
        "Components/HUD/HUD.swift",
        "Components/HUD/HUDModifiers.swift",
        "Components/HUD/HeadsUpDisplay.swift",
        "Components/HUD/HeadsUpDisplayTokenSet.swift",
        "Components/HUD/MSFHeadsUpDisplay.swift",
        "Components/IndeterminateProgressBar/IndeterminateProgressBar.swift",
        "Components/IndeterminateProgressBar/IndeterminateProgressBarModifiers.swift",
        "Components/IndeterminateProgressBar/IndeterminateProgressBarTokenSet.swift",
        "Components/IndeterminateProgressBar/MSFIndeterminateProgressBar.swift",
        "Components/Label/BadgeLabel.swift",
        "Components/Label/BadgeLabelTokenSet.swift",
        "Components/Label/Label.swift",
        "Components/Label/LabelTokenSet.swift",
        "Components/List/FluentList.swift",
        "Components/List/FluentListModifiers.swift",
        "Components/List/FluentListSection.swift",
        "Components/List/FluentListSectionFooter.swift",
        "Components/List/FluentListSectionHeader.swift",
        "Components/List/ListActionItem.swift",
        "Components/List/ListActionItemModifiers.swift",
        "Components/List/ListItem.swift",
        "Components/List/ListItemModifiers.swift",
        "Components/MultilineCommandBar/MultilineCommandBar.swift",
        "Components/Navigation/BadgeLabelButton.swift",
        "Components/Navigation/Helpers/ContentScrollViewTraits.swift",
        "Components/Navigation/Helpers/NavigationAnimator.swift",
        "Components/Navigation/NavigationBar.swift",
        "Components/Navigation/NavigationBarTokenSet.swift",
        "Components/Navigation/NavigationController.swift",
        "Components/Navigation/SearchBar/SearchBar.swift",
        "Components/Navigation/SearchBar/SearchBarTokenSet.swift",
        "Components/Navigation/Shy Header/ShyHeaderController.swift",
        "Components/Navigation/Shy Header/ShyHeaderView.swift",
        "Components/Navigation/TwoLineTitleView+Navigation.swift",
        "Components/Navigation/UIBarButtonItem+BadgeValue.swift",
        "Components/Navigation/UINavigationItem+Navigation.swift",
        "Components/Navigation/UIViewController+Navigation.swift",
        "Components/Navigation/Views/AvatarTitleView.swift",
        "Components/Navigation/Views/AvatarTitleViewTokenSet.swift",
        "Components/Notification/FluentNotification.swift",
        "Components/Notification/MSFNotification.swift",
        "Components/Notification/NotificationModifiers.swift",
        "Components/Notification/NotificationTokenSet.swift",
        "Components/Obscurable/BlurringView.swift",
        "Components/Obscurable/DimmingView.swift",
        "Components/Obscurable/Obscurable.swift",
        "Components/OtherCells/ActionsCell.swift",
        "Components/OtherCells/ActivityIndicatorCell.swift",
        "Components/OtherCells/BooleanCell.swift",
        "Components/OtherCells/CenteredLabelCell.swift",
        "Components/PeoplePicker/PeoplePicker.swift",
        "Components/PeoplePicker/PeoplePickerTokenSet.swift",
        "Components/PeoplePicker/PersonaBadgeViewDataSource.swift",
        "Components/PeoplePicker/PersonaCell.swift",
        "Components/PeoplePicker/PersonaListView.swift",
        "Components/PersonaButton/MSFPersonaButton.swift",
        "Components/PersonaButton/PersonaButton.swift",
        "Components/PersonaButton/PersonaButtonModifiers.swift",
        "Components/PersonaButton/PersonaButtonTokenSet.swift",
        "Components/PersonaButtonCarousel/MSFPersonaButtonCarousel.swift",
        "Components/PersonaButtonCarousel/PersonaButtonCarousel.swift",
        "Components/PersonaButtonCarousel/PersonaButtonCarouselModifiers.swift",
        "Components/PersonaButtonCarousel/PersonaButtonCarouselTokenSet.swift",
        "Components/PillButtonBar/PillButton.swift",
        "Components/PillButtonBar/PillButtonBar.swift",
        "Components/PillButtonBar/PillButtonTokenSet.swift",
        "Components/PillButtonBar/SwiftUI/FluentPillButtonStyle.swift",
        "Components/PillButtonBar/SwiftUI/PillButtonBarView.swift",
        "Components/PillButtonBar/SwiftUI/PillButtonViewModel.swift",
        "Components/PopupMenu/PopupMenuController.swift",
        "Components/PopupMenu/PopupMenuItem.swift",
        "Components/PopupMenu/PopupMenuItemCell.swift",
        "Components/PopupMenu/PopupMenuItemTokenSet.swift",
        "Components/PopupMenu/PopupMenuProtocols.swift",
        "Components/PopupMenu/PopupMenuSection.swift",
        "Components/PopupMenu/PopupMenuSectionHeaderView.swift",
        "Components/PopupMenu/PopupMenuTokenSet.swift",
        "Components/Presenters/CardPresentationController.swift",
        "Components/Presenters/CardPresenterNavigationController.swift",
        "Components/Presenters/CardTransitionAnimator.swift",
        "Components/Presenters/PageCardPresenterController.swift",
        "Components/ResizingHandleView/ResizingHandleTokenSet.swift",
        "Components/ResizingHandleView/ResizingHandleView.swift",
        "Components/SegmentedControl/SegmentItem.swift",
        "Components/SegmentedControl/SegmentPillButton.swift",
        "Components/SegmentedControl/SegmentedControl.swift",
        "Components/SegmentedControl/SegmentedControlTokenSet.swift",
        "Components/Separator/Separator.swift",
        "Components/Separator/SeparatorTokenSet.swift",
        "Components/Shimmer/ShimmerLinesView.swift",
        "Components/Shimmer/ShimmerTokenSet.swift",
        "Components/Shimmer/ShimmerView.swift",
        "Components/TabBar/SideTabBar.swift",
        "Components/TabBar/SideTabBarTokenSet.swift",
        "Components/TabBar/TabBarItem.swift",
        "Components/TabBar/TabBarItemTokenSet.swift",
        "Components/TabBar/TabBarItemView.swift",
        "Components/TabBar/TabBarTokenSet.swift",
        "Components/TabBar/TabBarView.swift",
        "Components/TableView/TableViewCell.swift",
        "Components/TableView/TableViewHeaderFooterView.swift",
        "Components/TableView/TableViewHeaderFooterViewTokenSet.swift",
        "Components/TableViewListShared/TableViewCellTokenSet.swift",
        "Components/TextField/FluentTextField.swift",
        "Components/TextField/FluentTextFieldInternal.swift",
        "Components/TextField/FluentTextInputError.swift",
        "Components/TextField/TextFieldTokenSet.swift",
        "Components/Tooltip/Tooltip.swift",
        "Components/Tooltip/TooltipModifiers.swift",
        "Components/Tooltip/TooltipTokenSet.swift",
        "Components/Tooltip/TooltipView.swift",
        "Components/Tooltip/TooltipViewController.swift",
        "Components/TouchForwardingView/TouchForwardingView.swift",
        "Components/TwoLineTitleView/TwoLineTitleView.swift",
        "Components/TwoLineTitleView/TwoLineTitleViewTokenSet.swift",
        "Core/ColorProviding.swift",
        "Core/Compatibility.swift",
        "Core/ControlHostingView.swift",
        "Core/Extensions/NSLayoutConstraint+Extensions.swift",
        "Core/Extensions/String+Extension.swift",
        "Core/Extensions/SwiftUI+ViewAnimation.swift",
        "Core/Extensions/SwiftUI+ViewModifiers.swift",
        "Core/Extensions/SwiftUI+ViewPresentation.swift",
        "Core/Extensions/UIApplication+Extensions.swift",
        "Core/Extensions/UIFont+Extensions.swift",
        "Core/Extensions/UIImage+Extensions.swift",
        "Core/Extensions/UIScrollView+Extensions.swift",
        "Core/Extensions/UIView+Extensions.swift",
        "Core/FluentThemedHostingController.swift",
        "Core/FluentUIFramework.swift",
        "Core/FocusRingView.swift",
        "Core/Theme/FluentTheme+UIKit.swift",
        "Core/Theme/Tokens/GlobalTokens+UIKit.swift",
        "Core/Theme/Tokens/ShadowInfo+UIKit.swift",
        "Core/UIKit+SwiftUI_interoperability.swift",
        "FluentUI_iOS.swift"
      ],
      "target_dependencies" : [
        "FluentUI_common"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FluentUI_iOS_Tests",
      "module_type" : "SwiftTarget",
      "name" : "FluentUI_iOS_Tests",
      "path" : "Tests/FluentUI_iOS_Tests",
      "sources" : [
        "AvatarTests.swift",
        "ColorTests.swift",
        "DatePickerControllerTests.swift",
        "FluentUITests.swift",
        "FontTests.swift"
      ],
      "target_dependencies" : [
        "FluentUI_ios"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FluentUI_common",
      "module_type" : "SwiftTarget",
      "name" : "FluentUI_common",
      "path" : "Sources/FluentUI_common",
      "product_memberships" : [
        "FluentUI"
      ],
      "sources" : [
        "Core/Extensions/Color+Extensions.swift",
        "Core/Extensions/NSColor+Extensions.swift",
        "Core/Extensions/UIColor+Extensions.swift",
        "Core/Extensions/View+Modifiers.swift",
        "Core/Theme/Extensions/FluentTheme+Tokens.swift",
        "Core/Theme/Extensions/iOS/FluentTheme+iOS.swift",
        "Core/Theme/Extensions/iOS/FluentTheme+visionOS.swift",
        "Core/Theme/Extensions/iOS/FontInfo+iOS.swift",
        "Core/Theme/Extensions/iOS/GlobalTokens+iOS.swift",
        "Core/Theme/Extensions/macOS/FluentTheme+macOS.swift",
        "Core/Theme/Extensions/macOS/FontInfo+macOS.swift",
        "Core/Theme/Extensions/macOS/GlobalTokens+macOS.swift",
        "Core/Theme/FluentTheme.swift",
        "Core/Theme/FluentThemeable.swift",
        "Core/Theme/PlatformFontInfoProviding.swift",
        "Core/Theme/PlatformGlobalTokensProviding.swift",
        "Core/Theme/PlatformThemeProviding.swift",
        "Core/Theme/Tokens/ControlTokenSet.swift",
        "Core/Theme/Tokens/DynamicColor.swift",
        "Core/Theme/Tokens/EmptyTokenSet.swift",
        "Core/Theme/Tokens/FontInfo.swift",
        "Core/Theme/Tokens/GlobalTokens.swift",
        "Core/Theme/Tokens/LinearGradientInfo.swift",
        "Core/Theme/Tokens/ShadowInfo.swift",
        "Core/Theme/Tokens/TokenSet.swift",
        "Core/Theme/Tokens/TokenizedControl.swift",
        "Core/Theme/Tokens/TokenizedControlView.swift",
        "Core/Utilities/AnimationSynchronizer.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "FluentUI",
      "module_type" : "SwiftTarget",
      "name" : "FluentUI",
      "path" : "Sources/FluentUI",
      "product_memberships" : [
        "FluentUI"
      ],
      "sources" : [
        "FluentUI.swift"
      ],
      "target_dependencies" : [
        "FluentUI_ios",
        "FluentUI_macos"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Done.