From 3e697f8582752e49ce2971617c9d7d4ea4ee05dc Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Fri, 11 May 2012 18:07:23 +0200 Subject: [PATCH] Set version number to 4.3. --- src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs | 6 +++--- src/Main/GlobalAssemblyInfo.template | 4 ++-- src/Setup/Files.wxs | 4 ++-- src/Setup/Setup.wxs | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs b/src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs index 5627d72db4..3f7b062e0d 100644 --- a/src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs +++ b/src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs @@ -96,11 +96,11 @@ namespace ICSharpCode.Core } if (reference.Name == "SharpDevelop") { - // HACK: SD 4.1 AddIns work with SharpDevelop 4.2 + // HACK: SD 4.1/4.2 AddIns work with SharpDevelop 4.3 // Because some 4.1 AddIns restrict themselves to SD 4.1, we extend the // supported SD range. - if (reference.maximumVersion == new Version("4.1")) { - reference.maximumVersion = new Version("4.2"); + if (reference.maximumVersion == new Version("4.1") || reference.maximumVersion == new Version("4.2")) { + reference.maximumVersion = new Version("4.3"); } } } diff --git a/src/Main/GlobalAssemblyInfo.template b/src/Main/GlobalAssemblyInfo.template index 1cf08dcdd2..38879bd325 100644 --- a/src/Main/GlobalAssemblyInfo.template +++ b/src/Main/GlobalAssemblyInfo.template @@ -27,10 +27,10 @@ using System.Reflection; internal static class RevisionClass { public const string Major = "4"; - public const string Minor = "2"; + public const string Minor = "3"; public const string Build = "0"; public const string Revision = "$INSERTREVISION$"; - public const string VersionName = null; + public const string VersionName = "alpha"; public const string FullVersion = Major + "." + Minor + "." + Build + ".$INSERTREVISION$$INSERTBRANCHPOSTFIX$$INSERTVERSIONNAMEPOSTFIX$"; } diff --git a/src/Setup/Files.wxs b/src/Setup/Files.wxs index c70aaa1083..4ce014a305 100644 --- a/src/Setup/Files.wxs +++ b/src/Setup/Files.wxs @@ -1917,7 +1917,7 @@ - + - + - + -