Browse Source

Set version number to 2.2.0.

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.1@2531 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Daniel Grunwald 18 years ago
parent
commit
7d14a04103
  1. 1874
      doc/technotes/AddInManager.rtf
  2. 2
      src/Automated.proj
  3. 9
      src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs
  4. 2
      src/Main/GlobalAssemblyInfo.template

1874
doc/technotes/AddInManager.rtf

File diff suppressed because it is too large Load Diff

2
src/Automated.proj

@ -11,7 +11,7 @@
<SharpDevelopSrc>$(ProjectDir)\src</SharpDevelopSrc> <SharpDevelopSrc>$(ProjectDir)\src</SharpDevelopSrc>
<SharpDevelopBin>$(ProjectDir)\bin</SharpDevelopBin> <SharpDevelopBin>$(ProjectDir)\bin</SharpDevelopBin>
<MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\Tools\MSBuildCommunityTasks</MSBuildCommunityTasksPath> <MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\Tools\MSBuildCommunityTasks</MSBuildCommunityTasksPath>
<ArtefactPrefix>SharpDevelop_2.1.0.</ArtefactPrefix> <ArtefactPrefix>SharpDevelop_2.2.0.</ArtefactPrefix>
<NUnitToolPath>$(MSBuildProjectDirectory)\Tools\NUnit</NUnitToolPath> <NUnitToolPath>$(MSBuildProjectDirectory)\Tools\NUnit</NUnitToolPath>
<!-- we cannot use <MSBuild> to build a solution because --> <!-- we cannot use <MSBuild> to build a solution because -->

9
src/Main/Core/Project/Src/AddInTree/AddIn/AddInReference.cs

@ -92,6 +92,15 @@ namespace ICSharpCode.Core
} else { } else {
reference.maximumVersion = reference.minimumVersion = ParseVersion(version, hintPath); reference.maximumVersion = reference.minimumVersion = ParseVersion(version, hintPath);
} }
if (reference.Name == "SharpDevelop") {
// HACK: SD 2.1 AddIns work with SharpDevelop 2.2
// Because some 2.1 AddIns restrict themselves to SD 2.1, we extend the
// supported SD range.
if (reference.maximumVersion == new Version("2.1")) {
reference.maximumVersion = new Version("2.2");
}
}
} }
return reference; return reference;
} }

2
src/Main/GlobalAssemblyInfo.template

@ -25,7 +25,7 @@ using System.Reflection;
internal static class RevisionClass internal static class RevisionClass
{ {
public const string Major = "2"; public const string Major = "2";
public const string Minor = "1"; public const string Minor = "2";
public const string Build = "0"; public const string Build = "0";
public const string Revision = "-INSERTREVISION-"; public const string Revision = "-INSERTREVISION-";

Loading…
Cancel
Save