aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-07-23 13:46:09 -0700
committerRob Mensching <rob@firegiant.com>2018-07-23 13:46:09 -0700
commite130a7a296696e3a7b1229cf580de393b3f20cbd (patch)
treec7677e1fcb88bfd88b9a314ccc23d987f8bbc870 /src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs
parentd3da4f5cc6f07376a783ba4bdd03c3bb8dc5e480 (diff)
downloadwix-e130a7a296696e3a7b1229cf580de393b3f20cbd.tar.gz
wix-e130a7a296696e3a7b1229cf580de393b3f20cbd.tar.bz2
wix-e130a7a296696e3a7b1229cf580de393b3f20cbd.zip
Reorganize data into Extensibility.Data namespace
Diffstat (limited to 'src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs')
-rw-r--r--src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs b/src/WixToolset.Extensibility/Data/IExpectedExtractFile.cs
new file mode 100644
index 00000000..edcf82e0
--- /dev/null
+++ b/src/WixToolset.Extensibility/Data/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.Data
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