diff options
Diffstat (limited to 'src/WixToolset.Extensibility/IInscribeContext.cs')
-rw-r--r-- | src/WixToolset.Extensibility/IInscribeContext.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/IInscribeContext.cs b/src/WixToolset.Extensibility/IInscribeContext.cs new file mode 100644 index 00000000..6294271e --- /dev/null +++ b/src/WixToolset.Extensibility/IInscribeContext.cs | |||
@@ -0,0 +1,22 @@ | |||
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 | |||
3 | namespace WixToolset.Extensibility | ||
4 | { | ||
5 | using System; | ||
6 | using WixToolset.Data; | ||
7 | |||
8 | public interface IInscribeContext | ||
9 | { | ||
10 | IServiceProvider ServiceProvider { get; } | ||
11 | |||
12 | string InputFilePath { get; set; } | ||
13 | |||
14 | string IntermediateFolder { get; set; } | ||
15 | |||
16 | Messaging Messaging { get; } | ||
17 | |||
18 | string OutputFile { get; set; } | ||
19 | |||
20 | string SignedEngineFile { get; set; } | ||
21 | } | ||
22 | } | ||