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