From 7efd412cda00b369bc331c9bedd8db971d98fee7 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 18 Oct 2017 15:21:45 -0700 Subject: Incorporate refactoring of WixToolset.Core assemblies --- src/WixToolset.Extensibility/IExpectedExtractFile.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/WixToolset.Extensibility/IExpectedExtractFile.cs (limited to 'src/WixToolset.Extensibility/IExpectedExtractFile.cs') 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 @@ +// 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. + +namespace WixToolset.Extensibility +{ + using System; + + public interface IExpectedExtractFile + { + Uri Uri { get; set; } + + int EmbeddedFileIndex { get; set; } + + string OutputPath { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3-55-g6feb