From 9813f0b4054ab0c003529699d1a467db90395980 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Tue, 26 Dec 2017 17:33:06 -0800 Subject: Integrate rename of "Wixout" to "IntermediatePostLink" --- src/WixToolset.Core/CommandLine/BuildCommand.cs | 2 +- src/WixToolset.Core/CommandLine/CommandLineParser.cs | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'src/WixToolset.Core/CommandLine') diff --git a/src/WixToolset.Core/CommandLine/BuildCommand.cs b/src/WixToolset.Core/CommandLine/BuildCommand.cs index b5ad0b0e..1731caaf 100644 --- a/src/WixToolset.Core/CommandLine/BuildCommand.cs +++ b/src/WixToolset.Core/CommandLine/BuildCommand.cs @@ -92,7 +92,7 @@ namespace WixToolset.Core.CommandLine library?.Save(this.OutputPath); } - else if (this.OutputType == OutputType.Wixout) + else if (this.OutputType == OutputType.IntermediatePostLink) { var output = this.LinkPhase(intermediates); diff --git a/src/WixToolset.Core/CommandLine/CommandLineParser.cs b/src/WixToolset.Core/CommandLine/CommandLineParser.cs index c5d3c03b..017810e0 100644 --- a/src/WixToolset.Core/CommandLine/CommandLineParser.cs +++ b/src/WixToolset.Core/CommandLine/CommandLineParser.cs @@ -250,6 +250,7 @@ namespace WixToolset.Core.CommandLine return OutputType.PatchCreation; case "product": + case "package": case ".msi": return OutputType.Product; @@ -257,9 +258,9 @@ namespace WixToolset.Core.CommandLine case ".mst": return OutputType.Transform; - case "wixout": - case ".wixout": - return OutputType.Wixout; + case "intermediatepostlink": + case ".wixipl": + return OutputType.IntermediatePostLink; } return OutputType.Unknown; -- cgit v1.2.3-55-g6feb