aboutsummaryrefslogtreecommitdiff
path: root/src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-01-11 18:26:20 -0800
committerRob Mensching <rob@firegiant.com>2024-03-06 18:03:38 -0800
commit0d3d54992104288e9ee0c834d0b96e8502fd2d42 (patch)
tree9efa49c4983cd2ba1becab64bd1f2faccac88acf /src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs
parent2824298d9dd817a47527c920363556b54ead5d5d (diff)
downloadwix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.gz
wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.bz2
wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.zip
Move the BootstrapperApplication out of proc
Diffstat (limited to 'src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs')
-rw-r--r--src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs b/src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs
index 951f511a..3c52fc02 100644
--- a/src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs
+++ b/src/api/burn/WixToolset.Mba.Core/IBundleInfo.cs
@@ -37,15 +37,18 @@ namespace WixToolset.Mba.Core
37 /// <summary> 37 /// <summary>
38 /// Adds a related bundle as a package. 38 /// Adds a related bundle as a package.
39 /// </summary> 39 /// </summary>
40 /// <param name="e"></param> 40 /// <param name="productCode"></param>
41 /// <param name="relationType"></param>
42 /// <param name="perMachine"></param>
43 /// <param name="version"></param>
41 /// <returns>The created <see cref="IPackageInfo"/>.</returns> 44 /// <returns>The created <see cref="IPackageInfo"/>.</returns>
42 IPackageInfo AddRelatedBundleAsPackage(DetectRelatedBundleEventArgs e); 45 IPackageInfo AddRelatedBundleAsPackage(string productCode, RelationType relationType, bool perMachine, string version);
43 46
44 /// <summary> 47 /// <summary>
45 /// Adds an update bundle as a package. 48 /// Adds an update bundle as a package.
46 /// </summary> 49 /// </summary>
47 /// <param name="e"></param> 50 /// <param name="packageId">Package id added as update bundle.</param>
48 /// <returns>The created <see cref="IPackageInfo"/>.</returns> 51 /// <returns>The created <see cref="IPackageInfo"/>.</returns>
49 IPackageInfo AddUpdateBundleAsPackage(SetUpdateCompleteEventArgs e); 52 IPackageInfo AddUpdateBundleAsPackage(string packageId);
50 } 53 }
51} 54}