예제 #1
0
 //==========================================================================================
 // Constructors
 //==========================================================================================
 /// <summary>
 /// Initializes a new instance of the <see cref="WixProjectFactory"/> class.
 /// </summary>
 public WixProjectFactory(Package parent)
     : base(parent)
 {
 }
예제 #2
0
 //==========================================================================================
 // Constructors
 //==========================================================================================
 /// <summary>
 ///     Initializes a new instance of the <see cref="ProjectFactory"/> class.
 /// </summary>
 public ProjectFactory(Package parent)
 {
     Tracer.VerifyNonNullArgument(parent, "parent");
     this.parentPackage = parent;
 }
예제 #3
0
 //==========================================================================================
 // Constructors
 //==========================================================================================
 /// <summary>
 /// Initializes a new instance of the <see cref="Package"/> class.
 /// </summary>
 public Package()
 {
     Tracer.WriteLineIf(classType, Tracer.ConstructorMethodName, Tracer.Level.Warning, Instance != null, "There is more than one Package instance. There should only be one.");
     instance = this;
 }