Example #1
0
        internal ProjectResource(ProjectExplorer explorer, ProjectDirectory directory, string fullName)
        {
            Explorer  = explorer;
            Directory = directory;

            FullName  = fullName;
            Name      = MakeName(fullName);
            Extension = fullName.Substring(fullName.LastIndexOf('.'));

            Tags         = new ProjectResourceTags();
            Dependencies = new ProjectResourceDependencies(Explorer);
            Dependants   = new ProjectResourceDependencies(Explorer);
        }
 public ProjectResourceTagsDebugView(ProjectResourceTags source)
 {
     this.source = source;
 }