Add "wixout" as build output
Rob Mensching committed
Dec 21, 2017 at 13:35 UTC
1720475c5725d08dff3924e785da3fb2c7ba0647
3 files changed
+7
-15
src/WixToolset.Data/Bind/BindResult.cs
+3
-9
@@ -6,14 +6,8 @@ namespace WixToolset.Data.Bind
6
7
public class BindResult
8
{
9
- public BindResult(IEnumerable<FileTransfer> fileTransfers, IEnumerable<string> contentFilePaths)
10
- {
11
- this.FileTransfers = fileTransfers;
12
- this.ContentFilePaths = contentFilePaths;
13
- }
9
+ public IEnumerable<FileTransfer> FileTransfers { get; set; }
10
15
- public IEnumerable<FileTransfer> FileTransfers { get; }
16
-
17
- public IEnumerable<string> ContentFilePaths { get; }
11
+ public IEnumerable<string> ContentFilePaths { get; set; }
12
}
19
-}
\ No newline at end of file
13
+}
src/WixToolset.Data/Bind/BindStage.cs
-5
@@ -2,11 +2,6 @@
2
3
namespace WixToolset.Data.Bind
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>
5
public enum BindStage
6
{
7
/// <summary>
src/WixToolset.Data/OutputType.cs
+4
-1
@@ -29,6 +29,9 @@ namespace WixToolset.Data
29
Product,
30
31
/// <summary>Transform output type.</summary>
32
- Transform
32
+ Transform,
33
+
34
+ /// <summary>Intermediate output type.</summary>
35
+ Wixout,
36
}
37
}