コード例 #1
0
        /// <summary>
        /// Creates a new package builder
        /// </summary>
        public PackageBuilder()
        {
            this.applicationName  = new Serialize.Name();
            this.applicationRoot  = new Serialize.Source();
            this.applicationEntry = new Serialize.EntryPoint();
            this.icon             = new Serialize.Icon();

            this.manufacturerName = new Serialize.Manufacturer();
            this.description      = new Serialize.Description();

            this.upgradeCode = Guid.Empty;

            this.directoryHarvester               = new DirectoryHarvester();
            this.utilMutator                      = new UtilMutator();
            this.utilMutator.GenerateGuids        = true;
            this.utilMutator.SetUniqueIdentifiers = true;
            this.finalMutator                     = new UtilFinalizeHarvesterMutator();
        }
コード例 #2
0
ファイル: PackageBuilder.cs プロジェクト: Jeremiahf/wix3
        /// <summary>
        /// Creates a new package builder
        /// </summary>
        public PackageBuilder()
        {
            this.applicationName = new Serialize.Name();
            this.applicationRoot = new Serialize.Source();
            this.applicationEntry = new Serialize.EntryPoint();
            this.icon = new Serialize.Icon();

            this.manufacturerName = new Serialize.Manufacturer();
            this.description = new Serialize.Description();

            this.upgradeCode = Guid.Empty;

            this.directoryHarvester = new DirectoryHarvester();
            this.utilMutator = new UtilMutator();
            this.utilMutator.GenerateGuids = true;
            this.utilMutator.SetUniqueIdentifiers = true;
            this.finalMutator = new UtilFinalizeHarvesterMutator();
        }