The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of MusicXML, reference latest (bd65d6), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 14:34:32 UTC.

Swift 6 data race errors: 123

Build Command

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

Build Log

   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[346/366] Compiling MusicXML PrincipleVoice.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[347/366] Compiling MusicXML Print.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[348/366] Compiling MusicXML PrintStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[349/366] Compiling MusicXML PrintStyleAlign.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[350/366] Compiling MusicXML PrintStyleAlignObject.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[351/366] Compiling MusicXML PrintStyleTrillSound.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[352/366] Compiling MusicXML Printout.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[353/366] Compiling MusicXML Repeat.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[354/366] Compiling MusicXML Rest.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[355/366] Compiling MusicXML Rights.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[356/366] Compiling MusicXML Root.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[357/366] Compiling MusicXML RootAlter.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[358/366] Compiling MusicXML RootStep.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[359/366] Compiling MusicXML SMuFL.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[360/366] Compiling MusicXML SMuFLGlyph.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[361/366] Compiling MusicXML Scaling.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[362/366] Compiling MusicXML Scordatura.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[363/366] Compiling MusicXML Score.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[364/366] Compiling MusicXML ScoreInstrument.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[365/366] Compiling MusicXML ScorePart.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
[366/366] Compiling MusicXML Slash.swift
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:41:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
39 |     // MARK: - Type Properties
40 |
41 |     public static let a = RootStep(.a)
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:42:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
40 |
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:43:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
41 |     public static let a = RootStep(.a)
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:44:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
42 |     public static let b = RootStep(.b)
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:45:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
43 |     public static let c = RootStep(.c)
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:46:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
44 |     public static let d = RootStep(.d)
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
47 |     public static let g = RootStep(.g)
48 | }
/Users/admin/builder/spi-builder-workspace/Sources/MusicXML/Complex Types/RootStep.swift:47:23: warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | /// The root-step type represents the pitch step of the root of the current chord within the harmony
 9 | /// element.
