使用以下代码,我可以将新文件添加到 Visual Studio 项目中。
DTE dte = GetService(typeof(DTE)) as DTE;
System.Array theProjects = (System.Array)dte.ActiveSolutionProjects;
EnvDTE.Project theProject = null;
if (theProjects.Length > 0)
{
theProject = (EnvDTE.Project)(theProjects.GetValue(0));
EnvDTE.ProjectItem projItem = null;
projItem = theProject.ProjectItems.AddFromFile(@"E:\Avinash\test.cpp");
}
但是如果我必须添加一个header file
,我如何在header
标签下添加它。