Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@microsoft.com>2019-07-26 12:28:09 +0300
committerMatt Ward <ward.matt@gmail.com>2019-08-03 13:31:37 +0300
commitfc714a073c1e602085eae20adf4f615afc0cd961 (patch)
tree91f2814e420191f24c91afb81c9b988846573f8b /main/build
parent8d7716ce40b01d19cb9d73de6a962539aa46bacd (diff)
[build] Update min Mono version to 6.4.0.94
App bundle will not start unless Mono 6.4.0.94 or later is installed. Xamarin.Mac 5.16 depends requires Mono 6.4.0.94 or later. Visual Studio failed to start. Some of the assemblies required to run Visual Studio (for example gtk-sharp)may not be properly installed in the GAC. System.Exception: Toolkit could not be loaded ---> System.NotSupportedException: This version of Xamarin.Mac requires Mono 6.4.0.94, but found Mono 6.0.0.311. at ObjCRuntime.Runtime.VerifyMonoVersion () [0x000b1] in /Library/Frameworks/Xamarin.Mac.framework/Versions/5.16.1.0/src/Xamarin.Mac/ObjCRuntime/Runtime.mac.cs:153 Fixes VSTS #953417 - No error message when running VS Mac with unsupported Mono version
Diffstat (limited to 'main/build')
-rw-r--r--main/build/MacOSX/monostub.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/build/MacOSX/monostub.mm b/main/build/MacOSX/monostub.mm
index 36aca3a6ef..daec2cb615 100644
--- a/main/build/MacOSX/monostub.mm
+++ b/main/build/MacOSX/monostub.mm
@@ -260,7 +260,7 @@ main (int argc, char **argv)
}
// can be overridden with plist string MonoMinVersion
- NSString *req_mono_version = @"6.0.0.296";
+ NSString *req_mono_version = @"6.4.0.94";
NSDictionary *plist = [mainBundle infoDictionary];
if (plist) {