aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-10-14 16:12:07 -0700
committerRob Mensching <rob@firegiant.com>2017-10-14 16:12:07 -0700
commitdbde9e7104b907bbbaea17e21247d8cafc8b3a4c (patch)
tree0f5fbbb6fe12c6b2e5e622a0e18ce4c5b4eb2b96 /src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs
parentfbf986eb97f68396797a89fc7d40dec07b775440 (diff)
downloadwix-dbde9e7104b907bbbaea17e21247d8cafc8b3a4c.tar.gz
wix-dbde9e7104b907bbbaea17e21247d8cafc8b3a4c.tar.bz2
wix-dbde9e7104b907bbbaea17e21247d8cafc8b3a4c.zip
Massive refactoring to introduce the concept of IBackend
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs (renamed from src/WixToolset.Core/Bind/GenerateDatabaseCommand.cs)7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/WixToolset.Core/Bind/GenerateDatabaseCommand.cs b/src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs
index fdf1ab32..26d254f2 100644
--- a/src/WixToolset.Core/Bind/GenerateDatabaseCommand.cs
+++ b/src/WixToolset.Core.WindowsInstaller/Bind/GenerateDatabaseCommand.cs
@@ -1,6 +1,6 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. 1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2 2
3namespace WixToolset.Bind 3namespace WixToolset.Core.WindowsInstaller.Databases
4{ 4{
5 using System; 5 using System;
6 using System.Collections.Generic; 6 using System.Collections.Generic;
@@ -13,14 +13,12 @@ namespace WixToolset.Bind
13 using WixToolset.Msi; 13 using WixToolset.Msi;
14 using WixToolset.Core.Native; 14 using WixToolset.Core.Native;
15 15
16 internal class GenerateDatabaseCommand : ICommand 16 internal class GenerateDatabaseCommand
17 { 17 {
18 public int Codepage { private get; set; } 18 public int Codepage { private get; set; }
19 19
20 public IEnumerable<IBinderExtension> Extensions { private get; set; } 20 public IEnumerable<IBinderExtension> Extensions { private get; set; }
21 21
22 public IEnumerable<IBinderFileManager> FileManagers { private get; set; }
23
24 /// <summary> 22 /// <summary>
25 /// Whether to keep columns added in a transform. 23 /// Whether to keep columns added in a transform.
26 /// </summary> 24 /// </summary>
@@ -295,7 +293,6 @@ namespace WixToolset.Bind
295 { 293 {
296 BindTransformCommand command = new BindTransformCommand(); 294 BindTransformCommand command = new BindTransformCommand();
297 command.Extensions = this.Extensions; 295 command.Extensions = this.Extensions;
298 command.FileManagers = this.FileManagers;
299 command.TempFilesLocation = this.TempFilesLocation; 296 command.TempFilesLocation = this.TempFilesLocation;
300 command.Transform = transform; 297 command.Transform = transform;
301 command.OutputPath = outputPath; 298 command.OutputPath = outputPath;