diff options
author | Rob Mensching <rob@firegiant.com> | 2022-08-10 12:57:14 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-08-10 17:31:40 -0700 |
commit | 2067f5acbfd7593f10ac2607f96df4457002b4c3 (patch) | |
tree | fdf959305e4da5fc514a401548d3270a6116fc2c /src/api | |
parent | 240b663ad5fc94ed6d19c966b5c9105a176ecf40 (diff) | |
download | wix-2067f5acbfd7593f10ac2607f96df4457002b4c3.tar.gz wix-2067f5acbfd7593f10ac2607f96df4457002b4c3.tar.bz2 wix-2067f5acbfd7593f10ac2607f96df4457002b4c3.zip |
Preprocessor only fails if current document does not parse
Previously, preprocessor would not return successfully processed files
if an error was encountered with this file or any previous file. No the
preprocessor will only fail if the current processed file generates any
errors.
Diffstat (limited to 'src/api')
-rw-r--r-- | src/api/wix/WixToolset.Extensibility/Services/IMessaging.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/api/wix/WixToolset.Extensibility/Services/IMessaging.cs b/src/api/wix/WixToolset.Extensibility/Services/IMessaging.cs index fe77f2a4..15e17e63 100644 --- a/src/api/wix/WixToolset.Extensibility/Services/IMessaging.cs +++ b/src/api/wix/WixToolset.Extensibility/Services/IMessaging.cs | |||
@@ -16,6 +16,12 @@ namespace WixToolset.Extensibility.Services | |||
16 | bool EncounteredError { get; } | 16 | bool EncounteredError { get; } |
17 | 17 | ||
18 | /// <summary> | 18 | /// <summary> |
19 | /// Gets the number of errors encountered thus far. | ||
20 | /// </summary> | ||
21 | /// <value>The number of errors encountered.</value> | ||
22 | int ErrorCount { get; } | ||
23 | |||
24 | /// <summary> | ||
19 | /// Gets the last error code encountered during messaging. | 25 | /// Gets the last error code encountered during messaging. |
20 | /// </summary> | 26 | /// </summary> |
21 | /// <value>The exit code for the process.</value> | 27 | /// <value>The exit code for the process.</value> |