diff options
-rw-r--r-- | src/WixToolset.Extensibility/Data/IDecompileResult.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/IDecompileResult.cs b/src/WixToolset.Extensibility/Data/IDecompileResult.cs index ea993cb2..d15f8847 100644 --- a/src/WixToolset.Extensibility/Data/IDecompileResult.cs +++ b/src/WixToolset.Extensibility/Data/IDecompileResult.cs | |||
@@ -4,11 +4,14 @@ namespace WixToolset.Extensibility.Data | |||
4 | { | 4 | { |
5 | using System.Collections.Generic; | 5 | using System.Collections.Generic; |
6 | using System.Xml.Linq; | 6 | using System.Xml.Linq; |
7 | using WixToolset.Data; | ||
7 | 8 | ||
8 | public interface IDecompileResult | 9 | public interface IDecompileResult |
9 | { | 10 | { |
10 | XDocument Document { get; set; } | 11 | XDocument Document { get; set; } |
11 | 12 | ||
12 | IEnumerable<string> ExtractedFilePaths { get; set; } | 13 | IEnumerable<string> ExtractedFilePaths { get; set; } |
14 | |||
15 | Platform? Platform { get; set; } | ||
13 | } | 16 | } |
14 | } | 17 | } |