aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/ICompileContext.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Extensibility/Data/ICompileContext.cs (renamed from src/WixToolset.Extensibility/ICompileContext.cs)5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/WixToolset.Extensibility/ICompileContext.cs b/src/WixToolset.Extensibility/Data/ICompileContext.cs
index fbe38d63..50ad10b9 100644
--- a/src/WixToolset.Extensibility/ICompileContext.cs
+++ b/src/WixToolset.Extensibility/Data/ICompileContext.cs
@@ -1,19 +1,16 @@
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. 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 2
3namespace WixToolset.Extensibility 3namespace WixToolset.Extensibility.Data
4{ 4{
5 using System; 5 using System;
6 using System.Collections.Generic; 6 using System.Collections.Generic;
7 using System.Xml.Linq; 7 using System.Xml.Linq;
8 using WixToolset.Data; 8 using WixToolset.Data;
9 using WixToolset.Extensibility.Services;
10 9
11 public interface ICompileContext 10 public interface ICompileContext
12 { 11 {
13 IServiceProvider ServiceProvider { get; } 12 IServiceProvider ServiceProvider { get; }
14 13
15 IMessaging Messaging { get; set; }
16
17 string CompilationId { get; set; } 14 string CompilationId { get; set; }
18 15
19 IEnumerable<ICompilerExtension> Extensions { get; set; } 16 IEnumerable<ICompilerExtension> Extensions { get; set; }