The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of StoreHelper, reference 2.6.10 (9b1188), with Swift 6.1 for visionOS using Xcode 16.3 on 6 May 2025 21:11:23 UTC.

Swift 6 data race errors: 12

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme StoreHelper -destination generic/platform=xrOS

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/AppGroupSupport.swift:21:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var widgetConfigurationOverrides: [String : AnyObject]?
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift:58:23: warning: static property 'transactionLog' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var transactionLog: Set<TransactionLog> = []
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift:58:23: note: convert 'transactionLog' to a 'let' constant to make 'Sendable' shared state immutable
    public static var transactionLog: Set<TransactionLog> = []
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift:58:23: note: add '@MainActor' to make static property 'transactionLog' part of global actor 'MainActor'
    public static var transactionLog: Set<TransactionLog> = []
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var transactionLog: Set<TransactionLog> = []
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreNotification.swift:42:10: warning: associated value 'purchaseException' of 'Sendable'-conforming enum 'StoreException' has non-sendable type 'UnderlyingError'; this is an error in the Swift 6 language mode
    case purchaseException(UnderlyingError?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreNotification.swift:25:13: note: consider making enum 'UnderlyingError' conform to the 'Sendable' protocol
public enum UnderlyingError: Equatable {
            ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Util/PropertyFile.swift:13:23: warning: static property 'bundle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var bundle: Bundle = .main
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Util/PropertyFile.swift:13:23: note: convert 'bundle' to a 'let' constant to make 'Sendable' shared state immutable
    public static var bundle: Bundle = .main
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Util/PropertyFile.swift:13:23: note: add '@MainActor' to make static property 'bundle' part of global actor 'MainActor'
    public static var bundle: Bundle = .main
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Util/PropertyFile.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var bundle: Bundle = .main
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/OptionsViewModel.swift:13:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject public var storeHelper: StoreHelper
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PriceViewModel.swift:14:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject public var storeHelper: StoreHelper
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PurchaseInfoViewModel.swift:58:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject public var storeHelper: StoreHelper
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/SubscriptionInfoViewModel.swift:74:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
    @ObservedObject public var storeHelper: StoreHelper
     ^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/OptionsViewModel.swift:13:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
    @ObservedObject public var storeHelper: StoreHelper
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/OptionsViewModel.swift:13:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
    @ObservedObject public var storeHelper: StoreHelper
     ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PriceViewModel.swift:14:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
    @ObservedObject public var storeHelper: StoreHelper
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PriceViewModel.swift:14:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
    @ObservedObject public var storeHelper: StoreHelper
     ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PurchaseInfoViewModel.swift:58:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
    @ObservedObject public var storeHelper: StoreHelper
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PurchaseInfoViewModel.swift:58:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
    @ObservedObject public var storeHelper: StoreHelper
     ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/SubscriptionInfoViewModel.swift:74:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
    @ObservedObject public var storeHelper: StoreHelper
     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/SubscriptionInfoViewModel.swift:74:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
    @ObservedObject public var storeHelper: StoreHelper
     ^
SwiftCompile normal arm64 Compiling\ PurchaseManagement-ios.swift,\ RedeemOfferCodeView-ios.swift,\ SheetBarView-ios.swift,\ Products-macos.swift,\ SheetBarView-macos.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/PurchaseManagement-ios.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/RedeemOfferCodeView-ios.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/SheetBarView-ios.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/macOS/Products-macos.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/macOS/SheetBarView-macos.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/PurchaseManagement-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/RedeemOfferCodeView-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/SheetBarView-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/macOS/Products-macos.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/macOS/SheetBarView-macos.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SubscriptionListViewRow.swift,\ SubscriptionView.swift,\ TermsOfServiceView.swift,\ VersionInfo.swift,\ Products-ios.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/TermsOfServiceView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/VersionInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/Products-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift:54:10: warning: 'onChange(of:perform:)' was deprecated in visionOS 1.0: Use `onChange` with a two or zero parameter action closure instead.
        .onChange(of: storeHelper.purchasedProducts) { _ in
         ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift:53:73: warning: non-sendable result type 'OrderedSet<SubInfo>?' cannot be sent from nonisolated context in call to instance method 'groupSubscriptionInfo()'; this is an error in the Swift 6 language mode
        .task { subscriptionInfo = await storeHelper.subscriptionHelper.groupSubscriptionInfo()}
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubInfo.swift:13:15: note: consider making struct 'SubInfo' conform to the 'Sendable' protocol
public struct SubInfo: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift:55:81: warning: non-sendable result type 'OrderedSet<SubInfo>?' cannot be sent from nonisolated context in call to instance method 'groupSubscriptionInfo()'; this is an error in the Swift 6 language mode
            Task.init { subscriptionInfo = await storeHelper.subscriptionHelper.groupSubscriptionInfo()}
                                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubInfo.swift:13:15: note: consider making struct 'SubInfo' conform to the 'Sendable' protocol
public struct SubInfo: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift:53:73: warning: sending value of non-Sendable type 'SubscriptionHelper' risks causing data races; this is an error in the Swift 6 language mode
        .task { subscriptionInfo = await storeHelper.subscriptionHelper.groupSubscriptionInfo()}
                                         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift:53:73: note: sending main actor-isolated value of non-Sendable type 'SubscriptionHelper' to nonisolated callee risks causing races in between main actor-isolated and nonisolated uses
        .task { subscriptionInfo = await storeHelper.subscriptionHelper.groupSubscriptionInfo()}
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift:55:81: warning: sending value of non-Sendable type 'SubscriptionHelper' risks causing data races; this is an error in the Swift 6 language mode
            Task.init { subscriptionInfo = await storeHelper.subscriptionHelper.groupSubscriptionInfo()}
                                                 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift:55:81: note: sending main actor-isolated value of non-Sendable type 'SubscriptionHelper' to nonisolated callee risks causing races in between main actor-isolated and nonisolated uses
            Task.init { subscriptionInfo = await storeHelper.subscriptionHelper.groupSubscriptionInfo()}
                                                                                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionView.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionView.swift:74:10: warning: 'onChange(of:perform:)' was deprecated in visionOS 1.0: Use `onChange` with a two or zero parameter action closure instead.
        .onChange(of: storeHelper.purchasedProducts) { _ in
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/TermsOfServiceView.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/Products-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SubscriptionOfferInfo.swift,\ SubscriptionTransactionInfo.swift,\ Buttons.swift,\ Fonts.swift,\ Images.swift,\ TapGesture.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionOfferInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionTransactionInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Buttons.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/TapGesture.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionOfferInfo.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift:198:9: warning: switch must be exhaustive
        switch style {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift:198:9: note: add missing case: '.extraLargeTitle'
        switch style {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift:198:9: note: add missing case: '.extraLargeTitle2'
        switch style {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift:198:9: note: add missing cases
        switch style {
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Images.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ StoreConstants.swift,\ StoreHelper.swift,\ StoreLog.swift,\ StoreNotification.swift,\ SubInfo.swift,\ SubscriptionHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreConstants.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreNotification.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreConstants.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:853:46: warning: non-sendable result type 'UnwrappedVerificationResult<Transaction>' cannot be sent from main actor-isolated context in call to instance method 'checkVerificationResult(result:)'; this is an error in the Swift 6 language mode
                let checkResult = await self.checkVerificationResult(result: verificationResult)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:37:15: note: consider making generic struct 'UnwrappedVerificationResult' conform to the 'Sendable' protocol
public struct UnwrappedVerificationResult<T> {
              ^
                                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:849:30: warning: passing closure as a 'sending' parameter risks causing data races between main actor-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
        return Task.detached { [self] in
                             ^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:853:41: note: closure captures 'self' which is accessible to main actor-isolated code
                let checkResult = await self.checkVerificationResult(result: verificationResult)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:853:46: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                let checkResult = await self.checkVerificationResult(result: verificationResult)
                                        ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:853:46: note: sending main actor-isolated 'self' to main actor-isolated instance method 'checkVerificationResult(result:)' risks causing data races between main actor-isolated and local nonisolated uses
                let checkResult = await self.checkVerificationResult(result: verificationResult)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:853:46: note: access can happen concurrently
                let checkResult = await self.checkVerificationResult(result: verificationResult)
                                        ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:873:32: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                    await self.updatePurchasedProducts(for: transaction.productID, purchased: false)
                          ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:873:32: note: sending main actor-isolated 'self' to main actor-isolated instance method 'updatePurchasedProducts(for:purchased:updateFallbackList:updateTransactionCheck:)' risks causing data races between main actor-isolated and local nonisolated uses
                    await self.updatePurchasedProducts(for: transaction.productID, purchased: false)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:874:21: note: access can happen concurrently
                    if let handler = transactionNotification { handler(.transactionRevoked, transaction.productID, String(transaction.id)) }
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:881:32: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                    await self.updatePurchasedProducts(for: transaction.productID, purchased: false)
                          ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:881:32: note: sending main actor-isolated 'self' to main actor-isolated instance method 'updatePurchasedProducts(for:purchased:updateFallbackList:updateTransactionCheck:)' risks causing data races between main actor-isolated and local nonisolated uses
                    await self.updatePurchasedProducts(for: transaction.productID, purchased: false)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:882:21: note: access can happen concurrently
                    if let handler = transactionNotification { handler(.transactionExpired, transaction.productID, String(transaction.id)) }
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:889:32: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                    await self.updatePurchasedProducts(for: transaction.productID, purchased: true)
                          ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:889:32: note: sending main actor-isolated 'self' to main actor-isolated instance method 'updatePurchasedProducts(for:purchased:updateFallbackList:updateTransactionCheck:)' risks causing data races between main actor-isolated and local nonisolated uses
                    await self.updatePurchasedProducts(for: transaction.productID, purchased: true)
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:890:21: note: access can happen concurrently
                    if let handler = transactionNotification { handler(.transactionUpgraded, transaction.productID, String(transaction.id)) }
                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:896:28: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                await self.updatePurchasedProducts(transaction: transaction, purchased: true)
                      ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:896:28: note: sending main actor-isolated 'self' to main actor-isolated instance method 'updatePurchasedProducts(transaction:purchased:updateFallbackList:updateTransactionCheck:)' risks causing data races between main actor-isolated and local nonisolated uses
                await self.updatePurchasedProducts(transaction: transaction, purchased: true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:896:28: note: access can happen concurrently
                await self.updatePurchasedProducts(transaction: transaction, purchased: true)
                      ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift:58:23: warning: static property 'transactionLog' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var transactionLog: Set<TransactionLog> = []
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift:58:23: note: convert 'transactionLog' to a 'let' constant to make 'Sendable' shared state immutable
    public static var transactionLog: Set<TransactionLog> = []
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift:58:23: note: add '@MainActor' to make static property 'transactionLog' part of global actor 'MainActor'
    public static var transactionLog: Set<TransactionLog> = []
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var transactionLog: Set<TransactionLog> = []
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreNotification.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreNotification.swift:42:10: warning: associated value 'purchaseException' of 'Sendable'-conforming enum 'StoreException' has non-sendable type 'UnderlyingError'; this is an error in the Swift 6 language mode
    case purchaseException(UnderlyingError?)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreNotification.swift:25:13: note: consider making enum 'UnderlyingError' conform to the 'Sendable' protocol
public enum UnderlyingError: Equatable {
            ^
                                      , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubInfo.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:312:37: warning: non-sendable result type 'SubInfo?' cannot be sent from main actor-isolated context in call to instance method 'subscriptionInfo(for:)'; this is an error in the Swift 6 language mode
                if let hslp = await subscriptionInfo(for: group) { subscriptionInfoSet.append(hslp) }
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubInfo.swift:13:15: note: consider making struct 'SubInfo' conform to the 'Sendable' protocol
public struct SubInfo: Hashable {
              ^
                               , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:425:47: warning: non-sendable result type 'UnwrappedVerificationResult<Transaction>' cannot be sent from main actor-isolated context in call to instance method 'checkVerificationResult(result:)'; this is an error in the Swift 6 language mode
            let unwrapped = await storeHelper.checkVerificationResult(result: transaction)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift:37:15: note: consider making generic struct 'UnwrappedVerificationResult' conform to the 'Sendable' protocol
public struct UnwrappedVerificationResult<T> {
              ^
                                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:312:37: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                if let hslp = await subscriptionInfo(for: group) { subscriptionInfoSet.append(hslp) }
                                    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:312:37: note: sending task-isolated 'self' to main actor-isolated instance method 'subscriptionInfo(for:)' risks causing data races between main actor-isolated and task-isolated uses
                if let hslp = await subscriptionInfo(for: group) { subscriptionInfoSet.append(hslp) }
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:376:55: warning: sending 'storeHelper' risks causing data races; this is an error in the Swift 6 language mode
        guard let subscribed = try? await storeHelper.isSubscribed(product: product), !subscribed else { return false }
                                          ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:376:55: note: sending main actor-isolated 'storeHelper' to main actor-isolated instance method 'isSubscribed(product:)' risks causing data races between main actor-isolated and local nonisolated uses
        guard let subscribed = try? await storeHelper.isSubscribed(product: product), !subscribed else { return false }
                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:379:30: note: access can happen concurrently
        guard let products = subscriptions(in: group) else { return false }
                             ^~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:387:59: warning: sending 'storeHelper' risks causing data races; this is an error in the Swift 6 language mode
                let isSubscribed = try? await storeHelper.isSubscribed(product: lowerValueProduct),
                                              ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:387:59: note: sending main actor-isolated 'storeHelper' to main actor-isolated instance method 'isSubscribed(product:)' risks causing data races between main actor-isolated and local nonisolated uses
                let isSubscribed = try? await storeHelper.isSubscribed(product: lowerValueProduct),
                                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:387:59: note: access can happen concurrently
                let isSubscribed = try? await storeHelper.isSubscribed(product: lowerValueProduct),
                                              ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:425:47: warning: sending 'storeHelper' risks causing data races; this is an error in the Swift 6 language mode
            let unwrapped = await storeHelper.checkVerificationResult(result: transaction)
                                  ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:425:47: note: sending main actor-isolated 'storeHelper' to main actor-isolated instance method 'checkVerificationResult(result:)' risks causing data races between main actor-isolated and local nonisolated uses
            let unwrapped = await storeHelper.checkVerificationResult(result: transaction)
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift:425:47: note: access can happen concurrently
            let unwrapped = await storeHelper.checkVerificationResult(result: transaction)
                                  ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftDriverJobDiscovery normal arm64 Emitting module for StoreHelper (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriver\ Compilation\ Requirements StoreHelper normal arm64 com.apple.xcode.tools.swift.compiler (in target 'StoreHelper' from project 'StoreHelper')
    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 StoreHelper -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.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/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.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/StoreHelper.build/Debug-xros/StoreHelper.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Image-ios.swift, Image-macos.swift, Configuration.swift, PropertyFile.swift, StoreConfiguration.swift, Utils.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/StoreHelper-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-Swift.h (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-xros/StoreHelper-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.swiftmodule (in target 'StoreHelper' from project 'StoreHelper')
    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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.swiftdoc (in target 'StoreHelper' from project 'StoreHelper')
    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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.abi.json (in target 'StoreHelper' from project 'StoreHelper')
    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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.swiftsourceinfo (in target 'StoreHelper' from project 'StoreHelper')
    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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/Project/arm64-apple-xros.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling StoreConstants.swift, StoreHelper.swift, StoreLog.swift, StoreNotification.swift, SubInfo.swift, SubscriptionHelper.swift (in target 'StoreHelper' from project 'StoreHelper')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.o (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.o
SwiftDriverJobDiscovery normal arm64 Compiling ProductListView.swift, ProductListViewRow.swift, ProductView.swift, PurchaseButton.swift, PurchaseInfoSheet.swift, PurchaseInfoView.swift (in target 'StoreHelper' from project 'StoreHelper')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ OptionsViewModel.swift,\ PriceViewModel.swift,\ PurchaseInfoViewModel.swift,\ SubscriptionInfoViewModel.swift,\ BadgeView.swift,\ ConsumableBadgeView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/OptionsViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PriceViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PurchaseInfoViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/SubscriptionInfoViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/BadgeView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ConsumableBadgeView.swift (in target 'StoreHelper' from project 'StoreHelper')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/OptionsViewModel.swift (in target 'StoreHelper' from project 'StoreHelper')
	Building workspace spi-builder-workspace with scheme StoreHelper
(3 failures)
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
  StoreHelper: /Users/admin/builder/spi-builder-workspace
  SymbolKit: https://github.com/swiftlang/swift-docc-symbolkit @ 1.0.0
  swift-collections: https://github.com/apple/swift-collections @ 1.1.4
  SwiftDocCPlugin: https://github.com/apple/swift-docc-plugin.git @ 1.4.3
resolved source packages: StoreHelper, SymbolKit, swift-collections, SwiftDocCPlugin
{
  "dependencies" : [
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin.git"
    }
  ],
  "manifest_display_name" : "StoreHelper",
  "name" : "StoreHelper",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "StoreHelper",
      "targets" : [
        "StoreHelper"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "StoreHelper",
      "module_type" : "SwiftTarget",
      "name" : "StoreHelper",
      "path" : "Sources/StoreHelper",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "StoreHelper"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Resources/storehelper-logo.png",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Core/AppGroupSupport.swift",
        "Core/AppStoreHelper.swift",
        "Core/KeychainHelper.swift",
        "Core/PrePurchaseSubscriptionInfo.swift",
        "Core/PurchaseInfo.swift",
        "Core/StoreConstants.swift",
        "Core/StoreHelper.swift",
        "Core/StoreLog.swift",
        "Core/StoreNotification.swift",
        "Core/SubInfo.swift",
        "Core/SubscriptionHelper.swift",
        "Core/SubscriptionOfferInfo.swift",
        "Core/SubscriptionTransactionInfo.swift",
        "Styles/Shared/Buttons.swift",
        "Styles/Shared/Fonts.swift",
        "Styles/Shared/Images.swift",
        "Styles/Shared/TapGesture.swift",
        "Styles/iOS/Image-ios.swift",
        "Styles/macOS/Image-macos.swift",
        "Util/Configuration.swift",
        "Util/PropertyFile.swift",
        "Util/StoreConfiguration.swift",
        "Util/Utils.swift",
        "ViewModels/OptionsViewModel.swift",
        "ViewModels/PriceViewModel.swift",
        "ViewModels/PurchaseInfoViewModel.swift",
        "ViewModels/SubscriptionInfoViewModel.swift",
        "Views/Shared/BadgeView.swift",
        "Views/Shared/ConsumableBadgeView.swift",
        "Views/Shared/ConsumableView.swift",
        "Views/Shared/ContactUsView.swift",
        "Views/Shared/PriceButtonText.swift",
        "Views/Shared/PriceButtonTextSubscription.swift",
        "Views/Shared/PriceView.swift",
        "Views/Shared/ProductInfoView.swift",
        "Views/Shared/ProductListView.swift",
        "Views/Shared/ProductListViewRow.swift",
        "Views/Shared/ProductView.swift",
        "Views/Shared/PurchaseButton.swift",
        "Views/Shared/PurchaseInfoSheet.swift",
        "Views/Shared/PurchaseInfoView.swift",
        "Views/Shared/RefreshProductsView.swift",
        "Views/Shared/RestorePurchasesView.swift",
        "Views/Shared/StoreErrorView.swift",
        "Views/Shared/SubscriptionInfoSheet.swift",
        "Views/Shared/SubscriptionInfoView.swift",
        "Views/Shared/SubscriptionListViewRow.swift",
        "Views/Shared/SubscriptionView.swift",
        "Views/Shared/TermsOfServiceView.swift",
        "Views/Shared/VersionInfo.swift",
        "Views/iOS/Products-ios.swift",
        "Views/iOS/PurchaseManagement-ios.swift",
        "Views/iOS/RedeemOfferCodeView-ios.swift",
        "Views/iOS/SheetBarView-ios.swift",
        "Views/macOS/Products-macos.swift",
        "Views/macOS/SheetBarView-macos.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
{
  "workspace" : {
    "name" : "spi-builder-workspace",
    "schemes" : [
      "StoreHelper"
    ]
  }
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme StoreHelper -destination generic/platform=xrOS
Command line invocation:
    /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme StoreHelper -destination generic/platform=xrOS
Resolve Package Graph
Resolved source packages:
  StoreHelper: /Users/admin/builder/spi-builder-workspace
  SwiftDocCPlugin: https://github.com/apple/swift-docc-plugin.git @ 1.4.3
  SymbolKit: https://github.com/swiftlang/swift-docc-symbolkit @ 1.0.0
  swift-collections: https://github.com/apple/swift-collections @ 1.1.4
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (6 targets)
    Target 'StoreHelper' in project 'StoreHelper'
        ➜ Explicit dependency on target 'StoreHelper' in project 'StoreHelper'
        ➜ Explicit dependency on target 'StoreHelper_StoreHelper' in project 'StoreHelper'
        ➜ Explicit dependency on target 'OrderedCollections' in project 'swift-collections'
    Target 'StoreHelper' in project 'StoreHelper'
        ➜ Explicit dependency on target 'StoreHelper_StoreHelper' in project 'StoreHelper'
        ➜ Explicit dependency on target 'OrderedCollections' in project 'swift-collections'
    Target 'OrderedCollections' in project 'swift-collections'
        ➜ Explicit dependency on target 'OrderedCollections' in project 'swift-collections'
        ➜ Explicit dependency on target 'InternalCollectionsUtilities' in project 'swift-collections'
    Target 'OrderedCollections' in project 'swift-collections'
        ➜ Explicit dependency on target 'InternalCollectionsUtilities' in project 'swift-collections'
    Target 'InternalCollectionsUtilities' in project 'swift-collections' (no dependencies)
    Target 'StoreHelper_StoreHelper' in project 'StoreHelper' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
ReadFileContents /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/share/docc/features.json
Build description signature: 36613545cd5cb3987e7944ac348457d8
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/36613545cd5cb3987e7944ac348457d8.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper_StoreHelper.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper_StoreHelper.build/empty-StoreHelper_StoreHelper.plist (in target 'StoreHelper_StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper_StoreHelper.build/empty-StoreHelper_StoreHelper.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform xros -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper_StoreHelper.bundle/Info.plist
SwiftDriver InternalCollectionsUtilities normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    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 InternalCollectionsUtilities -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DCOLLECTIONS_RANDOMIZED_TESTING -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-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/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.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/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ UnsafeMutableBufferPointer+SE-0370.swift,\ UnsafeMutablePointer+SE-0370.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Compatibility/autogenerated/UnsafeMutableBufferPointer+SE-0370.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Compatibility/autogenerated/UnsafeMutablePointer+SE-0370.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Compatibility/autogenerated/UnsafeMutableBufferPointer+SE-0370.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Compatibility/autogenerated/UnsafeMutablePointer+SE-0370.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UnsafeRawPointer\ extensions.swift,\ FixedWidthInteger+roundUpToPowerOfTwo.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Compatibility/autogenerated/UnsafeRawPointer\ extensions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/autogenerated/FixedWidthInteger+roundUpToPowerOfTwo.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/Compatibility/autogenerated/UnsafeRawPointer\ extensions.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/autogenerated/FixedWidthInteger+roundUpToPowerOfTwo.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ _UnsafeBitSet+_Word.swift,\ _UnsafeBitSet.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/autogenerated/_UnsafeBitSet+_Word.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/autogenerated/_UnsafeBitSet.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/autogenerated/_UnsafeBitSet+_Word.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/autogenerated/_UnsafeBitSet.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UInt+reversed.swift,\ _UnsafeBitSet+Index.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/autogenerated/UInt+reversed.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/autogenerated/_UnsafeBitSet+Index.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/autogenerated/UInt+reversed.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/UnsafeBitSet/autogenerated/_UnsafeBitSet+Index.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Debugging.swift,\ Descriptions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/Debugging.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/Descriptions.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/Debugging.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/Descriptions.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ RandomAccessCollection+Offsets.swift,\ Specialize.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/RandomAccessCollection+Offsets.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/Specialize.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/RandomAccessCollection+Offsets.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/Specialize.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Integer\ rank.swift,\ UInt+first\ and\ last\ set\ bit.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/autogenerated/Integer\ rank.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/autogenerated/UInt+first\ and\ last\ set\ bit.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/autogenerated/Integer\ rank.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/IntegerTricks/autogenerated/UInt+first\ and\ last\ set\ bit.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ _SortedCollection.swift,\ _UniqueCollection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_SortedCollection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_UniqueCollection.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_SortedCollection.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/_UniqueCollection.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ UnsafeBufferPointer+Extras.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/UnsafeBufferPointer+Extras.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/UnsafeBufferPointer+Extras.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ UnsafeMutableBufferPointer+Extras.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/UnsafeMutableBufferPointer+Extras.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/InternalCollectionsUtilities/autogenerated/UnsafeMutableBufferPointer+Extras.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling _SortedCollection.swift, _UniqueCollection.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling UnsafeMutableBufferPointer+SE-0370.swift, UnsafeMutablePointer+SE-0370.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling RandomAccessCollection+Offsets.swift, Specialize.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling UnsafeBufferPointer+Extras.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling UnsafeRawPointer extensions.swift, FixedWidthInteger+roundUpToPowerOfTwo.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling Debugging.swift, Descriptions.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling UInt+reversed.swift, _UnsafeBitSet+Index.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling Integer rank.swift, UInt+first and last set bit.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling UnsafeMutableBufferPointer+Extras.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Emitting module for InternalCollectionsUtilities (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftDriver\ Compilation\ Requirements InternalCollectionsUtilities normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    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 InternalCollectionsUtilities -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DCOLLECTIONS_RANDOMIZED_TESTING -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-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/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.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/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    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/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    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/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.swiftmodule/arm64-apple-xros.swiftmodule
SwiftDriver OrderedCollections normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OrderedCollections' from project 'swift-collections')
    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 OrderedCollections -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DCOLLECTIONS_RANDOMIZED_TESTING -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections-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/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.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/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling _UnsafeBitSet+_Word.swift, _UnsafeBitSet.swift (in target 'InternalCollectionsUtilities' from project 'swift-collections')
SwiftEmitModule normal arm64 Emitting\ module\ for\ OrderedCollections (in target 'OrderedCollections' from project 'swift-collections')
EmitSwiftModule normal arm64 (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ _HashTable+Bucket.swift,\ _HashTable+BucketIterator.swift,\ _HashTable+Constants.swift,\ _HashTable+CustomStringConvertible.swift,\ _HashTable+Testing.swift,\ _HashTable+UnsafeHandle.swift,\ _HashTable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+Bucket.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+BucketIterator.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+Constants.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+CustomStringConvertible.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+Testing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+UnsafeHandle.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+Bucket.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+BucketIterator.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+Constants.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+CustomStringConvertible.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+Testing.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable+UnsafeHandle.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_HashTable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ _Hashtable+Header.swift,\ OrderedDictionary+Codable.swift,\ OrderedDictionary+CustomReflectable.swift,\ OrderedDictionary+Deprecations.swift,\ OrderedDictionary+Descriptions.swift,\ OrderedDictionary+Elements.SubSequence.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_Hashtable+Header.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Codable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+CustomReflectable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Deprecations.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Descriptions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Elements.SubSequence.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/HashTable/_Hashtable+Header.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Codable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+CustomReflectable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Deprecations.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Descriptions.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Elements.SubSequence.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ OrderedDictionary+Partial\ MutableCollection.swift,\ OrderedDictionary+Partial\ RangeReplaceableCollection.swift,\ OrderedDictionary+Sendable.swift,\ OrderedDictionary+Sequence.swift,\ OrderedDictionary+Values.swift,\ OrderedDictionary.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Partial\ MutableCollection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Partial\ RangeReplaceableCollection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sequence.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Values.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Partial\ MutableCollection.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Partial\ RangeReplaceableCollection.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sendable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Sequence.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Values.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ OrderedSet+Partial\ SetAlgebra\ formIntersection.swift,\ OrderedSet+Partial\ SetAlgebra\ formSymmetricDifference.swift,\ OrderedSet+Partial\ SetAlgebra\ formUnion.swift,\ OrderedSet+Partial\ SetAlgebra\ intersection.swift,\ OrderedSet+Partial\ SetAlgebra\ isDisjoint.swift,\ OrderedSet+Partial\ SetAlgebra\ isEqualSet.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ formIntersection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ formSymmetricDifference.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ formUnion.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ intersection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isDisjoint.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isEqualSet.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ formIntersection.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ formSymmetricDifference.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ formUnion.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ intersection.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isDisjoint.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isEqualSet.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ OrderedSet+Partial\ SetAlgebra\ isStrictSubset.swift,\ OrderedSet+Partial\ SetAlgebra\ isStrictSuperset.swift,\ OrderedSet+Partial\ SetAlgebra\ isSubset.swift,\ OrderedSet+Partial\ SetAlgebra\ isSuperset.swift,\ OrderedSet+Partial\ SetAlgebra\ subtract.swift,\ OrderedSet+Partial\ SetAlgebra\ subtracting.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isStrictSubset.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isStrictSuperset.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isSubset.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isSuperset.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ subtract.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ subtracting.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isStrictSubset.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isStrictSuperset.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isSubset.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ isSuperset.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ subtract.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ subtracting.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ OrderedSet+Hashable.swift,\ OrderedSet+Initializers.swift,\ OrderedSet+Insertions.swift,\ OrderedSet+Invariants.swift,\ OrderedSet+Partial\ MutableCollection.swift,\ OrderedSet+Partial\ RangeReplaceableCollection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Hashable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Initializers.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Insertions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Invariants.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ MutableCollection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ RangeReplaceableCollection.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Hashable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Initializers.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Insertions.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Invariants.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ MutableCollection.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ RangeReplaceableCollection.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ OrderedSet+Codable.swift,\ OrderedSet+CustomReflectable.swift,\ OrderedSet+Descriptions.swift,\ OrderedSet+Diffing.swift,\ OrderedSet+Equatable.swift,\ OrderedSet+ExpressibleByArrayLiteral.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Codable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+CustomReflectable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Descriptions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Diffing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Equatable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+ExpressibleByArrayLiteral.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Codable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+CustomReflectable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Descriptions.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Diffing.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Equatable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+ExpressibleByArrayLiteral.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ OrderedDictionary+Elements.swift,\ OrderedDictionary+Equatable.swift,\ OrderedDictionary+ExpressibleByDictionaryLiteral.swift,\ OrderedDictionary+Hashable.swift,\ OrderedDictionary+Initializers.swift,\ OrderedDictionary+Invariants.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Elements.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Equatable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+ExpressibleByDictionaryLiteral.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Hashable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Initializers.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Invariants.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Elements.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Equatable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+ExpressibleByDictionaryLiteral.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Hashable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Initializers.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedDictionary/OrderedDictionary+Invariants.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ OrderedSet+Partial\ SetAlgebra\ symmetricDifference.swift,\ OrderedSet+Partial\ SetAlgebra\ union.swift,\ OrderedSet+Partial\ SetAlgebra+Basics.swift,\ OrderedSet+RandomAccessCollection.swift,\ OrderedSet+ReserveCapacity.swift,\ OrderedSet+Sendable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ symmetricDifference.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ union.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra+Basics.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+RandomAccessCollection.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+ReserveCapacity.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ symmetricDifference.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra\ union.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Partial\ SetAlgebra+Basics.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+RandomAccessCollection.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+ReserveCapacity.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Sendable.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ OrderedSet+SubSequence.swift,\ OrderedSet+Testing.swift,\ OrderedSet+UnorderedView.swift,\ OrderedSet+UnstableInternals.swift,\ OrderedSet.swift,\ _UnsafeBitset.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+SubSequence.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Testing.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+UnorderedView.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+UnstableInternals.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/Utilities/_UnsafeBitset.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+SubSequence.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+Testing.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+UnorderedView.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet+UnstableInternals.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/OrderedSet/OrderedSet.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections/Sources/OrderedCollections/Utilities/_UnsafeBitset.swift (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling OrderedSet+Partial SetAlgebra formIntersection.swift, OrderedSet+Partial SetAlgebra formSymmetricDifference.swift, OrderedSet+Partial SetAlgebra formUnion.swift, OrderedSet+Partial SetAlgebra intersection.swift, OrderedSet+Partial SetAlgebra isDisjoint.swift, OrderedSet+Partial SetAlgebra isEqualSet.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftDriver\ Compilation InternalCollectionsUtilities normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    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 InternalCollectionsUtilities -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DCOLLECTIONS_RANDOMIZED_TESTING -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-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/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.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/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling OrderedSet+Codable.swift, OrderedSet+CustomReflectable.swift, OrderedSet+Descriptions.swift, OrderedSet+Diffing.swift, OrderedSet+Equatable.swift, OrderedSet+ExpressibleByArrayLiteral.swift (in target 'OrderedCollections' from project 'swift-collections')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.o normal (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.o
SwiftDriverJobDiscovery normal arm64 Compiling OrderedSet+Partial SetAlgebra isStrictSubset.swift, OrderedSet+Partial SetAlgebra isStrictSuperset.swift, OrderedSet+Partial SetAlgebra isSubset.swift, OrderedSet+Partial SetAlgebra isSuperset.swift, OrderedSet+Partial SetAlgebra subtract.swift, OrderedSet+Partial SetAlgebra subtracting.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling OrderedSet+Partial SetAlgebra symmetricDifference.swift, OrderedSet+Partial SetAlgebra union.swift, OrderedSet+Partial SetAlgebra+Basics.swift, OrderedSet+RandomAccessCollection.swift, OrderedSet+ReserveCapacity.swift, OrderedSet+Sendable.swift (in target 'OrderedCollections' from project 'swift-collections')
ExtractAppIntentsMetadata (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    /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 InternalCollectionsUtilities --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier swift-collections.InternalCollectionsUtilities --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/InternalCollectionsUtilities.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/InternalCollectionsUtilities.build/Objects-normal/arm64/InternalCollectionsUtilities.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-06 14:11:20.555 appintentsmetadataprocessor[1520:9194] Starting appintentsmetadataprocessor export
2025-05-06 14:11:20.593 appintentsmetadataprocessor[1520:9194] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling OrderedDictionary+Elements.swift, OrderedDictionary+Equatable.swift, OrderedDictionary+ExpressibleByDictionaryLiteral.swift, OrderedDictionary+Hashable.swift, OrderedDictionary+Initializers.swift, OrderedDictionary+Invariants.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling _Hashtable+Header.swift, OrderedDictionary+Codable.swift, OrderedDictionary+CustomReflectable.swift, OrderedDictionary+Deprecations.swift, OrderedDictionary+Descriptions.swift, OrderedDictionary+Elements.SubSequence.swift (in target 'OrderedCollections' from project 'swift-collections')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.o (in target 'InternalCollectionsUtilities' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/InternalCollectionsUtilities.o
SwiftDriverJobDiscovery normal arm64 Compiling OrderedSet+Hashable.swift, OrderedSet+Initializers.swift, OrderedSet+Insertions.swift, OrderedSet+Invariants.swift, OrderedSet+Partial MutableCollection.swift, OrderedSet+Partial RangeReplaceableCollection.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling OrderedDictionary+Partial MutableCollection.swift, OrderedDictionary+Partial RangeReplaceableCollection.swift, OrderedDictionary+Sendable.swift, OrderedDictionary+Sequence.swift, OrderedDictionary+Values.swift, OrderedDictionary.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling _HashTable+Bucket.swift, _HashTable+BucketIterator.swift, _HashTable+Constants.swift, _HashTable+CustomStringConvertible.swift, _HashTable+Testing.swift, _HashTable+UnsafeHandle.swift, _HashTable.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Compiling OrderedSet+SubSequence.swift, OrderedSet+Testing.swift, OrderedSet+UnorderedView.swift, OrderedSet+UnstableInternals.swift, OrderedSet.swift, _UnsafeBitset.swift (in target 'OrderedCollections' from project 'swift-collections')
SwiftDriverJobDiscovery normal arm64 Emitting module for OrderedCollections (in target 'OrderedCollections' from project 'swift-collections')
SwiftDriver\ Compilation\ Requirements OrderedCollections normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OrderedCollections' from project 'swift-collections')
    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 OrderedCollections -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DCOLLECTIONS_RANDOMIZED_TESTING -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections-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/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.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/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation OrderedCollections normal arm64 com.apple.xcode.tools.swift.compiler (in target 'OrderedCollections' from project 'swift-collections')
    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 OrderedCollections -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DCOLLECTIONS_RANDOMIZED_TESTING -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -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-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections-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/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.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/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.abi.json (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    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/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.swiftmodule/arm64-apple-xros.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.swiftmodule (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    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/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.swiftmodule/arm64-apple-xros.swiftmodule
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.o normal (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.o
SwiftDriver StoreHelper normal arm64 com.apple.xcode.tools.swift.compiler (in target 'StoreHelper' from project 'StoreHelper')
    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 StoreHelper -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.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/StoreHelper.build/Debug-xros/StoreHelper.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ExtractAppIntentsMetadata (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    /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 OrderedCollections --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier swift-collections.OrderedCollections --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/OrderedCollections.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/OrderedCollections.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-collections.build/Debug-xros/OrderedCollections.build/Objects-normal/arm64/OrderedCollections.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-06 14:11:20.987 appintentsmetadataprocessor[1529:9237] Starting appintentsmetadataprocessor export
2025-05-06 14:11:21.028 appintentsmetadataprocessor[1529:9237] Extracted no relevant App Intents symbols, skipping writing output
SwiftCompile normal arm64 Compiling\ Image-ios.swift,\ Image-macos.swift,\ Configuration.swift,\ PropertyFile.swift,\ StoreConfiguration.swift,\ Utils.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/iOS/Image-ios.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/macOS/Image-macos.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Util/Configuration.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Util/PropertyFile.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Util/StoreConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Util/Utils.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/iOS/Image-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/macOS/Image-macos.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

SwiftCompile normal arm64 Compiling\ ConsumableView.swift,\ ContactUsView.swift,\ PriceButtonText.swift,\ PriceButtonTextSubscription.swift,\ PriceView.swift,\ ProductInfoView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ConsumableView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ContactUsView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/PriceButtonText.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/PriceButtonTextSubscription.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/PriceView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ProductInfoView.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ConsumableView.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ConsumableView.swift:97:10: warning: 'onChange(of:perform:)' was deprecated in visionOS 1.0: Use `onChange` with a two or zero parameter action closure instead.
        .onChange(of: storeHelper.purchasedProducts) { _ in
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ContactUsView.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

SwiftCompile normal arm64 Compiling\ ProductListView.swift,\ ProductListViewRow.swift,\ ProductView.swift,\ PurchaseButton.swift,\ PurchaseInfoSheet.swift,\ PurchaseInfoView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ProductListView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ProductListViewRow.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ProductView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/PurchaseButton.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/PurchaseInfoSheet.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/PurchaseInfoView.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ProductListView.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ProductView.swift:99:10: warning: 'onChange(of:perform:)' was deprecated in visionOS 1.0: Use `onChange` with a two or zero parameter action closure instead.
        .onChange(of: storeHelper.purchasedProducts) { _ in
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/PurchaseButton.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ AppGroupSupport.swift,\ AppStoreHelper.swift,\ KeychainHelper.swift,\ PrePurchaseSubscriptionInfo.swift,\ PurchaseInfo.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/AppGroupSupport.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/AppStoreHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/KeychainHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/PrePurchaseSubscriptionInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/PurchaseInfo.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources/resource_bundle_accessor.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

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

SwiftCompile normal arm64 Compiling\ OptionsViewModel.swift,\ PriceViewModel.swift,\ PurchaseInfoViewModel.swift,\ SubscriptionInfoViewModel.swift,\ BadgeView.swift,\ ConsumableBadgeView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/OptionsViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PriceViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PurchaseInfoViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/SubscriptionInfoViewModel.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/BadgeView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/ConsumableBadgeView.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/OptionsViewModel.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PriceViewModel.swift:133:12: warning: unnecessary check for 'visionOS'; enclosing scope ensures guard will always be true
        if #available(iOS 16.0, macOS 13.0, tvOS 16.0, watchOS 9.0, visionOS 1.0, *) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PriceViewModel.swift:13:15: note: enclosing scope here
public struct PriceViewModel {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PriceViewModel.swift:157:12: warning: unnecessary check for 'visionOS'; enclosing scope ensures guard will always be true
        if #available(iOS 15.4, macOS 12.3, tvOS 15.4, watchOS 8.5, visionOS 1.0, *) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PriceViewModel.swift:13:15: note: enclosing scope here
public struct PriceViewModel {
              ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/ViewModels/PurchaseInfoViewModel.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

SwiftCompile normal arm64 Compiling\ PurchaseManagement-ios.swift,\ RedeemOfferCodeView-ios.swift,\ SheetBarView-ios.swift,\ Products-macos.swift,\ SheetBarView-macos.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/PurchaseManagement-ios.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/RedeemOfferCodeView-ios.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/SheetBarView-ios.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/macOS/Products-macos.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/macOS/SheetBarView-macos.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/PurchaseManagement-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/RedeemOfferCodeView-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/SheetBarView-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/macOS/Products-macos.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/macOS/SheetBarView-macos.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ SubscriptionListViewRow.swift,\ SubscriptionView.swift,\ TermsOfServiceView.swift,\ VersionInfo.swift,\ Products-ios.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/TermsOfServiceView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/VersionInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/Products-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionListViewRow.swift:54:10: warning: 'onChange(of:perform:)' was deprecated in visionOS 1.0: Use `onChange` with a two or zero parameter action closure instead.
        .onChange(of: storeHelper.purchasedProducts) { _ in
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionView.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionView.swift:74:10: warning: 'onChange(of:perform:)' was deprecated in visionOS 1.0: Use `onChange` with a two or zero parameter action closure instead.
        .onChange(of: storeHelper.purchasedProducts) { _ in
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/TermsOfServiceView.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/iOS/Products-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ SubscriptionOfferInfo.swift,\ SubscriptionTransactionInfo.swift,\ Buttons.swift,\ Fonts.swift,\ Images.swift,\ TapGesture.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionOfferInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionTransactionInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Buttons.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/TapGesture.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionOfferInfo.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift:198:9: warning: switch must be exhaustive
        switch style {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift:198:9: note: add missing case: '.extraLargeTitle'
        switch style {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift:198:9: note: add missing case: '.extraLargeTitle2'
        switch style {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Fonts.swift:198:9: note: add missing cases
        switch style {
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Styles/Shared/Images.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

SwiftCompile normal arm64 Compiling\ StoreConstants.swift,\ StoreHelper.swift,\ StoreLog.swift,\ StoreNotification.swift,\ SubInfo.swift,\ SubscriptionHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreConstants.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreHelper.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreLog.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreNotification.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubInfo.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/SubscriptionHelper.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Core/StoreConstants.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

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

SwiftCompile normal arm64 Compiling\ RefreshProductsView.swift,\ RestorePurchasesView.swift,\ StoreErrorView.swift,\ SubscriptionInfoSheet.swift,\ SubscriptionInfoView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/RefreshProductsView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/RestorePurchasesView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/StoreErrorView.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionInfoSheet.swift /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/SubscriptionInfoView.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Views/Shared/RefreshProductsView.swift (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

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

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

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

SwiftDriverJobDiscovery normal arm64 Compiling PurchaseManagement-ios.swift, RedeemOfferCodeView-ios.swift, SheetBarView-ios.swift, Products-macos.swift, SheetBarView-macos.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriverJobDiscovery normal arm64 Compiling Image-ios.swift, Image-macos.swift, Configuration.swift, PropertyFile.swift, StoreConfiguration.swift, Utils.swift (in target 'StoreHelper' from project 'StoreHelper')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.o (in target 'OrderedCollections' from project 'swift-collections')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-collections
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/OrderedCollections.o
SwiftDriverJobDiscovery normal arm64 Emitting module for StoreHelper (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriver\ Compilation\ Requirements StoreHelper normal arm64 com.apple.xcode.tools.swift.compiler (in target 'StoreHelper' from project 'StoreHelper')
    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 StoreHelper -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.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/StoreHelper.build/Debug-xros/StoreHelper.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.swiftmodule (in target 'StoreHelper' from project 'StoreHelper')
    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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.abi.json (in target 'StoreHelper' from project 'StoreHelper')
    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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.swiftmodule/arm64-apple-xros.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, AppGroupSupport.swift, AppStoreHelper.swift, KeychainHelper.swift, PrePurchaseSubscriptionInfo.swift, PurchaseInfo.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriverJobDiscovery normal arm64 Compiling SubscriptionOfferInfo.swift, SubscriptionTransactionInfo.swift, Buttons.swift, Fonts.swift, Images.swift, TapGesture.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriverJobDiscovery normal arm64 Compiling SubscriptionListViewRow.swift, SubscriptionView.swift, TermsOfServiceView.swift, VersionInfo.swift, Products-ios.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriverJobDiscovery normal arm64 Compiling ConsumableView.swift, ContactUsView.swift, PriceButtonText.swift, PriceButtonTextSubscription.swift, PriceView.swift, ProductInfoView.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriverJobDiscovery normal arm64 Compiling OptionsViewModel.swift, PriceViewModel.swift, PurchaseInfoViewModel.swift, SubscriptionInfoViewModel.swift, BadgeView.swift, ConsumableBadgeView.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriverJobDiscovery normal arm64 Compiling RefreshProductsView.swift, RestorePurchasesView.swift, StoreErrorView.swift, SubscriptionInfoSheet.swift, SubscriptionInfoView.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriverJobDiscovery normal arm64 Compiling ProductListView.swift, ProductListViewRow.swift, ProductView.swift, PurchaseButton.swift, PurchaseInfoSheet.swift, PurchaseInfoView.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriverJobDiscovery normal arm64 Compiling StoreConstants.swift, StoreHelper.swift, StoreLog.swift, StoreNotification.swift, SubInfo.swift, SubscriptionHelper.swift (in target 'StoreHelper' from project 'StoreHelper')
SwiftDriver\ Compilation StoreHelper normal arm64 com.apple.xcode.tools.swift.compiler (in target 'StoreHelper' from project 'StoreHelper')
    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 StoreHelper -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -target arm64-apple-xros1.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/xros2.4-22O233-407b76dbb837030756cbe1ab3f0b01b6.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.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/StoreHelper.build/Debug-xros/StoreHelper.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.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/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper-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-xros/StoreHelper.o normal (in target 'StoreHelper' from project 'StoreHelper')
    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-xros1.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-xros -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/xros -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.o
ExtractAppIntentsMetadata (in target 'StoreHelper' from project 'StoreHelper')
    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 StoreHelper --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/XROS.platform/Developer/SDKs/XROS2.4.sdk --xcode-version 16E140 --platform-family xrOS --deployment-target 1.0 --bundle-identifier spi-builder-workspace.StoreHelper --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.appintents --target-triple arm64-apple-xros1.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/StoreHelper.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/StoreHelper.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/StoreHelper.build/Debug-xros/StoreHelper.build/Objects-normal/arm64/StoreHelper.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-06 14:11:22.293 appintentsmetadataprocessor[1543:9332] Starting appintentsmetadataprocessor export
2025-05-06 14:11:22.327 appintentsmetadataprocessor[1543:9332] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.o (in target 'StoreHelper' from project 'StoreHelper')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-xros/StoreHelper.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin.git"
    }
  ],
  "manifest_display_name" : "StoreHelper",
  "name" : "StoreHelper",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "StoreHelper",
      "targets" : [
        "StoreHelper"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "StoreHelper",
      "module_type" : "SwiftTarget",
      "name" : "StoreHelper",
      "path" : "Sources/StoreHelper",
      "product_dependencies" : [
        "OrderedCollections"
      ],
      "product_memberships" : [
        "StoreHelper"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/StoreHelper/Resources/storehelper-logo.png",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Core/AppGroupSupport.swift",
        "Core/AppStoreHelper.swift",
        "Core/KeychainHelper.swift",
        "Core/PrePurchaseSubscriptionInfo.swift",
        "Core/PurchaseInfo.swift",
        "Core/StoreConstants.swift",
        "Core/StoreHelper.swift",
        "Core/StoreLog.swift",
        "Core/StoreNotification.swift",
        "Core/SubInfo.swift",
        "Core/SubscriptionHelper.swift",
        "Core/SubscriptionOfferInfo.swift",
        "Core/SubscriptionTransactionInfo.swift",
        "Styles/Shared/Buttons.swift",
        "Styles/Shared/Fonts.swift",
        "Styles/Shared/Images.swift",
        "Styles/Shared/TapGesture.swift",
        "Styles/iOS/Image-ios.swift",
        "Styles/macOS/Image-macos.swift",
        "Util/Configuration.swift",
        "Util/PropertyFile.swift",
        "Util/StoreConfiguration.swift",
        "Util/Utils.swift",
        "ViewModels/OptionsViewModel.swift",
        "ViewModels/PriceViewModel.swift",
        "ViewModels/PurchaseInfoViewModel.swift",
        "ViewModels/SubscriptionInfoViewModel.swift",
        "Views/Shared/BadgeView.swift",
        "Views/Shared/ConsumableBadgeView.swift",
        "Views/Shared/ConsumableView.swift",
        "Views/Shared/ContactUsView.swift",
        "Views/Shared/PriceButtonText.swift",
        "Views/Shared/PriceButtonTextSubscription.swift",
        "Views/Shared/PriceView.swift",
        "Views/Shared/ProductInfoView.swift",
        "Views/Shared/ProductListView.swift",
        "Views/Shared/ProductListViewRow.swift",
        "Views/Shared/ProductView.swift",
        "Views/Shared/PurchaseButton.swift",
        "Views/Shared/PurchaseInfoSheet.swift",
        "Views/Shared/PurchaseInfoView.swift",
        "Views/Shared/RefreshProductsView.swift",
        "Views/Shared/RestorePurchasesView.swift",
        "Views/Shared/StoreErrorView.swift",
        "Views/Shared/SubscriptionInfoSheet.swift",
        "Views/Shared/SubscriptionInfoView.swift",
        "Views/Shared/SubscriptionListViewRow.swift",
        "Views/Shared/SubscriptionView.swift",
        "Views/Shared/TermsOfServiceView.swift",
        "Views/Shared/VersionInfo.swift",
        "Views/iOS/Products-ios.swift",
        "Views/iOS/PurchaseManagement-ios.swift",
        "Views/iOS/RedeemOfferCodeView-ios.swift",
        "Views/iOS/SheetBarView-ios.swift",
        "Views/macOS/Products-macos.swift",
        "Views/macOS/SheetBarView-macos.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.