diff options
Diffstat (limited to 'src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs')
-rw-r--r-- | src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs index c9bd85b6..5e04e722 100644 --- a/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs +++ b/src/WixToolset.Core.Burn/Bind/BindBundleCommand.cs | |||
@@ -69,7 +69,7 @@ namespace WixToolset.Core.Burn | |||
69 | { | 69 | { |
70 | public BindBundleCommand(IBindContext context) | 70 | public BindBundleCommand(IBindContext context) |
71 | { | 71 | { |
72 | this.TableDefinitions = WindowsInstallerStandard.GetTableDefinitions(); | 72 | //this.TableDefinitions = WindowsInstallerStandard.GetTableDefinitions(); |
73 | 73 | ||
74 | this.DelayedFields = context.DelayedFields; | 74 | this.DelayedFields = context.DelayedFields; |
75 | this.ExpectedEmbeddedFiles = context.ExpectedEmbeddedFiles; | 75 | this.ExpectedEmbeddedFiles = context.ExpectedEmbeddedFiles; |
@@ -87,13 +87,13 @@ namespace WixToolset.Core.Burn | |||
87 | 87 | ||
88 | public IEnumerable<IBinderExtension> Extensions { private get; set; } | 88 | public IEnumerable<IBinderExtension> Extensions { private get; set; } |
89 | 89 | ||
90 | public Output Output { private get; set; } | 90 | public Intermediate Output { private get; set; } |
91 | 91 | ||
92 | public string OutputPath { private get; set; } | 92 | public string OutputPath { private get; set; } |
93 | 93 | ||
94 | public string PdbFile { private get; set; } | 94 | public string PdbFile { private get; set; } |
95 | 95 | ||
96 | public TableDefinitionCollection TableDefinitions { private get; set; } | 96 | //public TableDefinitionCollection TableDefinitions { private get; set; } |
97 | 97 | ||
98 | public string IntermediateFolder { private get; set; } | 98 | public string IntermediateFolder { private get; set; } |
99 | 99 | ||
@@ -105,6 +105,8 @@ namespace WixToolset.Core.Burn | |||
105 | 105 | ||
106 | public void Execute() | 106 | public void Execute() |
107 | { | 107 | { |
108 | throw new NotImplementedException(); | ||
109 | #if TODO | ||
108 | this.FileTransfers = Enumerable.Empty<FileTransfer>(); | 110 | this.FileTransfers = Enumerable.Empty<FileTransfer>(); |
109 | this.ContentFilePaths = Enumerable.Empty<string>(); | 111 | this.ContentFilePaths = Enumerable.Empty<string>(); |
110 | 112 | ||
@@ -822,7 +824,7 @@ namespace WixToolset.Core.Burn | |||
822 | resources.Save(bundleTempPath); | 824 | resources.Save(bundleTempPath); |
823 | } | 825 | } |
824 | 826 | ||
825 | #region DependencyExtension | 827 | //#region DependencyExtension |
826 | /// <summary> | 828 | /// <summary> |
827 | /// Imports authored dependency providers for each package in the manifest, | 829 | /// Imports authored dependency providers for each package in the manifest, |
828 | /// and generates dependency providers for certain package types that do not | 830 | /// and generates dependency providers for certain package types that do not |
@@ -936,7 +938,7 @@ namespace WixToolset.Core.Burn | |||
936 | } | 938 | } |
937 | 939 | ||
938 | // Defaults to the bundle ID as the provider key. | 940 | // Defaults to the bundle ID as the provider key. |
941 | #endif | ||
939 | } | 942 | } |
940 | #endregion | ||
941 | } | 943 | } |
942 | } | 944 | } |