aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2025-11-02 10:48:52 -0800
committerRob Mensching <rob@firegiant.com>2025-11-04 10:22:42 -0800
commitcf15a49da99429ef3bdce564ecb7a7a94198ead4 (patch)
tree37a50d9ca0fedb857d6198594485d9bb89e8fcc0 /src/api
parentd2ba0da55725f2908b67e1470afc7cfd71cb3d1f (diff)
downloadwix-cf15a49da99429ef3bdce564ecb7a7a94198ead4.tar.gz
wix-cf15a49da99429ef3bdce564ecb7a7a94198ead4.tar.bz2
wix-cf15a49da99429ef3bdce564ecb7a7a94198ead4.zip
Improve error message when MSI is read-only
Fixes 9113
Diffstat (limited to 'src/api')
-rw-r--r--src/api/wix/WixToolset.Data/ErrorMessages.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/api/wix/WixToolset.Data/ErrorMessages.cs b/src/api/wix/WixToolset.Data/ErrorMessages.cs
index 1d02ffd0..4052917c 100644
--- a/src/api/wix/WixToolset.Data/ErrorMessages.cs
+++ b/src/api/wix/WixToolset.Data/ErrorMessages.cs
@@ -1561,11 +1561,6 @@ namespace WixToolset.Data
1561 return Message(sourceLineNumbers, Ids.NoUniqueActionSequenceNumber2, "The location of the sequenced action related to previous error."); 1561 return Message(sourceLineNumbers, Ids.NoUniqueActionSequenceNumber2, "The location of the sequenced action related to previous error.");
1562 } 1562 }
1563 1563
1564 public static Message OpenDatabaseFailed(string databaseFile)
1565 {
1566 return Message(null, Ids.OpenDatabaseFailed, "Failed to open database '{0}'. Ensure it is a valid database, and it is not open by another process.", databaseFile);
1567 }
1568
1569 public static Message OrderingReferenceLoopDetected(SourceLineNumber sourceLineNumbers, string loopList) 1564 public static Message OrderingReferenceLoopDetected(SourceLineNumber sourceLineNumbers, string loopList)
1570 { 1565 {
1571 return Message(sourceLineNumbers, Ids.OrderingReferenceLoopDetected, "A circular reference of ordering dependencies was detected. The infinite loop includes: {0}. Ordering dependency references must form a directed acyclic graph.", loopList); 1566 return Message(sourceLineNumbers, Ids.OrderingReferenceLoopDetected, "A circular reference of ordering dependencies was detected. The infinite loop includes: {0}. Ordering dependency references must form a directed acyclic graph.", loopList);
@@ -2479,7 +2474,6 @@ namespace WixToolset.Data
2479 InvalidKeyColumn = 220, 2474 InvalidKeyColumn = 220,
2480 CollidingModularizationTypes = 221, 2475 CollidingModularizationTypes = 221,
2481 CubeFileNotFound = 222, 2476 CubeFileNotFound = 222,
2482 OpenDatabaseFailed = 223,
2483 OutputTypeMismatch = 224, 2477 OutputTypeMismatch = 224,
2484 RealTableMissingPrimaryKeyColumn = 225, 2478 RealTableMissingPrimaryKeyColumn = 225,
2485 IllegalColumnName = 226, 2479 IllegalColumnName = 226,