aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-01-19 15:09:37 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-01-19 15:46:32 -0600
commit488177ce1f72154d75a1bcb5eb6d1030251afa87 (patch)
tree81e6357f56995034c8d6c71937d26d423f0c00ea /src
parentcce48bc96c334acc9a60bce4172f6d463a4dbbd1 (diff)
downloadwix-488177ce1f72154d75a1bcb5eb6d1030251afa87.tar.gz
wix-488177ce1f72154d75a1bcb5eb6d1030251afa87.tar.bz2
wix-488177ce1f72154d75a1bcb5eb6d1030251afa87.zip
Add warning that non-x86 bundles are experimental.
Diffstat (limited to 'src')
-rw-r--r--src/WixToolset.Data/WarningMessages.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Data/WarningMessages.cs b/src/WixToolset.Data/WarningMessages.cs
index 1ea0f3ea..12c8a160 100644
--- a/src/WixToolset.Data/WarningMessages.cs
+++ b/src/WixToolset.Data/WarningMessages.cs
@@ -282,6 +282,11 @@ namespace WixToolset.Data
282 return Message(sourceLineNumbers, Ids.ExpectedForeignRow, "The {0} table contains a row with primary key(s) '{1}' whose {2} and {4} columns contain the values, '{3}' and '{5}', which specify a foreign key relationship with the {6} table. However, since the expected foreign row specified by this value does not exist, this will result in some information being left out of the decompiled output.", tableName, primaryKey, columnName1, columnValue1, columnName2, columnValue2, foreignTableName); 282 return Message(sourceLineNumbers, Ids.ExpectedForeignRow, "The {0} table contains a row with primary key(s) '{1}' whose {2} and {4} columns contain the values, '{3}' and '{5}', which specify a foreign key relationship with the {6} table. However, since the expected foreign row specified by this value does not exist, this will result in some information being left out of the decompiled output.", tableName, primaryKey, columnName1, columnValue1, columnName2, columnValue2, foreignTableName);
283 } 283 }
284 284
285 public static Message ExperimentalBundlePlatform(string platform)
286 {
287 return Message(null, Ids.ExperimentalBundlePlatform, "The platform {0} is experimental for bundles. Use the x86 platform instead.", platform);
288 }
289
285 public static Message ExternalCabsAreNotSigned(string databaseFile) 290 public static Message ExternalCabsAreNotSigned(string databaseFile)
286 { 291 {
287 return Message(null, Ids.ExternalCabsAreNotSigned, "The installer database '{0}' has external cabs, but at least one of them is not signed. Please ensure that all external cabs are signed, if you mean to sign them. If you don't mean to sign them, there is no need to run the insignia tool as part of your build.", databaseFile); 292 return Message(null, Ids.ExternalCabsAreNotSigned, "The installer database '{0}' has external cabs, but at least one of them is not signed. Please ensure that all external cabs are signed, if you mean to sign them. If you don't mean to sign them, there is no need to run the insignia tool as part of your build.", databaseFile);
@@ -798,6 +803,7 @@ namespace WixToolset.Data
798 MsiTransactionLimitations = 1151, 803 MsiTransactionLimitations = 1151,
799 PathCanonicalized = 1152, 804 PathCanonicalized = 1152,
800 DetectConditionRecommended = 1153, 805 DetectConditionRecommended = 1153,
806 ExperimentalBundlePlatform = 1154,
801 } 807 }
802 } 808 }
803} 809}