Inheritance: NAnt.Core.Types.FileSet
Ejemplo n.º 1
0
 /// <summary>
 /// copy constructor for FileSet. Required in order to
 /// assign references of FileSet type where
 /// AssemblyFileSets are used
 /// </summary>
 /// <param name="fs"></param>
 public AssemblyFileSet(FileSet fs) : base(fs)
 {
     _lib = new LibDirectorySet(this);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// copy constructor for FileSet. Required in order to 
 /// assign references of FileSet type where 
 /// AssemblyFileSets are used
 /// </summary>
 /// <param name="fs"></param>
 public AssemblyFileSet(FileSet fs) : base(fs) {
    _lib = new LibDirectorySet(this);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AssemblyFileSet" /> class.
 /// </summary>
 public AssemblyFileSet() : base()
 {
     // set the parent reference to point back to us
     _lib = new LibDirectorySet(this);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AssemblyFileSet" /> class.
 /// </summary>
 public AssemblyFileSet() : base() {
     // set the parent reference to point back to us
     _lib = new LibDirectorySet(this);
 }