aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Mba.Core/IPackageInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Mba.Core/IPackageInfo.cs')
-rw-r--r--src/WixToolset.Mba.Core/IPackageInfo.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/WixToolset.Mba.Core/IPackageInfo.cs b/src/WixToolset.Mba.Core/IPackageInfo.cs
index 5afe4b38..a82e81ea 100644
--- a/src/WixToolset.Mba.Core/IPackageInfo.cs
+++ b/src/WixToolset.Mba.Core/IPackageInfo.cs
@@ -5,12 +5,16 @@ namespace WixToolset.Mba.Core
5 public interface IPackageInfo 5 public interface IPackageInfo
6 { 6 {
7 CacheType CacheType { get; } 7 CacheType CacheType { get; }
8 object CustomData { get; set; }
8 string Description { get; } 9 string Description { get; }
9 bool DisplayInternalUI { get; } 10 string DisplayInternalUICondition { get; }
10 string DisplayName { get; } 11 string DisplayName { get; }
11 string Id { get; } 12 string Id { get; }
12 string InstallCondition { get; } 13 string InstallCondition { get; }
13 bool Permanent { get; } 14 bool Permanent { get; }
15 bool PrereqPackage { get; }
16 string PrereqLicenseFile { get; }
17 string PrereqLicenseUrl { get; }
14 string ProductCode { get; } 18 string ProductCode { get; }
15 PackageType Type { get; } 19 PackageType Type { get; }
16 string UpgradeCode { get; } 20 string UpgradeCode { get; }