Build Information
Successful build of AdaptiveCardUI, reference 0.1.3 (7bfdcf
), with Swift 6.1 for macOS (SPM) on 26 Apr 2025 08:09:28 UTC.
Swift 6 data race errors: 103
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
| |- warning: static property 'padding' is not concurrency-safe because non-'Sendable' type 'Spacing' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'padding' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | }
27 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/Spacing.swift:29:23: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 | extension Spacing: CaseIterable {
29 | public static var allCases: [Spacing] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | .default, .none, .small, .medium, .large, .extraLarge, .padding,
31 | ]
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:18:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct TextColor: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
16 |
17 | public extension TextColor {
18 | static let `default` = TextColor(rawValue: "default")
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let dark = TextColor(rawValue: "dark")
20 | static let light = TextColor(rawValue: "light")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:19:16: warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct TextColor: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
17 | public extension TextColor {
18 | static let `default` = TextColor(rawValue: "default")
19 | static let dark = TextColor(rawValue: "dark")
| |- warning: static property 'dark' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'dark' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let light = TextColor(rawValue: "light")
21 | static let accent = TextColor(rawValue: "accent")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:20:16: warning: static property 'light' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct TextColor: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
18 | static let `default` = TextColor(rawValue: "default")
19 | static let dark = TextColor(rawValue: "dark")
20 | static let light = TextColor(rawValue: "light")
| |- warning: static property 'light' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'light' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | static let accent = TextColor(rawValue: "accent")
22 | static let good = TextColor(rawValue: "good")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:21:16: warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct TextColor: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
19 | static let dark = TextColor(rawValue: "dark")
20 | static let light = TextColor(rawValue: "light")
21 | static let accent = TextColor(rawValue: "accent")
| |- warning: static property 'accent' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'accent' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 | static let good = TextColor(rawValue: "good")
23 | static let warning = TextColor(rawValue: "warning")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:22:16: warning: static property 'good' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct TextColor: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
20 | static let light = TextColor(rawValue: "light")
21 | static let accent = TextColor(rawValue: "accent")
22 | static let good = TextColor(rawValue: "good")
| |- warning: static property 'good' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'good' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | static let warning = TextColor(rawValue: "warning")
24 | static let attention = TextColor(rawValue: "attention")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:23:16: warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct TextColor: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
21 | static let accent = TextColor(rawValue: "accent")
22 | static let good = TextColor(rawValue: "good")
23 | static let warning = TextColor(rawValue: "warning")
| |- warning: static property 'warning' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'warning' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | static let attention = TextColor(rawValue: "attention")
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:24:16: warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct TextColor: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'TextColor' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
22 | static let good = TextColor(rawValue: "good")
23 | static let warning = TextColor(rawValue: "warning")
24 | static let attention = TextColor(rawValue: "attention")
| |- warning: static property 'attention' is not concurrency-safe because non-'Sendable' type 'TextColor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'attention' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/TextColor.swift:28:23: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
26 |
27 | extension TextColor: CaseIterable {
28 | public static var allCases: [TextColor] = [
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | .default, .dark, .light, .accent, .good, .warning, .attention,
30 | ]
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:18:16: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
16 |
17 | public extension VAlignment {
18 | static let top = VAlignment(rawValue: "top")
| |- warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | static let center = VAlignment(rawValue: "center")
20 | static let bottom = VAlignment(rawValue: "bottom")
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:19:16: warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
17 | public extension VAlignment {
18 | static let top = VAlignment(rawValue: "top")
19 | static let center = VAlignment(rawValue: "center")
| |- warning: static property 'center' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'center' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 | static let bottom = VAlignment(rawValue: "bottom")
21 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:20:16: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct VAlignment: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'VAlignment' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
:
18 | static let top = VAlignment(rawValue: "top")
19 | static let center = VAlignment(rawValue: "center")
20 | static let bottom = VAlignment(rawValue: "bottom")
| |- warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'VAlignment' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/VAlignment.swift:24:23: warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 |
23 | extension VAlignment: CaseIterable {
24 | public static var allCases: [VAlignment] = [.top, .center, .bottom]
| |- warning: static property 'allCases' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'allCases' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | }
26 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Containers/ImageSet.swift:5:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
3 |
4 | public enum MediumImageSize: DefaultValueProvider {
5 | public static var `default` = ImageSize.medium
| |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
6 | }
7 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/CardElement.swift:205:16: warning: static property 'customCardElementDecoders' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
203 | typealias CustomCardElementEquatable = (CustomCardElement, CustomCardElement) -> Bool
204 |
205 | static var customCardElementDecoders: [String: CustomCardElementDecoder] = [:]
| |- warning: static property 'customCardElementDecoders' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'customCardElementDecoders' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'customCardElementDecoders' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 | static var customCardElementEncoders: [String: CustomCardElementEncoder] = [:]
207 | static var customCardElementIsEqual: [String: CustomCardElementEquatable] = [:]
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/CardElement.swift:206:16: warning: static property 'customCardElementEncoders' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
204 |
205 | static var customCardElementDecoders: [String: CustomCardElementDecoder] = [:]
206 | static var customCardElementEncoders: [String: CustomCardElementEncoder] = [:]
| |- warning: static property 'customCardElementEncoders' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'customCardElementEncoders' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'customCardElementEncoders' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 | static var customCardElementIsEqual: [String: CustomCardElementEquatable] = [:]
208 | }
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/CardElement.swift:207:16: warning: static property 'customCardElementIsEqual' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
205 | static var customCardElementDecoders: [String: CustomCardElementDecoder] = [:]
206 | static var customCardElementEncoders: [String: CustomCardElementEncoder] = [:]
207 | static var customCardElementIsEqual: [String: CustomCardElementEquatable] = [:]
| |- warning: static property 'customCardElementIsEqual' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'customCardElementIsEqual' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'customCardElementIsEqual' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Elements/ColumnWidth.swift:51:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
49 |
50 | extension ColumnWidth: DefaultValueProvider {
51 | public static var `default` = ColumnWidth.stretch
| |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 | }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/AdaptiveCard/AdaptiveCardFeatures.swift:31:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : SemanticVersion]' may have shared mutable state; this is an error in the Swift 6 language mode
29 | }
30 |
31 | static let defaultValue: [String: SemanticVersion] = [
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : SemanticVersion]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | Constants.adaptiveCardFeature: adaptiveCardVersion,
33 | ]
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/SemanticVersion.swift:3:15: note: consider making struct 'SemanticVersion' conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public struct SemanticVersion: Equatable {
| `- note: consider making struct 'SemanticVersion' conform to the 'Sendable' protocol
4 | public let major: Int
5 | public let minor: Int
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/CustomImageStyle.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[ImageStyle : AnyCustomImageStyle]' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
15 | struct AnyCustomImageStyle: CustomImageStyle {
| `- note: consider making struct 'AnyCustomImageStyle' conform to the 'Sendable' protocol
16 | private let _makeBody: (Content) -> AnyView
17 |
:
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomImageStylesKey: EnvironmentKey {
52 | static let defaultValue: [ImageStyle: AnyCustomImageStyle] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[ImageStyle : AnyCustomImageStyle]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ImageStyle.swift:3:15: note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
1 | import Foundation
2 |
3 | public struct ImageStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ImageStyle' conform to the 'Sendable' protocol
4 | public private(set) var rawValue: String
5 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
[142/167] Compiling AdaptiveCardUI RepeatVerticallyImageView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[143/167] Compiling AdaptiveCardUI CardElementList.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[144/167] Compiling AdaptiveCardUI CardElementView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[145/167] Compiling AdaptiveCardUI CustomCardElementView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[146/167] Compiling AdaptiveCardUI SpacingCardElementView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[147/167] Compiling AdaptiveCardUI Color+ARGBHex.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[148/167] Compiling AdaptiveCardUI ColumnSetView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[149/167] Compiling AdaptiveCardUI ColumnView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[150/167] Compiling AdaptiveCardUI SpacingColumnView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[151/167] Compiling AdaptiveCardUI ContainerView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[152/167] Compiling AdaptiveCardUI EnvironmentValues+ContainerStyle.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[153/167] Compiling AdaptiveCardUI FactSetView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[154/167] Compiling AdaptiveCardUI Alignment+VAlignment.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift:52:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
50 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
51 | private struct CustomCardElementViewFactoriesKey: EnvironmentKey {
52 | static let defaultValue: [String: CustomCardElementViewFactory] = [:]
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[String : CustomCardElementViewFactory]' (aka 'Dictionary<String, (any CustomCardElement) -> AnyView>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
53 | }
54 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift:26:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
24 | @available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
25 | private struct ContainerStyleKey: EnvironmentKey {
26 | static let defaultValue: ContainerStyle = .default
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ContainerStyle' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 | }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/Model/Common/ContainerStyle.swift:4:15: note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
2 |
3 | /// The style for a container element.
4 | public struct ContainerStyle: Codable, Hashable, RawRepresentable {
| `- note: consider making struct 'ContainerStyle' conform to the 'Sendable' protocol
5 | public private(set) var rawValue: String
6 |
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift:23:39: warning: non-constant range: not an integer range
21 | var body: some View {
22 | VStack(alignment: .leading) {
23 | ForEach(factSet.facts.indices) { row in
| `- warning: non-constant range: not an integer range
24 | HStack(alignment: .top, spacing: factSetConfiguration.spacing) {
25 | text(factSet.facts[row].title, configuration: factSetConfiguration.title)
[155/167] Compiling AdaptiveCardUI ImageSetView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[156/167] Compiling AdaptiveCardUI ImageSizeImageView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[157/167] Compiling AdaptiveCardUI ImageStyleView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[158/167] Compiling AdaptiveCardUI ImageView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[159/167] Compiling AdaptiveCardUI PrimitiveImageStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[160/167] Compiling AdaptiveCardUI Font.Design+FontType.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[161/167] Compiling AdaptiveCardUI Font.Weight+FontWeight.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[162/167] Compiling AdaptiveCardUI RichTextBlockView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[163/167] Compiling AdaptiveCardUI Text+Parsing.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[164/167] Compiling AdaptiveCardUI TextAlignment+HAlignment.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[165/167] Compiling AdaptiveCardUI TextBlockView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[166/167] Compiling AdaptiveCardUI TextElement.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
[167/167] Compiling AdaptiveCardUI resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift:18:9: note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
16 | @State private var contentHeight: CGFloat?
17 |
18 | init(
| |- note: calls to initializer 'init(image:aspectRatio:width:height:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
19 | image: SwiftUI.Image,
20 | aspectRatio: CGFloat,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
29 | }
30 |
31 | func makeBody(state: NetworkImageState) -> some View {
| `- note: add '@MainActor' to make instance method 'makeBody(state:)' part of global actor 'MainActor'
32 | switch state {
33 | case .loading, .failed:
:
45 | )
46 | } else {
47 | ImageSizeImageView(
| `- warning: call to main actor-isolated initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift:16:9: note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
14 | private let style: ImageStyle
15 |
16 | init(
| |- note: calls to initializer 'init(image:originalSize:size:horizontalAlignment:backgroundColor:style:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'View'
17 | image: SwiftUI.Image,
18 | originalSize: CGSize,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Text/TextElement.swift:83:16: warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
81 |
82 | private extension ISO8601DateFormatter {
83 | static let withInternetDateTime: ISO8601DateFormatter = {
| |- warning: static property 'withInternetDateTime' is not concurrency-safe because non-'Sendable' type 'ISO8601DateFormatter' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'withInternetDateTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | let formatter = ISO8601DateFormatter()
85 | formatter.formatOptions = [.withInternetDateTime]
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSISO8601DateFormatter.h:46:12: note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
44 |
45 | API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0))
46 | @interface NSISO8601DateFormatter : NSFormatter <NSSecureCoding> {
| `- note: class 'ISO8601DateFormatter' does not conform to the 'Sendable' protocol
47 | @private
48 | CFDateFormatterRef _formatter;
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:37:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
35 | case let .image(image, size):
36 | if width != nil || height != nil {
37 | FixedSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
38 | image: image,
39 | aspectRatio: size.width / size.height,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.size' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.size' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.horizontalAlignment' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.horizontalAlignment' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift:47:21: warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
45 | )
46 | } else {
47 | ImageSizeImageView(
| |- warning: sending 'self.style' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'self.style' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
48 | image: image,
49 | originalSize: size,
Build complete! (13.85s)
Build complete.
{
"default_localization" : "en",
"dependencies" : [
{
"identity" : "defaultcodable",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/gonzalezreal/DefaultCodable"
},
{
"identity" : "anyvalue",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/gonzalezreal/AnyValue"
},
{
"identity" : "networkimage",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/gonzalezreal/NetworkImage"
},
{
"identity" : "combine-schedulers",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.2",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/combine-schedulers"
},
{
"identity" : "swift-snapshot-testing",
"requirement" : {
"range" : [
{
"lower_bound" : "1.8.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-snapshot-testing"
}
],
"manifest_display_name" : "AdaptiveCardUI",
"name" : "AdaptiveCardUI",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.12"
},
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "10.0"
},
{
"name" : "watchos",
"version" : "3.0"
}
],
"products" : [
{
"name" : "AdaptiveCardUI",
"targets" : [
"AdaptiveCardUI"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AdaptiveCardUITests",
"module_type" : "SwiftTarget",
"name" : "AdaptiveCardUITests",
"path" : "Tests/AdaptiveCardUITests",
"product_dependencies" : [
"SnapshotTesting"
],
"sources" : [
"Configuration/ActionSetConfigurationTests.swift",
"Configuration/FontConfigurationTests.swift",
"Configuration/ImageSizeConfigurationTests.swift",
"Configuration/ShowCardConfigurationTests.swift",
"Configuration/SpacingConfigurationTests.swift",
"Logic/AdaptiveCardDuplicateIdentifiersTests.swift",
"Logic/AdaptiveCardFeatureAdaptableTests.swift",
"Logic/AdaptiveCardImageURLsTests.swift",
"Logic/AdaptiveCardStoreTests.swift",
"Logic/AdaptiveCardToggleVisibilityTests.swift",
"Model/ActionTests.swift",
"Model/BackgroundImageTests.swift",
"Model/BlockElementHeightTests.swift",
"Model/CardElementTests.swift",
"Model/ColumnSetElementTests.swift",
"Model/ColumnWidthTests.swift",
"Model/PixelDimensionTests.swift",
"Model/SemanticVersionTests.swift",
"Model/TargetElementTests.swift",
"Model/TextRunTests.swift",
"UI/ActionRenderingTests.swift",
"UI/AdaptiveCardConfiguration+Test.swift",
"UI/ColorTests.swift",
"UI/ColumnSetRenderingTests.swift",
"UI/ContainerRenderingTests.swift",
"UI/CustomCardElementRenderingTests.swift",
"UI/CustomCardElements/RepoLanguage.swift",
"UI/CustomCardElements/RepoLanguageView.swift",
"UI/CustomCardElements/StarCount.swift",
"UI/CustomCardElements/StarCountView.swift",
"UI/FactSetRenderingTests.swift",
"UI/ImageRenderingTests.swift",
"UI/ImageSetRenderingTests.swift",
"UI/RichTextBlockRenderingTests.swift",
"UI/TestHelpers.swift",
"UI/TextBlockRenderingTests.swift",
"UI/TextElementTests.swift"
],
"target_dependencies" : [
"AdaptiveCardUI"
],
"type" : "test"
},
{
"c99name" : "AdaptiveCardUI",
"module_type" : "SwiftTarget",
"name" : "AdaptiveCardUI",
"path" : "Sources/AdaptiveCardUI",
"product_dependencies" : [
"DefaultCodable",
"AnyValue",
"NetworkImage",
"CombineSchedulers"
],
"product_memberships" : [
"AdaptiveCardUI"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/AdaptiveCardUI/en.lproj/Localizable.strings",
"rule" : {
"process" : {
"localization" : "en"
}
}
}
],
"sources" : [
"Configuration/ActionSetConfiguration.swift",
"Configuration/AdaptiveCardConfiguration.swift",
"Configuration/Color+Configuration.swift",
"Configuration/ContainerConfiguration.swift",
"Configuration/ContainerStyleConfiguration.swift",
"Configuration/EnvironmentValues+Configuration.swift",
"Configuration/FactSetConfiguration.swift",
"Configuration/FontConfiguration.swift",
"Configuration/FontTypeConfiguration.swift",
"Configuration/ImageSizeConfiguration.swift",
"Configuration/ShowCardConfiguration.swift",
"Configuration/SpacingConfiguration.swift",
"Configuration/TextBlockConfiguration.swift",
"Configuration/TextColorConfiguration.swift",
"Configuration/TextColorPair.swift",
"Configuration/View+Configuration.swift",
"Logic/FeatureAdaptation/Action+FeatureAdaptable.swift",
"Logic/FeatureAdaptation/AdaptiveCard+FeatureAdaptable.swift",
"Logic/FeatureAdaptation/CardElement+FeatureAdaptable.swift",
"Logic/FeatureAdaptation/ColumnSetElement+FeatureAdaptable.swift",
"Logic/FeatureAdaptation/Fallback+FeatureAdaptable.swift",
"Logic/FeatureAdaptation/FeatureAdaptable.swift",
"Logic/Store/AdaptiveCard+DuplicateIdentifiers.swift",
"Logic/Store/AdaptiveCard+ImageURLs.swift",
"Logic/Store/AdaptiveCardCache.swift",
"Logic/Store/AdaptiveCardDownloader.swift",
"Logic/Store/AdaptiveCardStore.swift",
"Logic/Store/ImmediateAdaptiveCardCache.swift",
"Logic/ToggleVisibility/AdaptiveCard+Toggleable.swift",
"Logic/ToggleVisibility/CardElement+Toggleable.swift",
"Logic/ToggleVisibility/ColumnSetElement+Toggleable.swift",
"Logic/ToggleVisibility/Image+Toggleable.swift",
"Logic/ToggleVisibility/Toggleable.swift",
"Model/Actions/Action.swift",
"Model/Actions/ActionProtocol.swift",
"Model/Actions/ActionStyle.swift",
"Model/Actions/OpenURLAction.swift",
"Model/Actions/ShowCardAction.swift",
"Model/Actions/SubmitAction.swift",
"Model/Actions/TargetElement.swift",
"Model/Actions/ToggleVisibilityAction.swift",
"Model/Actions/UnknownAction.swift",
"Model/AdaptiveCard.swift",
"Model/Common/BackgroundImage.swift",
"Model/Common/BlockElementHeight.swift",
"Model/Common/ContainerStyle.swift",
"Model/Common/FontSize.swift",
"Model/Common/FontType.swift",
"Model/Common/FontWeight.swift",
"Model/Common/HAlignment.swift",
"Model/Common/ImageFillMode.swift",
"Model/Common/ImageSize.swift",
"Model/Common/ImageStyle.swift",
"Model/Common/ItemIdentifier.swift",
"Model/Common/PixelDimension.swift",
"Model/Common/SemanticVersion.swift",
"Model/Common/Spacing.swift",
"Model/Common/TextColor.swift",
"Model/Common/VAlignment.swift",
"Model/Containers/ActionSet.swift",
"Model/Containers/ColumnSet.swift",
"Model/Containers/Container.swift",
"Model/Containers/Fact.swift",
"Model/Containers/FactSet.swift",
"Model/Containers/ImageSet.swift",
"Model/Elements/CardElement.swift",
"Model/Elements/CardElementProtocol.swift",
"Model/Elements/Column.swift",
"Model/Elements/ColumnSetElement.swift",
"Model/Elements/ColumnSetElementProtocol.swift",
"Model/Elements/ColumnWidth.swift",
"Model/Elements/CustomCardElement.swift",
"Model/Elements/Fallback.swift",
"Model/Elements/Image.swift",
"Model/Elements/RichTextBlock.swift",
"Model/Elements/TextBlock.swift",
"Model/Elements/TextRun.swift",
"Model/Elements/UnknownCardElement.swift",
"Model/Elements/UnknownColumnSetElement.swift",
"UI/ActionSet/ActionSetView.swift",
"UI/ActionSet/ActionView.swift",
"UI/ActionSet/CapsuleButtonModifier.swift",
"UI/ActionSet/CapsuleButtonStyle.swift",
"UI/AdaptiveCard/AdaptiveCardFeatures.swift",
"UI/AdaptiveCard/AdaptiveCardSourceView.swift",
"UI/AdaptiveCard/AdaptiveCardView.swift",
"UI/AdaptiveCard/ErrorView.swift",
"UI/AdaptiveCard/PrimitiveCardView.swift",
"UI/BackgroundImage/BackgroundImageStyle.swift",
"UI/BackgroundImage/BackgroundImageView.swift",
"UI/BackgroundImage/CoverImageView.swift",
"UI/BackgroundImage/RepeatHorizontallyImageView.swift",
"UI/BackgroundImage/RepeatVerticallyImageView.swift",
"UI/CardElement/CardElementList.swift",
"UI/CardElement/CardElementView.swift",
"UI/CardElement/CustomCardElementView.swift",
"UI/CardElement/SpacingCardElementView.swift",
"UI/Color/Color+ARGBHex.swift",
"UI/ColumnSet/ColumnSetView.swift",
"UI/ColumnSet/ColumnView.swift",
"UI/ColumnSet/SpacingColumnView.swift",
"UI/Container/ContainerView.swift",
"UI/Container/EnvironmentValues+ContainerStyle.swift",
"UI/FactSet/FactSetView.swift",
"UI/Helpers/Alignment+VAlignment.swift",
"UI/Helpers/BlockElementHeight+CGFloat.swift",
"UI/Helpers/CollectSizeModifier.swift",
"UI/Helpers/FlowLayout.swift",
"UI/Helpers/HAlign.swift",
"UI/Helpers/HAlignment+Offset.swift",
"UI/Helpers/Padded.swift",
"UI/Helpers/PixelDimension+CGFloat.swift",
"UI/Helpers/SelectActionModifier.swift",
"UI/Helpers/VAlignment+Offset.swift",
"UI/Image/AutoImageView.swift",
"UI/Image/ContentSizeKey.swift",
"UI/Image/CustomImageStyle.swift",
"UI/Image/FixedSizeImageView.swift",
"UI/Image/ImageSetView.swift",
"UI/Image/ImageSizeImageView.swift",
"UI/Image/ImageStyleView.swift",
"UI/Image/ImageView.swift",
"UI/Image/PrimitiveImageStyle.swift",
"UI/Text/Font.Design+FontType.swift",
"UI/Text/Font.Weight+FontWeight.swift",
"UI/Text/RichTextBlockView.swift",
"UI/Text/Text+Parsing.swift",
"UI/Text/TextAlignment+HAlignment.swift",
"UI/Text/TextBlockView.swift",
"UI/Text/TextElement.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.