aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-06-03 21:50:01 -0400
committerBob Arnson <bob@firegiant.com>2021-06-03 22:24:08 -0400
commitaec32210e4be3b58a1271e0703ec23130cd9ebe3 (patch)
treec59d6875a4236949da72e8da37f561b7bc952a65 /src/api
parenta92da42d4087b3e7989239d43aff2c7e1afe05a6 (diff)
downloadwix-aec32210e4be3b58a1271e0703ec23130cd9ebe3.tar.gz
wix-aec32210e4be3b58a1271e0703ec23130cd9ebe3.tar.bz2
wix-aec32210e4be3b58a1271e0703ec23130cd9ebe3.zip
Remove bundle platform warning.
Diffstat (limited to 'src/api')
-rw-r--r--src/api/wix/WixToolset.Data/WarningMessages.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/api/wix/WixToolset.Data/WarningMessages.cs b/src/api/wix/WixToolset.Data/WarningMessages.cs
index 78ed87af..a592fe48 100644
--- a/src/api/wix/WixToolset.Data/WarningMessages.cs
+++ b/src/api/wix/WixToolset.Data/WarningMessages.cs
@@ -277,11 +277,6 @@ namespace WixToolset.Data
277 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); 277 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);
278 } 278 }
279 279
280 public static Message ExperimentalBundlePlatform(string platform)
281 {
282 return Message(null, Ids.ExperimentalBundlePlatform, "The platform {0} is experimental for bundles. Use the x86 platform instead.", platform);
283 }
284
285 public static Message ExternalCabsAreNotSigned(string databaseFile) 280 public static Message ExternalCabsAreNotSigned(string databaseFile)
286 { 281 {
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); 282 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);
@@ -807,8 +802,6 @@ namespace WixToolset.Data
807 MsiTransactionLimitations = 1151, 802 MsiTransactionLimitations = 1151,
808 PathCanonicalized = 1152, 803 PathCanonicalized = 1152,
809 DetectConditionRecommended = 1153, 804 DetectConditionRecommended = 1153,
810 ExperimentalBundlePlatform = 1154,
811
812 CollidingModularizationTypes = 1156, 805 CollidingModularizationTypes = 1156,
813 InvalidEnvironmentVariable = 1157, 806 InvalidEnvironmentVariable = 1157,
814 } 807 }