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
LogAppManifestError(MSBStrings.E7099/* The UIDeviceFamily value '6' requires macOS 11.0. Please set the 'SupportedOSPlatformVersion' in the project file to at least 14.0 (the Mac Catalyst version equivalent of macOS 11.0). The current value is {0} (equivalent to macOS {1}). */,miniOSVersion,minimumOSVersion);
Log.LogError(MSBStrings.E0044v2/* Could not find a valid Xcode app bundle at '{0}'. Please verify that 'xcode-select -p' points to your Xcode installation. For more information see https://aka.ms/macios-missing-xcode. */,AppleSdkSettings.InvalidDeveloperRoot);
172
+
Log.LogError(MSBStrings.E0044v2/* Could not find a valid Xcode app bundle at '{0}'. Please verify that 'xcode-select -p' points to your Xcode installation. For more information see https://aka.ms/macios-missing-xcode. */,appleSdkSettings?.XcodeLocation);
// Log.LogError (MSBStrings.E7164 /* The task '{0}' is trying to call an external process, but a path to Xcode has not been provided. Please file an issue at https://github.com/dotnet/macios/issues/new/choose. */, task.GetType ().Name);
34
+
Log.LogError("The task '{0}' requires SdkDevPath to be set.\n{1}",GetType().Name,Environment.StackTrace);
35
+
}
36
+
37
+
varxcodeLocator=newXcodeLocator(this);
38
+
if(!xcodeLocator.TryLocatingXcode(SdkDevPath))
39
+
Log.LogError(MSBStrings.E0086/* Could not find a valid Xcode developer path */);
0 commit comments