The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Aperture, reference main (85e924), with Swift 6.0 for macOS (SPM) on 1 Jan 2026 19:20:53 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: expected identifier after '.' expression
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
  9 |
 10 | /// A configuration instance for photo capturing.
 11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
    |               `- note: in declaration of 'PhotoCaptureConfiguration'
 12 |     /// A boolean value indicating whether to capture a live photo.
 13 |     public var capturesLivePhoto: Bool = false
    :
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: expected declaration
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected identifier after '.' expression
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected ',' separator
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected parameter name followed by ':'
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |         `- error: expected identifier in enum 'case' declaration
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: consecutive declarations on a line must be separated by ';'
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |              `- error: expected declaration
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |         `- error: expected identifier in enum 'case' declaration
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: consecutive declarations on a line must be separated by ';'
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
    :
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |              `- error: expected declaration
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |         `- error: expected identifier in enum 'case' declaration
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: consecutive declarations on a line must be separated by ';'
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
    :
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |              `- error: expected declaration
128 |
129 |         public var description: String {
[31/56] Compiling Aperture PhotoCaptureService.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: expected identifier after '.' expression
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
  9 |
 10 | /// A configuration instance for photo capturing.
 11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
    |               `- note: in declaration of 'PhotoCaptureConfiguration'
 12 |     /// A boolean value indicating whether to capture a live photo.
 13 |     public var capturesLivePhoto: Bool = false
    :
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: expected declaration
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected identifier after '.' expression
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected ',' separator
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected parameter name followed by ':'
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |         `- error: expected identifier in enum 'case' declaration
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: consecutive declarations on a line must be separated by ';'
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |              `- error: expected declaration
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |         `- error: expected identifier in enum 'case' declaration
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: consecutive declarations on a line must be separated by ';'
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
    :
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |              `- error: expected declaration
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |         `- error: expected identifier in enum 'case' declaration
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: consecutive declarations on a line must be separated by ';'
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
    :
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |              `- error: expected declaration
128 |
129 |         public var description: String {
[32/56] Compiling Aperture PhotoFileDataRepresentationCustomizer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: expected identifier after '.' expression
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
  9 |
 10 | /// A configuration instance for photo capturing.
 11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
    |               `- note: in declaration of 'PhotoCaptureConfiguration'
 12 |     /// A boolean value indicating whether to capture a live photo.
 13 |     public var capturesLivePhoto: Bool = false
    :
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: expected declaration
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected identifier after '.' expression
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected ',' separator
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected parameter name followed by ':'
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |         `- error: expected identifier in enum 'case' declaration
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: consecutive declarations on a line must be separated by ';'
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |              `- error: expected declaration
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |         `- error: expected identifier in enum 'case' declaration
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: consecutive declarations on a line must be separated by ';'
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
    :
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |              `- error: expected declaration
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |         `- error: expected identifier in enum 'case' declaration
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: consecutive declarations on a line must be separated by ';'
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
    :
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |              `- error: expected declaration
128 |
129 |         public var description: String {
[33/56] Compiling Aperture AnyEquatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected identifier after '.' expression
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: expected identifier after '.' expression
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: consecutive declarations on a line must be separated by ';'
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: consecutive declarations on a line must be separated by ';'
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:51: error: expected declaration
  9 |
 10 | /// A configuration instance for photo capturing.
 11 | public struct PhotoCaptureConfiguration: Hashable, Sendable {
    |               `- note: in declaration of 'PhotoCaptureConfiguration'
 12 |     /// A boolean value indicating whether to capture a live photo.
 13 |     public var capturesLivePhoto: Bool = false
    :
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                   `- error: expected declaration
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected identifier after '.' expression
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected identifier after '.' expression
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected ',' separator
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected ',' separator
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:35: error: expected parameter name followed by ':'
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                   `- error: expected parameter name followed by ':'
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: expected identifier in enum 'case' declaration
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |         `- error: expected identifier in enum 'case' declaration
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:9: error: consecutive declarations on a line must be separated by ';'
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |              `- error: expected declaration
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: expected identifier in enum 'case' declaration
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |         `- error: expected identifier in enum 'case' declaration
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:9: error: consecutive declarations on a line must be separated by ';'
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
    :
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |              `- error: expected declaration
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: expected identifier in enum 'case' declaration
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |         `- error: expected identifier in enum 'case' declaration
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:9: error: consecutive declarations on a line must be separated by ';'
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |         `- error: consecutive declarations on a line must be separated by ';'
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:14: error: expected declaration
111 |     /// satisfy the requested resolution, but the final output may differ depending on device
112 |     /// capabilities and capture conditions.
113 |     public enum Resolution: Sendable, Hashable, CustomStringConvertible {
    |                 `- note: in declaration of 'Resolution'
114 |         /// Prefers `48MP` photo delivery.
115 |         ///
    :
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |              `- error: expected declaration
128 |
129 |         public var description: String {
[34/56] Compiling Aperture Cancellables.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[35/56] Compiling Aperture DeviceType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[36/56] Compiling Aperture Logging.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[37/56] Compiling Aperture Sequence++.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[38/56] Compiling Aperture CameraPreview.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[39/56] Compiling Aperture CameraError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[40/56] Compiling Aperture CameraFlash.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[41/56] Compiling Aperture AutomaticCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[42/56] Compiling Aperture BuiltInCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[43/56] Compiling Aperture TelephotoCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[44/56] Compiling Aperture UltraWideAngleCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[45/56] Compiling Aperture Camera.PhotoCapture.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.State.swift:13:31: error: cannot find type 'SendableMetatype' in scope
 11 | extension Camera {
 12 |     @Observable
 13 |     public final class State: SendableMetatype {
    |                               `- error: cannot find type 'SendableMetatype' in scope
 14 |         unowned internal var camera: Camera!
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.swift:17:28: error: cannot find type 'SendableMetatype' in scope
 15 | @Observable
 16 | @dynamicMemberLookup
 17 | public final class Camera: SendableMetatype, Logging {
    |                            `- error: cannot find type 'SendableMetatype' in scope
 18 |     /// A camera coordinator that consists of camera IO, session, rotation coordinator, etc.
 19 |     let coordinator: CameraCoordinator
[46/56] Compiling Aperture Camera.State.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.State.swift:13:31: error: cannot find type 'SendableMetatype' in scope
 11 | extension Camera {
 12 |     @Observable
 13 |     public final class State: SendableMetatype {
    |                               `- error: cannot find type 'SendableMetatype' in scope
 14 |         unowned internal var camera: Camera!
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.swift:17:28: error: cannot find type 'SendableMetatype' in scope
 15 | @Observable
 16 | @dynamicMemberLookup
 17 | public final class Camera: SendableMetatype, Logging {
    |                            `- error: cannot find type 'SendableMetatype' in scope
 18 |     /// A camera coordinator that consists of camera IO, session, rotation coordinator, etc.
 19 |     let coordinator: CameraCoordinator
[47/56] Compiling Aperture Camera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.State.swift:13:31: error: cannot find type 'SendableMetatype' in scope
 11 | extension Camera {
 12 |     @Observable
 13 |     public final class State: SendableMetatype {
    |                               `- error: cannot find type 'SendableMetatype' in scope
 14 |         unowned internal var camera: Camera!
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.swift:17:28: error: cannot find type 'SendableMetatype' in scope
 15 | @Observable
 16 | @dynamicMemberLookup
 17 | public final class Camera: SendableMetatype, Logging {
    |                            `- error: cannot find type 'SendableMetatype' in scope
 18 |     /// A camera coordinator that consists of camera IO, session, rotation coordinator, etc.
 19 |     let coordinator: CameraCoordinator
[48/56] Compiling Aperture CameraActor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.State.swift:13:31: error: cannot find type 'SendableMetatype' in scope
 11 | extension Camera {
 12 |     @Observable
 13 |     public final class State: SendableMetatype {
    |                               `- error: cannot find type 'SendableMetatype' in scope
 14 |         unowned internal var camera: Camera!
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.swift:17:28: error: cannot find type 'SendableMetatype' in scope
 15 | @Observable
 16 | @dynamicMemberLookup
 17 | public final class Camera: SendableMetatype, Logging {
    |                            `- error: cannot find type 'SendableMetatype' in scope
 18 |     /// A camera coordinator that consists of camera IO, session, rotation coordinator, etc.
 19 |     let coordinator: CameraCoordinator
[49/56] Compiling Aperture CameraCaptureProfile.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.State.swift:13:31: error: cannot find type 'SendableMetatype' in scope
 11 | extension Camera {
 12 |     @Observable
 13 |     public final class State: SendableMetatype {
    |                               `- error: cannot find type 'SendableMetatype' in scope
 14 |         unowned internal var camera: Camera!
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.swift:17:28: error: cannot find type 'SendableMetatype' in scope
 15 | @Observable
 16 | @dynamicMemberLookup
 17 | public final class Camera: SendableMetatype, Logging {
    |                            `- error: cannot find type 'SendableMetatype' in scope
 18 |     /// A camera coordinator that consists of camera IO, session, rotation coordinator, etc.
 19 |     let coordinator: CameraCoordinator
[50/56] Compiling Aperture CameraCoordinator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.State.swift:13:31: error: cannot find type 'SendableMetatype' in scope
 11 | extension Camera {
 12 |     @Observable
 13 |     public final class State: SendableMetatype {
    |                               `- error: cannot find type 'SendableMetatype' in scope
 14 |         unowned internal var camera: Camera!
 15 |
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Camera.swift:17:28: error: cannot find type 'SendableMetatype' in scope
 15 | @Observable
 16 | @dynamicMemberLookup
 17 | public final class Camera: SendableMetatype, Logging {
    |                            `- error: cannot find type 'SendableMetatype' in scope
 18 |     /// A camera coordinator that consists of camera IO, session, rotation coordinator, etc.
 19 |     let coordinator: CameraCoordinator
[51/56] Compiling Aperture WideAngleCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[52/56] Compiling Aperture CameraPosition.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[53/56] Compiling Aperture ContinuityCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[54/56] Compiling Aperture DeskViewCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[55/56] Compiling Aperture ExternalCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
[56/56] Compiling Aperture SemanticCamera.swift
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:41:52: error: 'm' is not a valid digit in integer literal
 39 |     /// - SeeAlso: ``PhotoCaptureService/options``
 40 |     /// - SeeAlso: ``PhotoCaptureOptions``
 41 |     public var preferredResolution: Resolution = .`12mp`
    |                                                    `- error: 'm' is not a valid digit in integer literal
 42 |     /// A settings that indicates how to prioritize photo quality against photo delivery speed.
 43 |     public var qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:48:36: error: 'm' is not a valid digit in integer literal
 46 |     public init(
 47 |         capturesLivePhoto: Bool = false,
 48 |         resolution: Resolution = .`12mp`,
    |                                    `- error: 'm' is not a valid digit in integer literal
 49 |         dataFormat: DataFormat = .heif,
 50 |         qualityPrioritization: AVCapturePhotoOutput.QualityPrioritization = .balanced
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:117:15: error: 'm' is not a valid digit in integer literal
115 |         ///
116 |         /// Requires hardware support. Fusion camera may not support `48MP` photo delivery.
117 |         case `48mp`
    |               `- error: 'm' is not a valid digit in integer literal
118 |         /// Prefers `24MP` photo delivery.
119 |         ///
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:125:15: error: 'm' is not a valid digit in integer literal
123 |         ///
124 |         /// - SeeAlso: ``PhotoCaptureConfiguration/preferredResolution``
125 |         case `24mp`
    |               `- error: 'm' is not a valid digit in integer literal
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:127:15: error: 'm' is not a valid digit in integer literal
125 |         case `24mp`
126 |         /// Prefers `12MP` photo delivery.
127 |         case `12mp`
    |               `- error: 'm' is not a valid digit in integer literal
128 |
129 |         public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:131:24: error: 'm' is not a valid digit in integer literal
129 |         public var description: String {
130 |             switch self {
131 |                 case .`48mp`: "48MP"
    |                        `- error: 'm' is not a valid digit in integer literal
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:132:24: error: 'm' is not a valid digit in integer literal
130 |             switch self {
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
    |                        `- error: 'm' is not a valid digit in integer literal
133 |                 case .`12mp`: "12MP"
134 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:133:24: error: 'm' is not a valid digit in integer literal
131 |                 case .`48mp`: "48MP"
132 |                 case .`24mp`: "24MP"
133 |                 case .`12mp`: "12MP"
    |                        `- error: 'm' is not a valid digit in integer literal
134 |             }
135 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:138:24: error: 'm' is not a valid digit in integer literal
136 |         var _minimumPixelCount: Int32 {
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:139:24: error: 'm' is not a valid digit in integer literal
137 |             switch self {
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
140 |                 case .`12mp`: 12_000_000
141 |             }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:140:24: error: 'm' is not a valid digit in integer literal
138 |                 case .`48mp`: 48_000_000
139 |                 case .`24mp`: 24_000_000
140 |                 case .`12mp`: 12_000_000
    |                        `- error: 'm' is not a valid digit in integer literal
141 |             }
142 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Aperture/Capture/Output Services/Photo Capture/PhotoCaptureConfiguration.swift:152:38: error: 'm' is not a valid digit in integer literal
150 |     public func configuredFor24MPPhotoCapture() -> Self {
151 |         var copy = self
152 |         copy.preferredResolution = .`24mp`
    |                                      `- error: 'm' is not a valid digit in integer literal
153 |         copy.qualityPrioritization = .quality
154 |         return copy
BUILD FAILURE 6.0 macosSpm