diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixToolset.Data/ErrorMessages.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs index 3fa23a74..43398ad2 100644 --- a/src/WixToolset.Data/ErrorMessages.cs +++ b/src/WixToolset.Data/ErrorMessages.cs | |||
@@ -203,6 +203,11 @@ namespace WixToolset.Data | |||
203 | return Message(null, Ids.CorruptFileFormat, "Attempted to load corrupt file from path: {0}. The file with format {1} contained unexpected content. Ensure the correct path was provided and that the file has not been incorrectly modified.", path, format.ToLowerInvariant()); | 203 | return Message(null, Ids.CorruptFileFormat, "Attempted to load corrupt file from path: {0}. The file with format {1} contained unexpected content. Ensure the correct path was provided and that the file has not been incorrectly modified.", path, format.ToLowerInvariant()); |
204 | } | 204 | } |
205 | 205 | ||
206 | public static Message CouldNotDetermineProductCodeFromTransformSummaryInfo() | ||
207 | { | ||
208 | return Message(null, Ids.CouldNotDetermineProductCodeFromTransformSummaryInfo, "Could not determine ProductCode from transform summary information."); | ||
209 | } | ||
210 | |||
206 | public static Message CreateCabAddFileFailed() | 211 | public static Message CreateCabAddFileFailed() |
207 | { | 212 | { |
208 | return Message(null, Ids.CreateCabAddFileFailed, "An error (E_FAIL) was returned while adding files to a CAB file. This most commonly happens when creating a CAB file 2 GB or larger. Either reduce the size of your installation package, raise Media/@CompressionLevel to a higher compression level, or split your installation package's files into more than one CAB file."); | 213 | return Message(null, Ids.CreateCabAddFileFailed, "An error (E_FAIL) was returned while adding files to a CAB file. This most commonly happens when creating a CAB file 2 GB or larger. Either reduce the size of your installation package, raise Media/@CompressionLevel to a higher compression level, or split your installation package's files into more than one CAB file."); |
@@ -2640,6 +2645,7 @@ namespace WixToolset.Data | |||
2640 | NoSourceFiles = 391, | 2645 | NoSourceFiles = 391, |
2641 | WixiplSourceFileIsExclusive = 392, | 2646 | WixiplSourceFileIsExclusive = 392, |
2642 | UnableToConvertFieldToNumber = 393, | 2647 | UnableToConvertFieldToNumber = 393, |
2648 | CouldNotDetermineProductCodeFromTransformSummaryInfo = 394, | ||
2643 | } | 2649 | } |
2644 | } | 2650 | } |
2645 | } | 2651 | } |