aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Burn/Bundles/BurnReader.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.Burn/Bundles/BurnReader.cs')
-rw-r--r--src/WixToolset.Core.Burn/Bundles/BurnReader.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/WixToolset.Core.Burn/Bundles/BurnReader.cs b/src/WixToolset.Core.Burn/Bundles/BurnReader.cs
index b4e23623..68fdea1c 100644
--- a/src/WixToolset.Core.Burn/Bundles/BurnReader.cs
+++ b/src/WixToolset.Core.Burn/Bundles/BurnReader.cs
@@ -32,6 +32,7 @@ namespace WixToolset.Core.Burn.Bundles
32 /// <summary> 32 /// <summary>
33 /// Creates a BurnReader for reading a PE file. 33 /// Creates a BurnReader for reading a PE file.
34 /// </summary> 34 /// </summary>
35 /// <param name="messaging"></param>
35 /// <param name="fileExe">File to read.</param> 36 /// <param name="fileExe">File to read.</param>
36 private BurnReader(IMessaging messaging, string fileExe) 37 private BurnReader(IMessaging messaging, string fileExe)
37 : base(messaging, fileExe) 38 : base(messaging, fileExe)
@@ -58,6 +59,7 @@ namespace WixToolset.Core.Burn.Bundles
58 /// <summary> 59 /// <summary>
59 /// Opens a Burn reader. 60 /// Opens a Burn reader.
60 /// </summary> 61 /// </summary>
62 /// <param name="messaging"></param>
61 /// <param name="fileExe">Path to file.</param> 63 /// <param name="fileExe">Path to file.</param>
62 /// <returns>Burn reader.</returns> 64 /// <returns>Burn reader.</returns>
63 public static BurnReader Open(IMessaging messaging, string fileExe) 65 public static BurnReader Open(IMessaging messaging, string fileExe)
@@ -77,6 +79,7 @@ namespace WixToolset.Core.Burn.Bundles
77 /// Gets the UX container from the exe and extracts its contents to the output directory. 79 /// Gets the UX container from the exe and extracts its contents to the output directory.
78 /// </summary> 80 /// </summary>
79 /// <param name="outputDirectory">Directory to write extracted files to.</param> 81 /// <param name="outputDirectory">Directory to write extracted files to.</param>
82 /// <param name="tempDirectory">Scratch directory.</param>
80 /// <returns>True if successful, false otherwise</returns> 83 /// <returns>True if successful, false otherwise</returns>
81 public bool ExtractUXContainer(string outputDirectory, string tempDirectory) 84 public bool ExtractUXContainer(string outputDirectory, string tempDirectory)
82 { 85 {
@@ -157,6 +160,7 @@ namespace WixToolset.Core.Burn.Bundles
157 /// Gets the attached container from the exe and extracts its contents to the output directory. 160 /// Gets the attached container from the exe and extracts its contents to the output directory.
158 /// </summary> 161 /// </summary>
159 /// <param name="outputDirectory">Directory to write extracted files to.</param> 162 /// <param name="outputDirectory">Directory to write extracted files to.</param>
163 /// <param name="tempDirectory">Scratch directory.</param>
160 /// <returns>True if successful, false otherwise</returns> 164 /// <returns>True if successful, false otherwise</returns>
161 public bool ExtractAttachedContainer(string outputDirectory, string tempDirectory) 165 public bool ExtractAttachedContainer(string outputDirectory, string tempDirectory)
162 { 166 {