Ejemplo n.º 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);
        }
Ejemplo n.º 2
0
 public ProjectResourceDependenciesDebugView(ProjectResourceDependencies source)
 {
     this.source = source;
 }