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 に答える