|
|
|
|
@ -30,6 +30,7 @@ namespace ICSharpCode.SharpDevelop.Project
@@ -30,6 +30,7 @@ namespace ICSharpCode.SharpDevelop.Project
|
|
|
|
|
{ |
|
|
|
|
public const int SolutionVersionVS2005 = 9; |
|
|
|
|
public const int SolutionVersionVS2008 = 10; |
|
|
|
|
public const int SolutionVersionVS2010 = 11; |
|
|
|
|
|
|
|
|
|
/// <summary>contains <GUID, (IProject/ISolutionFolder)> pairs.</summary>
|
|
|
|
|
Dictionary<string, ISolutionFolder> guidDictionary = new Dictionary<string, ISolutionFolder>(); |
|
|
|
|
@ -368,6 +369,8 @@ namespace ICSharpCode.SharpDevelop.Project
@@ -368,6 +369,8 @@ namespace ICSharpCode.SharpDevelop.Project
|
|
|
|
|
sw.WriteLine("# Visual Studio 2005"); |
|
|
|
|
} else if (versionNumber == SolutionVersionVS2008) { |
|
|
|
|
sw.WriteLine("# Visual Studio 2008"); |
|
|
|
|
} else if (versionNumber == SolutionVersionVS2010) { |
|
|
|
|
sw.WriteLine("# Visual Studio 10"); |
|
|
|
|
} |
|
|
|
|
sw.WriteLine("# SharpDevelop " + RevisionClass.FullVersion); |
|
|
|
|
sw.Write(projectSection.ToString()); |
|
|
|
|
@ -480,6 +483,7 @@ namespace ICSharpCode.SharpDevelop.Project
@@ -480,6 +483,7 @@ namespace ICSharpCode.SharpDevelop.Project
|
|
|
|
|
break; |
|
|
|
|
case "9.00": |
|
|
|
|
case "10.00": |
|
|
|
|
case "11.00": |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
MessageService.ShowErrorFormatted("${res:SharpDevelop.Solution.UnknownSolutionVersion}", match.Result("${Version}")); |
|
|
|
|
|