aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/ICompileContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/ICompileContext.cs')
-rw-r--r--src/WixToolset.Extensibility/ICompileContext.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/ICompileContext.cs b/src/WixToolset.Extensibility/ICompileContext.cs
new file mode 100644
index 00000000..d48e9539
--- /dev/null
+++ b/src/WixToolset.Extensibility/ICompileContext.cs
@@ -0,0 +1,26 @@
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 System;
6 using System.Collections.Generic;
7 using System.Xml.Linq;
8 using WixToolset.Data;
9
10 public interface ICompileContext
11 {
12 IServiceProvider ServiceProvider { get; }
13
14 Messaging Messaging { get; set; }
15
16 string CompilationId { get; set; }
17
18 IEnumerable<ICompilerExtension> Extensions { get; set; }
19
20 string OutputPath { get; set; }
21
22 Platform Platform { get; set; }
23
24 XDocument Source { get; set; }
25 }
26}