aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/IExpectedExtractFile.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Extensibility/IExpectedExtractFile.cs')
-rw-r--r--src/WixToolset.Extensibility/IExpectedExtractFile.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/IExpectedExtractFile.cs b/src/WixToolset.Extensibility/IExpectedExtractFile.cs
new file mode 100644
index 00000000..06e4f77f
--- /dev/null
+++ b/src/WixToolset.Extensibility/IExpectedExtractFile.cs
@@ -0,0 +1,15 @@
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
7 public interface IExpectedExtractFile
8 {
9 Uri Uri { get; set; }
10
11 int EmbeddedFileIndex { get; set; }
12
13 string OutputPath { get; set; }
14 }
15} \ No newline at end of file