From 3e1c5e3fa80a2498f7d6aac5c0f8ca9e3bd7c66c Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sun, 20 Aug 2017 14:22:07 -0700 Subject: Move to .NET Core 2.0 --- src/WixToolset.Extensibility/IPreprocessorCore.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/WixToolset.Extensibility/IPreprocessorCore.cs (limited to 'src/WixToolset.Extensibility/IPreprocessorCore.cs') 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 @@ +// 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. + +namespace WixToolset.Extensibility +{ + using WixToolset.Data; + + public interface IPreprocessorCore : IMessageHandler + { + /// + /// Gets or sets the platform which the compiler will use when defaulting 64-bit attributes and elements. + /// + /// The platform which the compiler will use when defaulting 64-bit attributes and elements. + Platform CurrentPlatform { get; } + + /// + /// Gets whether the core encountered an error while processing. + /// + /// Flag if core encountered an error during processing. + bool EncounteredError { get; } + } +} -- cgit v1.2.3-55-g6feb