diff options
Diffstat (limited to 'src/WixToolset.Core/IncribeContext.cs')
-rw-r--r-- | src/WixToolset.Core/IncribeContext.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/WixToolset.Core/IncribeContext.cs b/src/WixToolset.Core/IncribeContext.cs new file mode 100644 index 00000000..604ba5d1 --- /dev/null +++ b/src/WixToolset.Core/IncribeContext.cs | |||
@@ -0,0 +1,20 @@ | |||
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.Core | ||
4 | { | ||
5 | using WixToolset.Data; | ||
6 | using WixToolset.Extensibility; | ||
7 | |||
8 | internal class InscribeContext : IInscribeContext | ||
9 | { | ||
10 | public Messaging Messaging { get; } = Messaging.Instance; | ||
11 | |||
12 | public string IntermediateFolder { get; set; } | ||
13 | |||
14 | public string InputFilePath { get; set; } | ||
15 | |||
16 | public string SignedEngineFile { get; set; } | ||
17 | |||
18 | public string OutputFile { get; set; } | ||
19 | } | ||
20 | } | ||