aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/IPreprocessorCore.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2017-12-02 00:45:33 -0800
committerRob Mensching <rob@firegiant.com>2017-12-02 00:45:33 -0800
commitfb2df0e24c0709ce94c396624cf86c70e02da01f (patch)
treee0a16a342dca4f9b343afa945d89116856950b83 /src/WixToolset.Extensibility/IPreprocessorCore.cs
parent404f34f00ecce034a8a06fe4757789c6ce62f3f6 (diff)
downloadwix-fb2df0e24c0709ce94c396624cf86c70e02da01f.tar.gz
wix-fb2df0e24c0709ce94c396624cf86c70e02da01f.tar.bz2
wix-fb2df0e24c0709ce94c396624cf86c70e02da01f.zip
Fix IExtensionCommandLine and IPreprocessorExtension
Diffstat (limited to 'src/WixToolset.Extensibility/IPreprocessorCore.cs')
-rw-r--r--src/WixToolset.Extensibility/IPreprocessorCore.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/WixToolset.Extensibility/IPreprocessorCore.cs b/src/WixToolset.Extensibility/IPreprocessorCore.cs
deleted file mode 100644
index a0449139..00000000
--- a/src/WixToolset.Extensibility/IPreprocessorCore.cs
+++ /dev/null
@@ -1,21 +0,0 @@
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
3namespace 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}