@joebigelow / wix-1 / commits / 9813f0b4

Integrate rename of "Wixout" to "IntermediatePostLink"

Rob Mensching committed Dec 26, 2017 at 17:33 UTC 9813f0b4054ab0c003529699d1a467db90395980
2 files changed +5 -4
src/WixToolset.Core/CommandLine/BuildCommand.cs
+1 -1
@@ -92,7 +92,7 @@ namespace WixToolset.Core.CommandLine
92
93 library?.Save(this.OutputPath);
94 }
95 - else if (this.OutputType == OutputType.Wixout)
95 + else if (this.OutputType == OutputType.IntermediatePostLink)
96 {
97 var output = this.LinkPhase(intermediates);
98
src/WixToolset.Core/CommandLine/CommandLineParser.cs
+4 -3
@@ -250,6 +250,7 @@ namespace WixToolset.Core.CommandLine
250 return OutputType.PatchCreation;
251
252 case "product":
253 + case "package":
254 case ".msi":
255 return OutputType.Product;
256
@@ -257,9 +258,9 @@ namespace WixToolset.Core.CommandLine
258 case ".mst":
259 return OutputType.Transform;
260
260 - case "wixout":
261 - case ".wixout":
262 - return OutputType.Wixout;
261 + case "intermediatepostlink":
262 + case ".wixipl":
263 + return OutputType.IntermediatePostLink;
264 }
265
266 return OutputType.Unknown;