Exemplo n.º 1
0
        // =========================================================================================
        // Constructors
        // =========================================================================================

        /// <summary>
        /// Initializes a new instance of the <see cref="OAWixProject"/> class.
        /// </summary>
        /// <param name="wixProject">The node to which this project belongs.</param>
        public OAWixProject(WixProjectNode wixProject)
            : base(wixProject)
        {
            if (wixProject != null)
            {
                this.properties = new OAProperties(wixProject.NodeProperties);
            }
        }
Exemplo n.º 2
0
 public OANullProperty(OAProperties parent)
 {
     this.parent = parent;
 }
 public OAProperty(OAProperties parent, PropertyInfo pi)
 {
     this.parent = parent;
     this.pi = pi;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="OAWowProjectProperty"/> class.
 /// </summary>
 /// <param name="parent">The parent.</param>
 /// <param name="name">The name.</param>
 internal OAWowProjectProperty(OAWowProjectProperties parent, string name)
 {
     this.parent = parent;
     this.name = name;
 }
Exemplo n.º 5
0
 public OAProperty(OAProperties parent, PropertyInfo pi)
 {
     this.parent = parent;
     this.pi     = pi;
 }
Exemplo n.º 6
0
 public OANullProperty(OAProperties parent)
 {
     this.parent = parent;
 }