diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2020-03-30 18:51:48 +1000 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2020-03-30 21:43:47 +1000 |
commit | 83e4e5d759903e70a9bbf75d4d084bfda49e5877 (patch) | |
tree | 11704ed8308ebbc1692281e4db23efd91e39f989 /src/WixToolset.Mba.Core/BootstrapperCommand.cs | |
parent | 3c9eb7218686ffe40d841e7669d8fcf670f3c32b (diff) | |
download | wix-83e4e5d759903e70a9bbf75d4d084bfda49e5877.tar.gz wix-83e4e5d759903e70a9bbf75d4d084bfda49e5877.tar.bz2 wix-83e4e5d759903e70a9bbf75d4d084bfda49e5877.zip |
Upgrade to latest BootstrapperCore.
Diffstat (limited to 'src/WixToolset.Mba.Core/BootstrapperCommand.cs')
-rw-r--r-- | src/WixToolset.Mba.Core/BootstrapperCommand.cs | 10 |
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> |