diff options
| author | Rob Mensching <rob@firegiant.com> | 2022-12-21 23:06:05 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2022-12-22 15:12:23 -0800 |
| commit | 8aafcc72550d89cc43dfcb81012abe8576709660 (patch) | |
| tree | f4417f9691b3df02ecd2ed237bbb60db91b14974 /src/test/burn/WixTestTools | |
| parent | 34692d57dcc693ec017dda1711f25adbc7759a1c (diff) | |
| download | wix-8aafcc72550d89cc43dfcb81012abe8576709660.tar.gz wix-8aafcc72550d89cc43dfcb81012abe8576709660.tar.bz2 wix-8aafcc72550d89cc43dfcb81012abe8576709660.zip | |
Register the InstallDate in Burn
Closes 7068
Diffstat (limited to 'src/test/burn/WixTestTools')
| -rw-r--r-- | src/test/burn/WixTestTools/GenericArpRegistration.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/test/burn/WixTestTools/GenericArpRegistration.cs b/src/test/burn/WixTestTools/GenericArpRegistration.cs index d87c4feb..dfddd9a3 100644 --- a/src/test/burn/WixTestTools/GenericArpRegistration.cs +++ b/src/test/burn/WixTestTools/GenericArpRegistration.cs | |||
| @@ -15,6 +15,7 @@ namespace WixTestTools | |||
| 15 | public const string REGISTRY_ARP_DISPLAY_NAME = "DisplayName"; | 15 | public const string REGISTRY_ARP_DISPLAY_NAME = "DisplayName"; |
| 16 | public const string REGISTRY_ARP_DISPLAY_VERSION = "DisplayVersion"; | 16 | public const string REGISTRY_ARP_DISPLAY_VERSION = "DisplayVersion"; |
| 17 | public const string REGISTRY_ARP_ESTIMATED_SIZE = "EstimatedSize"; | 17 | public const string REGISTRY_ARP_ESTIMATED_SIZE = "EstimatedSize"; |
| 18 | public const string REGISTRY_ARP_INSTALL_DATE = "InstallDate"; | ||
| 18 | public const string REGISTRY_ARP_PUBLISHER = "Publisher"; | 19 | public const string REGISTRY_ARP_PUBLISHER = "Publisher"; |
| 19 | public const string REGISTRY_ARP_HELP_LINK = "HelpLink"; | 20 | public const string REGISTRY_ARP_HELP_LINK = "HelpLink"; |
| 20 | public const string REGISTRY_ARP_HELP_TELEPHONE = "HelpTelephone"; | 21 | public const string REGISTRY_ARP_HELP_TELEPHONE = "HelpTelephone"; |
| @@ -42,6 +43,8 @@ namespace WixTestTools | |||
| 42 | 43 | ||
| 43 | public int? EstimatedSize { get; set; } | 44 | public int? EstimatedSize { get; set; } |
| 44 | 45 | ||
| 46 | public string InstallDate { get; set; } | ||
| 47 | |||
| 45 | public int? Installed { get; set; } | 48 | public int? Installed { get; set; } |
| 46 | 49 | ||
| 47 | public string ModifyPath { get; set; } | 50 | public string ModifyPath { get; set; } |
| @@ -103,6 +106,7 @@ namespace WixTestTools | |||
| 103 | registration.DisplayName = idKey.GetValue(REGISTRY_ARP_DISPLAY_NAME) as string; | 106 | registration.DisplayName = idKey.GetValue(REGISTRY_ARP_DISPLAY_NAME) as string; |
| 104 | registration.DisplayVersion = idKey.GetValue(REGISTRY_ARP_DISPLAY_VERSION) as string; | 107 | registration.DisplayVersion = idKey.GetValue(REGISTRY_ARP_DISPLAY_VERSION) as string; |
| 105 | registration.EstimatedSize = idKey.GetValue(REGISTRY_ARP_ESTIMATED_SIZE) as int?; | 108 | registration.EstimatedSize = idKey.GetValue(REGISTRY_ARP_ESTIMATED_SIZE) as int?; |
| 109 | registration.InstallDate = idKey.GetValue(REGISTRY_ARP_INSTALL_DATE) as string; | ||
| 106 | registration.Installed = idKey.GetValue(REGISTRY_ARP_INSTALLED) as int?; | 110 | registration.Installed = idKey.GetValue(REGISTRY_ARP_INSTALLED) as int?; |
| 107 | registration.ModifyPath = idKey.GetValue(REGISTRY_ARP_MODIFY_PATH) as string; | 111 | registration.ModifyPath = idKey.GetValue(REGISTRY_ARP_MODIFY_PATH) as string; |
| 108 | registration.Publisher = idKey.GetValue(REGISTRY_ARP_PUBLISHER) as string; | 112 | registration.Publisher = idKey.GetValue(REGISTRY_ARP_PUBLISHER) as string; |
