diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-21 13:35:37 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-21 13:35:37 -0800 |
commit | 1720475c5725d08dff3924e785da3fb2c7ba0647 (patch) | |
tree | dfd5da79cb33b23de983d895c36fe1cea87c36d7 /src | |
parent | f680e915f065026efd0301a76fd524f87b8c5f06 (diff) | |
download | wix-1720475c5725d08dff3924e785da3fb2c7ba0647.tar.gz wix-1720475c5725d08dff3924e785da3fb2c7ba0647.tar.bz2 wix-1720475c5725d08dff3924e785da3fb2c7ba0647.zip |
Add "wixout" as build output
Diffstat (limited to 'src')
-rw-r--r-- | src/WixToolset.Data/Bind/BindResult.cs | 12 | ||||
-rw-r--r-- | src/WixToolset.Data/Bind/BindStage.cs | 5 | ||||
-rw-r--r-- | 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 | |||
6 | 6 | ||
7 | public class BindResult | 7 | public class BindResult |
8 | { | 8 | { |
9 | public BindResult(IEnumerable<FileTransfer> fileTransfers, IEnumerable<string> contentFilePaths) | 9 | public IEnumerable<FileTransfer> FileTransfers { get; set; } |
10 | { | ||
11 | this.FileTransfers = fileTransfers; | ||
12 | this.ContentFilePaths = contentFilePaths; | ||
13 | } | ||
14 | 10 | ||
15 | public IEnumerable<FileTransfer> FileTransfers { get; } | 11 | public IEnumerable<string> ContentFilePaths { get; set; } |
16 | |||
17 | public IEnumerable<string> ContentFilePaths { get; } | ||
18 | } | 12 | } |
19 | } \ No newline at end of file | 13 | } |
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 @@ | |||
2 | 2 | ||
3 | namespace WixToolset.Data.Bind | 3 | namespace WixToolset.Data.Bind |
4 | { | 4 | { |
5 | /// <summary> | ||
6 | /// Bind stage of a file.. The reason we need this is to change the ResolveFile behavior based on if | ||
7 | /// dynamic bindpath plugin is desirable. We cannot change the signature of ResolveFile since it might | ||
8 | /// break existing implementers which derived from BinderFileManager | ||
9 | /// </summary> | ||
10 | public enum BindStage | 5 | public enum BindStage |
11 | { | 6 | { |
12 | /// <summary> | 7 | /// <summary> |
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 | |||
29 | Product, | 29 | Product, |
30 | 30 | ||
31 | /// <summary>Transform output type.</summary> | 31 | /// <summary>Transform output type.</summary> |
32 | Transform | 32 | Transform, |
33 | |||
34 | /// <summary>Intermediate output type.</summary> | ||
35 | Wixout, | ||
33 | } | 36 | } |
34 | } | 37 | } |