如何从一组现有项目创建解决方案文件(.sln)?

时间:2014-01-22 21:32:25

标签: .net visual-studio

有没有办法快速为大量项目创建.sln文件?

将200多个项目添加到解决方案中相当繁琐,我正在寻找一个遍历目录树的解决方案,让我能够从不同的位置一次性添加多个项目。

我真的在寻找能够做到这一点的漂亮GUI。

1 个答案:

答案 0 :(得分:2)

我认为没有工具可以做到这一点,但解决方案文件格式非常简单,所以自己很容易做到:

static void Main()
{
    string header = @"
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.21005.1
MinimumVisualStudioVersion = 10.0.40219.1";

    string globalSections = @"Global
    GlobalSection(SolutionConfigurationPlatforms) = preSolution
        Debug|Any CPU = Debug|Any CPU
        Release|Any CPU = Release|Any CPU
    EndGlobalSection
    GlobalSection(SolutionProperties) = preSolution
        HideSolutionNode = FALSE
    EndGlobalSection
EndGlobal";

    string csharpProjectTemplate = @"Project(""{{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}}"") = ""{0}"", ""{1}"", ""{2}""
EndProject";

    string rootPath = @"D:\MyProjects";
    string solutionName = "MySolution";
    string solutionPath = Path.Combine(rootPath, solutionName + ".sln");
    var projectFiles = Directory.GetFiles(rootPath, "*.csproj", SearchOption.AllDirectories);
    using (var stream = File.OpenWrite(solutionPath))
    using (var writer = new StreamWriter(stream))
    {
        writer.WriteLine(header);
        var xmlns = XNamespace.Get("http://schemas.microsoft.com/developer/msbuild/2003");
        foreach (var projectFile in projectFiles)
        {
            string name = Path.GetFileNameWithoutExtension(projectFile);
            string relativePath = projectFile.Substring(rootPath.Length).TrimStart('\\');
            var doc = XDocument.Load(projectFile);
            var guidElement = doc.Root.Elements(xmlns + "PropertyGroup")
                                      .Elements(xmlns + "ProjectGuid")
                                      .FirstOrDefault();
            if (guidElement == null)
                continue;

            string guid = guidElement.Value;

            string entry = string.Format(csharpProjectTemplate, name, relativePath, guid);
            writer.WriteLine(entry);
        }
        writer.WriteLine(globalSections);
    }
}

(您不需要生成ProjectConfigurationPlatforms部分,Visual Studio会在您打开解决方案时自动为您创建默认的构建配置)

上面的代码只处理C#项目;如果你有其他项目类型,你可能需要调整它(你需要为每个项目类型找到合适的GUID)。