Exemplo n.º 1
0
        private WixTest.PatchBuilder GetPatchA()
        {
            if (null == this.patchA)
            {
                string packageA       = this.GetPackageA().Output;
                string packageAUpdate = this.GetPackageAv101().Output;

                this.patchA = new PatchBuilder(this, "PatchA")
                {
                    TargetPath = packageA, UpgradePath = packageAUpdate
                }.Build();
            }

            return(this.patchA);
        }
Exemplo n.º 2
0
        private WixTest.PatchBuilder GetPatchA()
        {
            if (null == this.patchA)
            {
                string packageA = this.GetPackageA().Output;
                string packageAUpdate = this.GetPackageAv101().Output;

                this.patchA = new PatchBuilder(this, "PatchA") { TargetPath = packageA, UpgradePath = packageAUpdate }.Build();
            }

            return this.patchA;
        }