aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/DecompileContext.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core/DecompileContext.cs')
-rw-r--r--src/WixToolset.Core/DecompileContext.cs20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/WixToolset.Core/DecompileContext.cs b/src/WixToolset.Core/DecompileContext.cs
index a9f0640a..b697c3cf 100644
--- a/src/WixToolset.Core/DecompileContext.cs
+++ b/src/WixToolset.Core/DecompileContext.cs
@@ -1,4 +1,4 @@
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. 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 2
3namespace WixToolset.Core 3namespace WixToolset.Core
4{ 4{
@@ -17,12 +17,30 @@ namespace WixToolset.Core
17 17
18 public IServiceProvider ServiceProvider { get; } 18 public IServiceProvider ServiceProvider { get; }
19 19
20 public string DecompilePath { get; set; }
21
20 public OutputType DecompileType { get; set; } 22 public OutputType DecompileType { get; set; }
21 23
22 public IEnumerable<IDecompilerExtension> Extensions { get; set; } 24 public IEnumerable<IDecompilerExtension> Extensions { get; set; }
23 25
26 public string ExtractFolder { get; set; }
27
28 public string BaseSourcePath { get; set; }
29
24 public string IntermediateFolder { get; set; } 30 public string IntermediateFolder { get; set; }
25 31
32 public bool IsAdminImage { get; set; }
33
26 public string OutputPath { get; set; } 34 public string OutputPath { get; set; }
35
36 public bool SuppressCustomTables { get; set; }
37
38 public bool SuppressDroppingEmptyTables { get; set; }
39
40 public bool SuppressExtractCabinets { get; set; }
41
42 public bool SuppressUI { get; set; }
43
44 public bool TreatProductAsModule { get; set; }
27 } 45 }
28} 46}