aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs')
-rw-r--r--src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs b/src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs
index 700f0888..d3087717 100644
--- a/src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs
+++ b/src/WixToolset.Mba.Core/IBootstrapperApplicationFactory.cs
@@ -34,6 +34,8 @@ namespace WixToolset.Mba.Core
34 [MarshalAs(UnmanagedType.I4)] private readonly RelationType relation; 34 [MarshalAs(UnmanagedType.I4)] private readonly RelationType relation;
35 [MarshalAs(UnmanagedType.Bool)] private readonly bool passthrough; 35 [MarshalAs(UnmanagedType.Bool)] private readonly bool passthrough;
36 [MarshalAs(UnmanagedType.LPWStr)] private readonly string wzLayoutDirectory; 36 [MarshalAs(UnmanagedType.LPWStr)] private readonly string wzLayoutDirectory;
37 [MarshalAs(UnmanagedType.LPWStr)] private readonly string wzBootstrapperWorkingFolder;
38 [MarshalAs(UnmanagedType.LPWStr)] private readonly string wzBootstrapperApplicationDataPath;
37 39
38 public IBootstrapperCommand GetBootstrapperCommand() 40 public IBootstrapperCommand GetBootstrapperCommand()
39 { 41 {
@@ -47,7 +49,9 @@ namespace WixToolset.Mba.Core
47 this.hwndSplashScreen, 49 this.hwndSplashScreen,
48 this.relation, 50 this.relation,
49 this.passthrough, 51 this.passthrough,
50 this.wzLayoutDirectory); 52 this.wzLayoutDirectory,
53 this.wzBootstrapperWorkingFolder,
54 this.wzBootstrapperApplicationDataPath);
51 } 55 }
52 } 56 }
53 57