Skip to content

Commit 4f19176

Browse files
authored
package -> @_spi public due to package exportability rule updates (#7561)
- **Explanation**: Cherry-pick swiftlang/swift#73161 to `releases/6.0` so that SwiftPM 6.0 can be built with a `main` Swift development snapshot - **Scope**: Changes access level of a member from `package` to SPI - **Risk**: Very low, just changes the access lavel - **Testing**: n/a - **Issue**: n/a - **Reviewer**: @MaxDesiatov and @bnbarham on #7525
1 parent cb497bd commit 4f19176

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sources/PackageModel/SwiftSDKs/SwiftSDK.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ public struct SwiftSDK: Equatable {
170170
}
171171

172172
/// Whether or not the receiver supports using XCTest.
173-
package let xctestSupport: XCTestSupport
173+
@_spi(SwiftPMInternal)
174+
public let xctestSupport: XCTestSupport
174175

175176
/// Root directory path of the SDK used to compile for the target triple.
176177
@available(*, deprecated, message: "use `pathsConfiguration.sdkRootPath` instead")

0 commit comments

Comments
 (0)