diff options
Diffstat (limited to 'src/WixToolset.Data/Bind')
| -rw-r--r-- | src/WixToolset.Data/Bind/BindResult.cs | 12 | ||||
| -rw-r--r-- | src/WixToolset.Data/Bind/BindStage.cs | 5 |
2 files changed, 3 insertions, 14 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> |
