You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/SWBCore/TargetDependencyResolver.swift
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -79,12 +79,12 @@ public struct TargetBuildGraph: TargetGraph, Sendable {
79
79
}
80
80
81
81
/// The workspace context this graph is for.
82
-
publicletworkspaceContext:WorkspaceContext
82
+
privateletworkspaceContext:WorkspaceContext
83
83
84
84
/// The build request the graph is for.
85
-
publicletbuildRequest:BuildRequest
85
+
privateletbuildRequest:BuildRequest
86
86
87
-
publicletbuildRequestContext:BuildRequestContext
87
+
privateletbuildRequestContext:BuildRequestContext
88
88
89
89
/// The complete list of configured targets, in topological order. That is, each target will be included in the array only after all of the targets that it depends on (unless there is a target dependency cycle).
// Construct an appropriate set of provisioning inputs. This is important for performance testing to ensure we end up with representative code signing tasks, which trigger the mutable node analysis during build description construction.
if workspaceContext.userPreferences.enableDebugActivityLogs {
154
155
results.delegate.checkDiagnostics([
155
156
"FwkTarget_mac rejected as an implicit dependency because its SUPPORTED_PLATFORMS (macosx) does not contain this target's platform (iphoneos). (in target 'iosApp' from project 'aProject')",
156
157
"FwkTarget_ios rejected as an implicit dependency because its SUPPORTED_PLATFORMS (iphoneos iphonesimulator) does not contain this target's platform (macosx). (in target 'macApp' from project 'aProject')",
if workspaceContext.userPreferences.enableDebugActivityLogs {
274
276
results.delegate.checkDiagnostics([
275
277
"Watchable WatchKit App rejected as an implicit dependency because its SUPPORTED_PLATFORMS (watchos watchsimulator) does not contain this target's platform (iphoneos). (in target 'iosApp' from project 'aProject')",
276
278
"Watchable WatchKit App rejected as an implicit dependency because its SUPPORTED_PLATFORMS (watchos watchsimulator) does not contain this target's platform (iphonesimulator). (in target 'iosApp' from project 'aProject')"
if workspaceContext.userPreferences.enableDebugActivityLogs {
777
780
results.delegate.checkDiagnostics([
778
781
"FwkTarget rejected as an implicit dependency because its SUPPORTED_PLATFORMS (iphoneos iphonesimulator) does not contain this target's platform (macosx). (in target 'catalystApp3' from project 'aProject')",
779
782
"FwkTarget rejected as an implicit dependency because its SUPPORTED_PLATFORMS (iphoneos iphonesimulator) does not contain this target's platform (macosx). (in target 'osxApp' from project 'aProject')",
0 commit comments