From 1720475c5725d08dff3924e785da3fb2c7ba0647 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 21 Dec 2017 13:35:37 -0800 Subject: Add "wixout" as build output --- src/WixToolset.Data/Bind/BindResult.cs | 12 +++--------- src/WixToolset.Data/Bind/BindStage.cs | 5 ----- src/WixToolset.Data/OutputType.cs | 5 ++++- 3 files changed, 7 insertions(+), 15 deletions(-) diff --git a/src/WixToolset.Data/Bind/BindResult.cs b/src/WixToolset.Data/Bind/BindResult.cs index 917bebca..1b81ab78 100644 --- a/src/WixToolset.Data/Bind/BindResult.cs +++ b/src/WixToolset.Data/Bind/BindResult.cs @@ -6,14 +6,8 @@ namespace WixToolset.Data.Bind public class BindResult { - public BindResult(IEnumerable fileTransfers, IEnumerable contentFilePaths) - { - this.FileTransfers = fileTransfers; - this.ContentFilePaths = contentFilePaths; - } + public IEnumerable FileTransfers { get; set; } - public IEnumerable FileTransfers { get; } - - public IEnumerable ContentFilePaths { get; } + public IEnumerable ContentFilePaths { get; set; } } -} \ No newline at end of file +} diff --git a/src/WixToolset.Data/Bind/BindStage.cs b/src/WixToolset.Data/Bind/BindStage.cs index 500ea288..c567cde0 100644 --- a/src/WixToolset.Data/Bind/BindStage.cs +++ b/src/WixToolset.Data/Bind/BindStage.cs @@ -2,11 +2,6 @@ namespace WixToolset.Data.Bind { - /// - /// Bind stage of a file.. The reason we need this is to change the ResolveFile behavior based on if - /// dynamic bindpath plugin is desirable. We cannot change the signature of ResolveFile since it might - /// break existing implementers which derived from BinderFileManager - /// public enum BindStage { /// diff --git a/src/WixToolset.Data/OutputType.cs b/src/WixToolset.Data/OutputType.cs index 67c56520..228cc580 100644 --- a/src/WixToolset.Data/OutputType.cs +++ b/src/WixToolset.Data/OutputType.cs @@ -29,6 +29,9 @@ namespace WixToolset.Data Product, /// Transform output type. - Transform + Transform, + + /// Intermediate output type. + Wixout, } } -- cgit v1.2.3-55-g6feb