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
reason ="\nResolution is required because the requirement of package '\(package.name)' changed: \(state) => \(requirement)"
2047
+
case.other:
2048
+
reason ="\nResolution is required for an unknown reason"
2049
+
}
2050
+
}else{
2051
+
reason =""
2052
+
}
2053
+
2037
2054
if !fileSystem.exists(self.location.resolvedVersionsFile){
2038
-
diagnostics.emit(error:"a resolved file is required when automatic dependency resolution is disabled and should be placed at \(self.location.resolvedVersionsFile.pathString)")
2055
+
diagnostics.emit(error:"a resolved file is required when automatic dependency resolution is disabled and should be placed at \(self.location.resolvedVersionsFile.pathString)\(reason)")
2039
2056
}else{
2040
-
diagnostics.emit(error:"an out-of-date resolved file was detected at \(self.location.resolvedVersionsFile.pathString), which is not allowed when automatic dependency resolution is disabled; please make sure to update the file to reflect the changes in dependencies")
2057
+
diagnostics.emit(error:"an out-of-date resolved file was detected at \(self.location.resolvedVersionsFile.pathString), which is not allowed when automatic dependency resolution is disabled; please make sure to update the file to reflect the changes in dependencies\(reason)")
0 commit comments