2

到目前为止,任何人都有示例IVsProject.AddItem我已经完成了以下操作,但不了解如何使用IVsProject.AddItem并且msdn没有任何示例。

private void MenuItemCallback(object sender, EventArgs e)
{
   IVsSolution solutionService = GetService(typeof(SVsSolution)) as IVsSolution;
   // get all projects in solution
   IEnumHierarchies enumHierarchies = null;
   Guid guid = Guid.Empty;
   ErrorHandler.ThrowOnFailure(solutionService.GetProjectEnum(
                                  (uint)__VSENUMPROJFLAGS.EPF_ALLINSOLUTION,
                                  ref guid,
                                  out enumHierarchies));
   //Loop all projects found
   if (enumHierarchies != null)
   {
      // Loop projects found
      IVsHierarchy[] hierarchy = new IVsHierarchy[1];
      uint fetched = 0;

      while (enumHierarchies.Next(1, hierarchy, out fetched) == VSConstants.S_OK
           && fetched == 1)
      {                   
         Guid projectGuid;
         ErrorHandler.ThrowOnFailure(hierarchy[0].GetGuidProperty(
                                        VSConstants.VSITEMID_ROOT,
                                        (int)__VSHPROPID.VSHPROPID_ProjectIDGuid,
                                        out projectGuid));
         IVsProject project = (IVsProject)hierarchy[0];
         project.AddItem(VSConstants.VSITEMID_ROOT,
                         VSADDITEMOPERATION.VSADDITEMOP_OPENFILE,
                         1,
                         ...)

      }
   }            
}

以下也无法使用DTE

private void MenuItemCallback(object sender, EventArgs e)
{
   //GemFireWizardForm form = new GemFireWizardForm();
   //form.ShowDialog();
   //Get the solution service

   IVsSolution solutionService = GetService(typeof(SVsSolution)) as IVsSolution;
   // get all projects in solution
   IEnumHierarchies enumHierarchies = null;
   Guid guid = Guid.Empty;
   ErrorHandler.ThrowOnFailure(solutionService.GetProjectEnum(
                                  (uint)__VSENUMPROJFLAGS.EPF_ALLINSOLUTION,
                                  ref guid,
                                  out enumHierarchies));
   //Loop all projects found
   if (enumHierarchies != null)
   {
      // Loop projects found
      IVsHierarchy[] hierarchy = new IVsHierarchy[1];
      uint fetched = 0;
      Guid projectGuid = Guid.Empty;
      while (enumHierarchies.Next(1, hierarchy, out fetched) == VSConstants.S_OK
           && fetched == 1)
      {
         ErrorHandler.ThrowOnFailure(hierarchy[0].GetGuidProperty(
                                        VSConstants.VSITEMID_ROOT,
                                        (int)__VSHPROPID.VSHPROPID_ProjectIDGuid,
                                        out projectGuid));
      }

      IVsHierarchy ppHierarchy = null;
      IVsSolution solution = (IVsSolution)GetService(typeof(SVsSolution));
      Int32 result = solution.GetProjectOfGuid(ref projectGuid, out ppHierarchy);

      if (ppHierarchy != null && result == VSConstants.S_OK)
      {
         Object automationObject = null;
         ppHierarchy.GetProperty(VSConstants.VSITEMID_ROOT,
                                 (Int32)__VSHPROPID.VSHPROPID_ExtObject,
                                 out automationObject);

         if (automationObject != null)
         {
            EnvDTE.SolutionClass sc = automationObject as EnvDTE.SolutionClass;
            EnvDTE.Projects projects = sc.Projects;
            EnvDTE.Project project = projects.Item(1);
            EnvDTE.ProjectItems pitems = project.ProjectItems;

            pitems.AddFromFileCopy(@"e:\avinash\test.cpp");
         }
      }
   }            
}

sc即将到来null

4

2 回答 2

2

我设法使用这段代码将文件添加到当前项目的根目录:

string file = ... ; // Provide the absolute path of your file here
string[] files = new string[1] { file };
VSADDRESULT[] result = new VSADDRESULT[1];
proj.AddItem(
    VSConstants.VSITEMID_ROOT,
    VSADDITEMOPERATION.VSADDITEMOP_OPENFILE,
    file,
    1,
    files,
    IntPtr.Zero,
    result);

不幸的是,使用 IVsProject.AddItem 似乎不可能将过滤器添加到项目中,或者在过滤器下添加文件。事实上,MSDN 文档提到了参数itemidloc

itemidLoc
类型:System.UInt32
[in] 要添加的项目的容器文件夹的标识符。应该是 VSITEMID_ROOT 或其他有效的项目标识符。请参阅枚举 VSITEMID。请注意,此参数当前被忽略,因为仅支持将项目添加为项目节点的子节点。支持文件夹概念的项目将希望添加与 itemidLoc 相关的项目。

于 2013-06-11T05:48:25.167 回答
0

我不知道为什么这不起作用,但也许你可以尝试使用 MPF 或 VSXtra(由深潜创建),它们都可以帮助我们轻松管理 HierachyNode。

于 2012-05-28T06:32:50.803 回答