diff options
| author | Rob Mensching <rob@firegiant.com> | 2020-02-05 14:41:10 -0800 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2020-02-05 14:43:36 -0800 |
| commit | a482589448fb6e0f7abc1c725c49c65344c83509 (patch) | |
| tree | 7d9730baad7c83ad54ef6abdc64147f52ffbed17 /src/WixToolset.Data/ErrorMessages.cs | |
| parent | a91661efa6d4c678d8ddee458bbf4b8643f96377 (diff) | |
| download | wix-a482589448fb6e0f7abc1c725c49c65344c83509.tar.gz wix-a482589448fb6e0f7abc1c725c49c65344c83509.tar.bz2 wix-a482589448fb6e0f7abc1c725c49c65344c83509.zip | |
Fix patch related tuples
Diffstat (limited to 'src/WixToolset.Data/ErrorMessages.cs')
| -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 | } |
