2

我们在向导中有以下代码,可将现有项目添加到新解决方案中:

//generating files
if (dte.Solution.Projects.Count < 1) // Solution is empty or doesn't exist
{
    dte.Solution.Create(oneFolderHigher(Params.OutputDir, solutionName),
                        solutionFileName(solutionName));
}

// adding created project to solution
dte.Solution.AddFromFile(Path.Combine(Params.ProjectRootFolder, 
                                      Params.ProjectName + ".csproj"));

它在 MS Visual Studio 2010 下运行良好,但在 2012 下失败(我尝试了第二个参数):

System.Runtime.InteropServices.COMException (0x80004004):Wizard.Generator.NewProjectGenerator.Generate(Action`1 logMessage) 的 EnvDTE.SolutionClass.AddFromFile(String FileName, Boolean Exclusive) 中的操作中止(HRESULT 异常:0x80004004 (E_ABORT))在 Wizard.Forms.WizardForm.Finish()

在此错误之后,我手动将新项目添加到解决方案中,一切正常。但我们不能只说“对不起,我们无法为您添加新生成的项目,请您自行添加。”

MSDN 建议:

如果您想在执行期间禁止其 UI,您可以使用 LaunchWizard 方法而不是 AddFromFile 来执行向导。LaunchWizard 有一个允许您禁用 UI 的参数。

但是这种方法需要一些向导文件,所以不能解决。

有人可以帮忙吗?向导从“新建 -> 项目”菜单运行。

4

1 回答 1

0

这是该问题的解决方法(由我的老板提出):

Before adding the project to solution, project file should be converted to
VS2012 format.

但是代码有点难看:

using (StreamReader sr = new StreamReader(newFile))
using (StreamWriter sw = new StreamWriter(projectFile, false, Encoding.UTF8))
{
     while (sr.Peek() >= 0)
     {
         string s = sr.ReadLine();
         if (s.Contains("<Project ToolsVersion=\"4.0\""))
         {
              s = s + Environment.NewLine + importProject;
         }
... and so on

也许有人知道如何做到这一点真棒?我的意思是转换。我会让这个问题在一段时间内无人回答。静候你的评价。

于 2012-07-26T11:11:36.863 回答