diff options
Diffstat (limited to 'src/WixToolset.Core/DecompileResult.cs')
-rw-r--r-- | src/WixToolset.Core/DecompileResult.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WixToolset.Core/DecompileResult.cs b/src/WixToolset.Core/DecompileResult.cs index 120d099d..8c9285ba 100644 --- a/src/WixToolset.Core/DecompileResult.cs +++ b/src/WixToolset.Core/DecompileResult.cs | |||
@@ -4,6 +4,7 @@ namespace WixToolset.Core | |||
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 | using WixToolset.Extensibility.Data; | 8 | using WixToolset.Extensibility.Data; |
8 | 9 | ||
9 | internal class DecompileResult : IDecompileResult | 10 | internal class DecompileResult : IDecompileResult |
@@ -11,5 +12,7 @@ namespace WixToolset.Core | |||
11 | public XDocument Document { get; set; } | 12 | public XDocument Document { get; set; } |
12 | 13 | ||
13 | public IEnumerable<string> ExtractedFilePaths { get; set; } | 14 | public IEnumerable<string> ExtractedFilePaths { get; set; } |
15 | |||
16 | public Platform? Platform { get; set; } | ||
14 | } | 17 | } |
15 | } | 18 | } |