diff options
Diffstat (limited to 'src/WixToolset.Core/DecompileResult.cs')
-rw-r--r-- | src/WixToolset.Core/DecompileResult.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Core/DecompileResult.cs b/src/WixToolset.Core/DecompileResult.cs new file mode 100644 index 00000000..120d099d --- /dev/null +++ b/src/WixToolset.Core/DecompileResult.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 | |||
3 | namespace WixToolset.Core | ||
4 | { | ||
5 | using System.Collections.Generic; | ||
6 | using System.Xml.Linq; | ||
7 | using WixToolset.Extensibility.Data; | ||
8 | |||
9 | internal class DecompileResult : IDecompileResult | ||
10 | { | ||
11 | public XDocument Document { get; set; } | ||
12 | |||
13 | public IEnumerable<string> ExtractedFilePaths { get; set; } | ||
14 | } | ||
15 | } | ||