10 | public struct RootStep {
   |               `- note: consider making struct 'RootStep' conform to the 'Sendable' protocol
11 |     // MARK: - Instance Properties
12 |
   :
45 |     public static let e = RootStep(.e)
46 |     public static let f = RootStep(.f)
47 |     public static let g = RootStep(.g)
   |                       |- warning: static property 'g' is not concurrency-safe because non-'Sendable' type 'RootStep' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'g' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | }
49 |
Build complete! (24.89s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "xmlcoder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.11.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/MaxDesiatov/XMLCoder"
    },
    {
      "identity" : "yams",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/jpsim/Yams.git"
    }
  ],
  "manifest_display_name" : "MusicXML",
  "name" : "MusicXML",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "MusicXML",
      "targets" : [
        "MusicXML"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MusicXMLTests",
      "module_type" : "SwiftTarget",
      "name" : "MusicXMLTests",
      "path" : "Tests/MusicXMLTests",
      "product_dependencies" : [
        "Yams"
      ],
      "sources" : [
        "Complex Types/AccidentalTests.swift",
        "Complex Types/AccordionRegistrationTests.swift",
        "Complex Types/ArrowTests.swift",
        "Complex Types/AttributesTests.swift",
        "Complex Types/BackupTests.swift",
        "Complex Types/BarlineTests.swift",
        "Complex Types/ClefTests.swift",
        "Complex Types/CreatorTests.swift",
        "Complex Types/DirectionTests.swift",
        "Complex Types/EndingTests.swift",
        "Complex Types/FretTests.swift",
        "Complex Types/HarmonicTests.swift",
        "Complex Types/HarmonyTests.swift",
        "Complex Types/IdentificationTests.swift",
        "Complex Types/KeyTests.swift",
        "Complex Types/LyricFontTests.swift",
        "Complex Types/MIDIDeviceTests.swift",
        "Complex Types/MIDIInstrumentTests.swift",
        "Complex Types/MeasureNumberingTests.swift",
        "Complex Types/MeasureStyleTests.swift",
        "Complex Types/MetronomeTests.swift",
        "Complex Types/MiscellaneousTests.swift",
        "Complex Types/MusicDataTests.swift",
        "Complex Types/NotationsTests.swift",
        "Complex Types/NoteTests.swift",
        "Complex Types/OrnamentsTests.swift",
        "Complex Types/PartListTests.swift",
        "Complex Types/PartNameTests.swift",
        "Complex Types/PartwiseMeasureTests.swift",
        "Complex Types/PartwisePartTests.swift",
        "Complex Types/PitchTests.swift",
        "Complex Types/PitchUnpitchedRestTests.swift",
        "Complex Types/RestTests.swift",
        "Complex Types/ScoreInstrumentTests.swift",
        "Complex Types/ScorePartTests.swift",
        "Complex Types/SoundTests.swift",
        "Complex Types/SystemLayoutTests.swift",
        "Complex Types/TimeTests.swift",
        "HelloWorld.swift",
        "LilyPondTests/ArticulationsTextsTests.swift",
        "LilyPondTests/ChordsFretsTests.swift",
        "LilyPondTests/DirectionsTests.swift",
        "LilyPondTests/LilyPondTestSuite.swift",
        "LilyPondTests/MidmeasureClefTests.swift",
        "LilyPondTests/PartNameLineBreakTests.swift",
        "LilyPondTests/PercussionTests.swift",
        "LilyPondTests/PickupMeasureChordnamesFiguredBassTests.swift",
        "LilyPondTests/RepeatWithAlternativesTests.swift",
        "LilyPondTests/SimpleRepeatTests.swift",
        "LilyPondTests/StabatMaterTests.swift",
        "LilyPondTests/StaffNoteStylesTests.swift",
        "LilyPondTests/TupletsTremoloTest.swift",
        "ReveTests.swift",
        "ScoreTests/ScoreTestCaseManifest.swift",
        "ScoreTests/ScoreTestExpectation.swift",
        "ScoreTests/ScoreTestSuite.swift",
        "TraversalConversionTests.swift",
        "XCTestHelpers.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "MusicXML"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MusicXML",
      "module_type" : "SwiftTarget",
      "name" : "MusicXML",
      "path" : "Sources/MusicXML",
      "product_dependencies" : [
        "XMLCoder"
      ],
      "product_memberships" : [
        "MusicXML"
      ],
      "sources" : [
        "Complex Types/Accidental.swift",
        "Complex Types/AccidentalMark.swift",
        "Complex Types/AccidentalText.swift",
        "Complex Types/Accord.swift",
        "Complex Types/AccordionRegistration.swift",
        "Complex Types/Appearance.swift",
        "Complex Types/Arpeggiate.swift",
        "Complex Types/Arrow.swift",
        "Complex Types/Articulation.swift",
        "Complex Types/Articulations.swift",
        "Complex Types/Attributes.swift",
        "Complex Types/Backup.swift",
        "Complex Types/BarStyleColor.swift",
        "Complex Types/Barline.swift",
        "Complex Types/Barre.swift",
        "Complex Types/Bass.swift",
        "Complex Types/BassAlter.swift",
        "Complex Types/BassStep.swift",
        "Complex Types/Beam.swift",
        "Complex Types/BeatRepeat.swift",
        "Complex Types/Beater.swift",
        "Complex Types/Bend.swift",
        "Complex Types/BendSound.swift",
        "Complex Types/Bezier.swift",
        "Complex Types/Bookmark.swift",
        "Complex Types/Bracket.swift",
        "Complex Types/BreathMark.swift",
        "Complex Types/Cancel.swift",
        "Complex Types/Clef.swift",
        "Complex Types/Creator.swift",
        "Complex Types/Credit.swift",
        "Complex Types/DashedFormatting.swift",
        "Complex Types/Dashes.swift",
        "Complex Types/Defaults.swift",
        "Complex Types/Degree.swift",
        "Complex Types/DegreeAlter.swift",
        "Complex Types/DegreeType.swift",
        "Complex Types/DegreeValue.swift",
        "Complex Types/Direction.swift",
        "Complex Types/DirectionType.swift",
        "Complex Types/Distance.swift",
        "Complex Types/Dynamic.swift",
        "Complex Types/Dynamics.swift",
        "Complex Types/Editorial.swift",
        "Complex Types/EditorialVoice.swift",
        "Complex Types/Encoding.swift",
        "Complex Types/Ending.swift",
        "Complex Types/Extend.swift",
        "Complex Types/Feature.swift",
        "Complex Types/Fermata.swift",
        "Complex Types/Figure.swift",
        "Complex Types/FiguredBass.swift",
        "Complex Types/Fingering.swift",
        "Complex Types/FirstFret.swift",
        "Complex Types/Font.swift",
        "Complex Types/FormattedText.swift",
        "Complex Types/Forward.swift",
        "Complex Types/Frame.swift",
        "Complex Types/FrameNote.swift",
        "Complex Types/Fret.swift",
        "Complex Types/Glissando.swift",
        "Complex Types/Grace.swift",
        "Complex Types/GroupBarline.swift",
        "Complex Types/GroupName.swift",
        "Complex Types/GroupSymbol.swift",
        "Complex Types/Grouping.swift",
        "Complex Types/HammerOnPullOff.swift",
        "Complex Types/Handbell.swift",
        "Complex Types/Harmonic.swift",
        "Complex Types/Harmony.swift",
        "Complex Types/HarmonyChord.swift",
        "Complex Types/HarpPedals.swift",
        "Complex Types/Header.swift",
        "Complex Types/HeelToe.swift",
        "Complex Types/Hole.swift",
        "Complex Types/HoleClosed.swift",
        "Complex Types/HorizontalTurn.swift",
        "Complex Types/Identification.swift",
        "Complex Types/Image.swift",
        "Complex Types/Instrument.swift",
        "Complex Types/Interchangeable.swift",
        "Complex Types/Internal/ComplexTypesInternalConformance.swift",
        "Complex Types/Inversion.swift",
        "Complex Types/Justify.swift",
        "Complex Types/Key.swift",
        "Complex Types/KeyOctave.swift",
        "Complex Types/Kind.swift",
        "Complex Types/Level.swift",
        "Complex Types/LevelDisplay.swift",
        "Complex Types/Line.swift",
        "Complex Types/LineWidth.swift",
        "Complex Types/LinearArrow.swift",
        "Complex Types/Link.swift",
        "Complex Types/Lyric.swift",
        "Complex Types/LyricFont.swift",
        "Complex Types/LyricLanguage.swift",
        "Complex Types/MIDIDevice.swift",
        "Complex Types/MIDIInstrument.swift",
        "Complex Types/MeasureAttributes.swift",
        "Complex Types/MeasureLayout.swift",
        "Complex Types/MeasureNumbering.swift",
        "Complex Types/MeasureRepeat.swift",
        "Complex Types/MeasureStyle.swift",
        "Complex Types/Metronome.swift",
        "Complex Types/MetronomeBeam.swift",
        "Complex Types/MetronomeNote.swift",
        "Complex Types/MetronomeTuplet.swift",
        "Complex Types/Miscellaneous.swift",
        "Complex Types/MiscellaneousField.swift",
        "Complex Types/Mordent.swift",
        "Complex Types/MultipleRest.swift",
        "Complex Types/MusicData.swift",
        "Complex Types/MusicXML.String.swift",
        "Complex Types/NameDisplay.swift",
        "Complex Types/NonArpeggiate.swift",
        "Complex Types/Notations.swift",
        "Complex Types/Note.swift",
        "Complex Types/NoteSize.swift",
        "Complex Types/NoteType.swift",
        "Complex Types/Notehead.swift",
        "Complex Types/NoteheadText.swift",
        "Complex Types/OctaveShift.swift",
        "Complex Types/Offset.swift",
        "Complex Types/Opus.swift",
        "Complex Types/Ornament.swift",
        "Complex Types/Ornaments.swift",
        "Complex Types/OtherAppearance.swift",
        "Complex Types/OtherDirection.swift",
        "Complex Types/OtherDynamics.swift",
        "Complex Types/OtherNotation.swift",
        "Complex Types/OtherPlay.swift",
        "Complex Types/PageLayout.swift",
        "Complex Types/PageMargins.swift",
        "Complex Types/PartGroup.swift",
        "Complex Types/PartList.swift",
        "Complex Types/PartName.swift",
        "Complex Types/PartSymbol.swift",
        "Complex Types/Partwise/Partwise.Measure.swift",
        "Complex Types/Partwise/Partwise.Part.swift",
        "Complex Types/Partwise/Partwise.swift",
        "Complex Types/Pedal.swift",
        "Complex Types/PedalTuning.swift",
        "Complex Types/PerMinute.swift",
        "Complex Types/Percussion.swift",
        "Complex Types/Pitch.swift",
        "Complex Types/PitchUnpitchedRest.swift",
        "Complex Types/PlacementPrintStyle.swift",
        "Complex Types/PlacementText.swift",
        "Complex Types/Play.swift",
        "Complex Types/Position.swift",
        "Complex Types/PrincipleVoice.swift",
        "Complex Types/Print.swift",
        "Complex Types/PrintStyle.swift",
        "Complex Types/PrintStyleAlign.swift",
        "Complex Types/PrintStyleAlignObject.swift",
        "Complex Types/PrintStyleTrillSound.swift",
        "Complex Types/Printout.swift",
        "Complex Types/Repeat.swift",
        "Complex Types/Rest.swift",
        "Complex Types/Rights.swift",
        "Complex Types/Root.swift",
        "Complex Types/RootAlter.swift",
        "Complex Types/RootStep.swift",
        "Complex Types/SMuFL.swift",
        "Complex Types/SMuFLGlyph.swift",
        "Complex Types/Scaling.swift",
        "Complex Types/Scordatura.swift",
        "Complex Types/Score.swift",
        "Complex Types/ScoreInstrument.swift",
        "Complex Types/ScorePart.swift",
        "Complex Types/Slash.swift",
        "Complex Types/Slide.swift",
        "Complex Types/Slur.swift",
        "Complex Types/Sound.swift",
        "Complex Types/StaffDetails.swift",
        "Complex Types/StaffLayout.swift",
        "Complex Types/StaffTuning.swift",
        "Complex Types/Stem.swift",
        "Complex Types/Stick.swift",
        "Complex Types/StringMute.swift",
        "Complex Types/StrongAccent.swift",
        "Complex Types/StyleText.swift",
        "Complex Types/Supports.swift",
        "Complex Types/SystemDividers.swift",
        "Complex Types/SystemLayout.swift",
        "Complex Types/SystemMargins.swift",
        "Complex Types/Technical.swift",
        "Complex Types/Technique.swift",
        "Complex Types/TextDecoration.swift",
        "Complex Types/TextElementData.swift",
        "Complex Types/TextFontColor.swift",
        "Complex Types/Tie.swift",
        "Complex Types/Tied.swift",
        "Complex Types/Ties.swift",
        "Complex Types/Time.swift",
        "Complex Types/TimeModification.swift",
        "Complex Types/Timewise/Timewise.Measure.swift",
        "Complex Types/Timewise/Timewise.Part.swift",
        "Complex Types/Timewise/Timewise.swift",
        "Complex Types/Transpose.swift",
        "Complex Types/Tremolo.swift",
        "Complex Types/TrillSound.swift",
        "Complex Types/Tuplet.swift",
        "Complex Types/TupletDot.swift",
        "Complex Types/TupletNumber.swift",
        "Complex Types/TupletPortion.swift",
        "Complex Types/TupletType.swift",
        "Complex Types/Unpitched.swift",
        "Complex Types/VirtualInstrument.swift",
        "Complex Types/WavyLine.swift",
        "Complex Types/Wedge.swift",
        "Complex Types/Work.swift",
        "Decoding/Decoding.swift",
        "InternalTypes/AttributeGroup.swift",
        "InternalTypes/Decoder.swift",
        "InternalTypes/Empty.swift",
        "InternalTypes/XMLAttributeGroupCodingKey.swift",
        "Simple Types/AboveBelow.swift",
        "Simple Types/AccidentalValue.swift",
        "Simple Types/AccordionMiddle.swift",
        "Simple Types/ArrowDirection.swift",
        "Simple Types/ArrowStyle.swift",
        "Simple Types/BackwardForward.swift",
        "Simple Types/BarStyle.swift",
        "Simple Types/BeamLevel.swift",
        "Simple Types/BeamValue.swift",
        "Simple Types/BeaterValue.swift",
        "Simple Types/BreathMarkValue.swift",
        "Simple Types/CSSFontSize.swift",
        "Simple Types/CancelLocation.swift",
        "Simple Types/CircularArrow.swift",
        "Simple Types/ClefSign.swift",
        "Simple Types/Color.swift",
        "Simple Types/CommaSeparatedText.swift",
        "Simple Types/DegreeSymbolValue.swift",
        "Simple Types/DegreeTypeValue.swift",
        "Simple Types/DistanceType.swift",
        "Simple Types/Divisions.swift",
        "Simple Types/Effect.swift",
        "Simple Types/EnclosureShape.swift",
        "Simple Types/EndingNumber.swift",
        "Simple Types/Fan.swift",
        "Simple Types/FermataShape.swift",
        "Simple Types/Fifths.swift",
        "Simple Types/FontSize.swift",
        "Simple Types/FontStyle.swift",
        "Simple Types/FontWeight.swift",
        "Simple Types/Glass.swift",
        "Simple Types/GroupBarlineValue.swift",
        "Simple Types/GroupSymbolValue.swift",
        "Simple Types/HandbellValue.swift",
        "Simple Types/HarmonyType.swift",
        "Simple Types/HoleClosedLocation.swift",
        "Simple Types/HoleClosedValue.swift",
        "Simple Types/KindValue.swift",
        "Simple Types/LeftCenterRight.swift",
        "Simple Types/LeftRight.swift",
        "Simple Types/LineEnd.swift",
        "Simple Types/LineShape.swift",
        "Simple Types/LineType.swift",
        "Simple Types/LineWidthType.swift",
        "Simple Types/MarginType.swift",
        "Simple Types/MeasureNumberingValue.swift",
        "Simple Types/Membrane.swift",
        "Simple Types/Metal.swift",
        "Simple Types/Mode.swift",
        "Simple Types/MusicXML.swift",
        "Simple Types/Mute.swift",
        "Simple Types/NonNegativeDecimal.swift",
        "Simple Types/NoteSizeType.swift",
        "Simple Types/NoteTypeValue.swift",
        "Simple Types/NoteheadValue.swift",
        "Simple Types/NumberOrNormal.swift",
        "Simple Types/OnOff.swift",
        "Simple Types/OverUnder.swift",
        "Simple Types/Pitched.swift",
        "Simple Types/PrincipleVoiceSymbol.swift",
        "Simple Types/RightLeftMiddle.swift",
        "Simple Types/SemiPitched.swift",
        "Simple Types/ShowFrets.swift",
        "Simple Types/ShowTuplet.swift",
        "Simple Types/StaffType.swift",
        "Simple Types/StartNote.swift",
        "Simple Types/StartStop.swift",
        "Simple Types/StartStopChangeContinue.swift",
        "Simple Types/StartStopContinue.swift",
        "Simple Types/StartStopDiscontinue.swift",
        "Simple Types/StartStopSingle.swift",
        "Simple Types/StemValue.swift",
        "Simple Types/Step.swift",
        "Simple Types/StickLocation.swift",
        "Simple Types/StickMaterial.swift",
        "Simple Types/StickType.swift",
        "Simple Types/Syllabic.swift",
        "Simple Types/SymbolSize.swift",
        "Simple Types/Tenths.swift",
        "Simple Types/TextDirection.swift",
        "Simple Types/TimeOnly.swift",
        "Simple Types/TimeRelation.swift",
        "Simple Types/TimeSeparator.swift",
        "Simple Types/TimeSymbol.swift",
        "Simple Types/TipDirection.swift",
        "Simple Types/TopBottom.swift",
        "Simple Types/TrillStep.swift",
        "Simple Types/TwoNoteTurn.swift",
        "Simple Types/UpDown.swift",
        "Simple Types/UpDownStopContinue.swift",
        "Simple Types/UprightInverted.swift",
        "Simple Types/VAlign.swift",
        "Simple Types/VAlignImage.swift",
        "Simple Types/WedgeType.swift",
        "Simple Types/Winged.swift",
        "Simple Types/Wood.swift",
        "Simple Types/YesNo.swift",
        "Simple Types/YesNoNumber.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.