Used by a project to query the environment for permission to add, remove, or rename a file or directory in a solution
Esempio n. 1
0
 /// <summary>
 /// Initialize projectNode
 /// </summary>
 private void Initialize()
 {
     this.ID = VSConstants.VSITEMID_ROOT;
     this.tracker = new TrackDocumentsHelper(this);
 }
Esempio n. 2
0
        protected ProjectNode(ProjectPackage package)
            : base(VSConstants.VSITEMID.Root)
        {
            if (package == null)
                throw new ArgumentNullException("package");

            this.package = package;
            this.tracker = new TrackDocumentsHelper(this);
        }