aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Mba.Core/BootstrapperCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Mba.Core/BootstrapperCommand.cs')
-rw-r--r--src/WixToolset.Mba.Core/BootstrapperCommand.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/WixToolset.Mba.Core/BootstrapperCommand.cs b/src/WixToolset.Mba.Core/BootstrapperCommand.cs
index 6854e9ae..42d19bf9 100644
--- a/src/WixToolset.Mba.Core/BootstrapperCommand.cs
+++ b/src/WixToolset.Mba.Core/BootstrapperCommand.cs
@@ -20,7 +20,9 @@ namespace WixToolset.Mba.Core
20 IntPtr splashScreen, 20 IntPtr splashScreen,
21 RelationType relation, 21 RelationType relation,
22 bool passthrough, 22 bool passthrough,
23 string layoutDirectory) 23 string layoutDirectory,
24 string bootstrapperWorkingFolder,
25 string bootstrapperApplicationDataPath)
24 { 26 {
25 this.Action = action; 27 this.Action = action;
26 this.Display = display; 28 this.Display = display;
@@ -32,6 +34,8 @@ namespace WixToolset.Mba.Core
32 this.Relation = relation; 34 this.Relation = relation;
33 this.Passthrough = passthrough; 35 this.Passthrough = passthrough;
34 this.LayoutDirectory = layoutDirectory; 36 this.LayoutDirectory = layoutDirectory;
37 this.BootstrapperWorkingFolder = bootstrapperWorkingFolder;
38 this.BootstrapperApplicationDataPath = bootstrapperApplicationDataPath;
35 } 39 }
36 40
37 public LaunchAction Action { get; } 41 public LaunchAction Action { get; }
@@ -54,6 +58,10 @@ namespace WixToolset.Mba.Core
54 58
55 public string LayoutDirectory { get; } 59 public string LayoutDirectory { get; }
56 60
61 public string BootstrapperWorkingFolder { get; }
62
63 public string BootstrapperApplicationDataPath { get; }
64
57 /// <summary> 65 /// <summary>
58 /// Gets the command line arguments as a string array. 66 /// Gets the command line arguments as a string array.
59 /// </summary> 67 /// </summary>