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.WindowsInstaller/MsiBackend.cs | |
| 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.WindowsInstaller/MsiBackend.cs')
| -rw-r--r-- | src/WixToolset.Core.WindowsInstaller/MsiBackend.cs | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/WixToolset.Core.WindowsInstaller/MsiBackend.cs b/src/WixToolset.Core.WindowsInstaller/MsiBackend.cs index f72a7c66..c0c518f8 100644 --- a/src/WixToolset.Core.WindowsInstaller/MsiBackend.cs +++ b/src/WixToolset.Core.WindowsInstaller/MsiBackend.cs | |||
| @@ -29,18 +29,12 @@ namespace WixToolset.Core.WindowsInstaller | |||
| 29 | var command = new BindDatabaseCommand(context, backendExtensions, validator); | 29 | var command = new BindDatabaseCommand(context, backendExtensions, validator); |
| 30 | command.Execute(); | 30 | command.Execute(); |
| 31 | 31 | ||
| 32 | var result = new BindResult { FileTransfers = command.FileTransfers, ContentFilePaths = command.ContentFilePaths }; | 32 | var result = new BindResult { FileTransfers = command.FileTransfers, TrackedFiles = command.TrackedFiles }; |
| 33 | 33 | ||
| 34 | foreach (var extension in backendExtensions) | 34 | foreach (var extension in backendExtensions) |
| 35 | { | 35 | { |
| 36 | extension.PostBackendBind(result, command.Pdb); | 36 | extension.PostBackendBind(result, command.Pdb); |
| 37 | } | 37 | } |
| 38 | |||
| 39 | if (!String.IsNullOrEmpty(context.OutputPdbPath)) | ||
| 40 | { | ||
| 41 | command.Pdb?.Save(context.OutputPdbPath); | ||
| 42 | } | ||
| 43 | |||
| 44 | return result; | 38 | return result; |
| 45 | } | 39 | } |
| 46 | 40 | ||
