Пример #1
0
        internal ProjectDirectory(DirectoryInfo physicalLocation, string fullName)
        {
            FullName         = fullName;
            Name             = NameFromFullName(fullName);
            PhysicalLocation = physicalLocation;

            directories = new ProjectDirectoryCollection();
            resources   = new ProjectResourceCollection();
        }
Пример #2
0
        internal ProjectDirectory(string name, string fullName, ProjectDirectory parent)
        {
            Name     = name;
            FullName = fullName;
            Parent   = parent;

            Directories = new ProjectDirectoryCollection();
            Resources   = new ProjectResourceCollection();
        }
 public ProjectDirectoryCollectionDebugView(ProjectDirectoryCollection source)
 {
     this.source = source;
 }