From 13eedbfcf97e402ade06f2be29f98723ef7ff286 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 18 Oct 2018 13:42:54 -0700 Subject: Extract interfaces for Preprocess/Compile/Link/Bind/etc --- src/WixToolset.Core/ICompiler.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/WixToolset.Core/ICompiler.cs (limited to 'src/WixToolset.Core/ICompiler.cs') diff --git a/src/WixToolset.Core/ICompiler.cs b/src/WixToolset.Core/ICompiler.cs new file mode 100644 index 00000000..a2c4a6e8 --- /dev/null +++ b/src/WixToolset.Core/ICompiler.cs @@ -0,0 +1,12 @@ +// 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.Core +{ + using WixToolset.Data; + using WixToolset.Extensibility.Data; + + public interface ICompiler + { + Intermediate Compile(ICompileContext context); + } +} -- cgit v1.2.3-55-g6feb