【发布时间】:2016-10-15 13:47:20
【问题描述】:
我正在尝试使用 EnvDTE 以编程方式创建一个 Visual C++ Empty 项目。但组合项目文件夹不包含 vcxproj 和 vcxproj.filter 文件。由于我在 Visual Studio 中打开该解决方案时,文件结构已损坏。如何通过 EnvDTE 创建正确的 Empty C++ 项目?在哪里可以找到 C++ 空项目模板?
InitializeComponent();
System.Type type = System.Type.GetTypeFromProgID("VisualStudio.DTE.14.0");
Object obj = System.Activator.CreateInstance(type, true);
EnvDTE.DTE dte = (EnvDTE.DTE)obj;
dte.MainWindow.Visible = true; // optional if you want to See VS doing its thing
// create a new solution
dte.Solution.Create(@"C:\NewSolution\", "NewSolution");
var solution = dte.Solution;
EnvDTE.Project project = solution.AddFromTemplate(@"C:\Program Files (x86)
\Microsoft Visual Studio 14.0\Common7\IDE\ProjectTemplates\VC\General\
sharedvcxitems\shared.vstemplate", @"C:\NewSolution\TestApp", "TestApp");
// save and quit
dte.ExecuteCommand("File.SaveAll");
dte.Quit();
【问题讨论】:
标签: c# c++ visual-studio visual-studio-2015 envdte