@joebigelow / wix-1 / commits / 6afd5104

Add platform to decompiler result.

Bob Arnson committed Oct 8, 2020 at 14:22 UTC 6afd510428b6d9566ba0fe4f478390cb3f7b2925
1 file changed +3
src/WixToolset.Extensibility/Data/IDecompileResult.cs
+3
@@ -4,11 +4,14 @@ namespace WixToolset.Extensibility.Data
4 {
5 using System.Collections.Generic;
6 using System.Xml.Linq;
7 + using WixToolset.Data;
8
9 public interface IDecompileResult
10 {
11 XDocument Document { get; set; }
12
13 IEnumerable<string> ExtractedFilePaths { get; set; }
14 +
15 + Platform? Platform { get; set; }
16 }
17 }