diff options
| author | Rob Mensching <rob@firegiant.com> | 2018-08-11 01:06:40 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2018-08-11 01:06:40 -0700 |
| commit | 2a27f9032aa115bc2f88d9be695d9b049db1a894 (patch) | |
| tree | 7882bd4c94da118a6fc655a3c22e1dd0cf3b60e1 /src/WixToolset.Core.Burn | |
| parent | b54516035b4ebbfbd8899b26de501bfa13f53e8b (diff) | |
| download | wix-2a27f9032aa115bc2f88d9be695d9b049db1a894.tar.gz wix-2a27f9032aa115bc2f88d9be695d9b049db1a894.tar.bz2 wix-2a27f9032aa115bc2f88d9be695d9b049db1a894.zip | |
Track files to enable clean builds in MSBuild
Diffstat (limited to 'src/WixToolset.Core.Burn')
| -rw-r--r-- | src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs | 2 | ||||
| -rw-r--r-- | src/WixToolset.Core.Burn/BundleBackend.cs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs index bd282f54..5dfe935f 100644 --- a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs +++ b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs | |||
| @@ -101,7 +101,7 @@ namespace WixToolset.Core.Burn | |||
| 101 | 101 | ||
| 102 | public IEnumerable<IFileTransfer> FileTransfers { get; private set; } | 102 | public IEnumerable<IFileTransfer> FileTransfers { get; private set; } |
| 103 | 103 | ||
| 104 | public IEnumerable<string> ContentFilePaths { get; private set; } | 104 | public IEnumerable<ITrackedFile> TrackedFiles { get; private set; } |
| 105 | 105 | ||
| 106 | public void Execute() | 106 | public void Execute() |
| 107 | { | 107 | { |
diff --git a/src/WixToolset.Core.Burn/BundleBackend.cs b/src/WixToolset.Core.Burn/BundleBackend.cs index 63504df2..96a35b14 100644 --- a/src/WixToolset.Core.Burn/BundleBackend.cs +++ b/src/WixToolset.Core.Burn/BundleBackend.cs | |||
| @@ -24,7 +24,7 @@ namespace WixToolset.Core.Burn | |||
| 24 | //command.WixVariableResolver = context.WixVariableResolver; | 24 | //command.WixVariableResolver = context.WixVariableResolver; |
| 25 | command.Execute(); | 25 | command.Execute(); |
| 26 | 26 | ||
| 27 | return new BindResult { FileTransfers = command.FileTransfers, ContentFilePaths = command.ContentFilePaths }; | 27 | return new BindResult { FileTransfers = command.FileTransfers, TrackedFiles = command.TrackedFiles }; |
| 28 | } | 28 | } |
| 29 | 29 | ||
| 30 | public bool Inscribe(IInscribeContext context) | 30 | public bool Inscribe(IInscribeContext context) |
