diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-08-20 14:22:07 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-08-20 14:25:49 -0700 |
| commit | 3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c (patch) | |
| tree | bbe907a4c5ebf7aa5e3f02141f6e3abd31cb7b5c /src/WixToolset.Extensibility/IPreprocessorCore.cs | |
| parent | 6dee3b45cb679786bd49a5db8fde9006d283b3e2 (diff) | |
| download | wix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.tar.gz wix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.tar.bz2 wix-3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c.zip | |
Move to .NET Core 2.0
Diffstat (limited to 'src/WixToolset.Extensibility/IPreprocessorCore.cs')
| -rw-r--r-- | src/WixToolset.Extensibility/IPreprocessorCore.cs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/IPreprocessorCore.cs b/src/WixToolset.Extensibility/IPreprocessorCore.cs new file mode 100644 index 00000000..a0449139 --- /dev/null +++ b/src/WixToolset.Extensibility/IPreprocessorCore.cs | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. | ||
| 2 | |||
| 3 | namespace WixToolset.Extensibility | ||
| 4 | { | ||
| 5 | using WixToolset.Data; | ||
| 6 | |||
| 7 | public interface IPreprocessorCore : IMessageHandler | ||
| 8 | { | ||
| 9 | /// <summary> | ||
| 10 | /// Gets or sets the platform which the compiler will use when defaulting 64-bit attributes and elements. | ||
| 11 | /// </summary> | ||
| 12 | /// <value>The platform which the compiler will use when defaulting 64-bit attributes and elements.</value> | ||
| 13 | Platform CurrentPlatform { get; } | ||
| 14 | |||
| 15 | /// <summary> | ||
| 16 | /// Gets whether the core encountered an error while processing. | ||
| 17 | /// </summary> | ||
| 18 | /// <value>Flag if core encountered an error during processing.</value> | ||
| 19 | bool EncounteredError { get; } | ||
| 20 | } | ||
| 21 | } | ||
