aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/IInscribeContext.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/WixToolset.Extensibility/Data/IInscribeContext.cs (renamed from src/WixToolset.Extensibility/IInscribeContext.cs)5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/WixToolset.Extensibility/IInscribeContext.cs b/src/WixToolset.Extensibility/Data/IInscribeContext.cs
index 7f741024..4f13ba10 100644
--- a/src/WixToolset.Extensibility/IInscribeContext.cs
+++ b/src/WixToolset.Extensibility/Data/IInscribeContext.cs
@@ -1,16 +1,13 @@
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 WixToolset.Extensibility.Services;
7 6
8 public interface IInscribeContext 7 public interface IInscribeContext
9 { 8 {
10 IServiceProvider ServiceProvider { get; } 9 IServiceProvider ServiceProvider { get; }
11 10
12 IMessaging Messaging { get; set; }
13
14 string InputFilePath { get; set; } 11 string InputFilePath { get; set; }
15 12
16 string IntermediateFolder { get; set; } 13 string IntermediateFolder { get; set; }