diff options
Diffstat (limited to 'src/test/burn/WixTestTools/MSIExec.cs')
-rw-r--r-- | src/test/burn/WixTestTools/MSIExec.cs | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/test/burn/WixTestTools/MSIExec.cs b/src/test/burn/WixTestTools/MSIExec.cs index a10a48d6..5f57da7b 100644 --- a/src/test/burn/WixTestTools/MSIExec.cs +++ b/src/test/burn/WixTestTools/MSIExec.cs | |||
@@ -110,7 +110,7 @@ namespace WixTestTools | |||
110 | this.NoRestart = true; | 110 | this.NoRestart = true; |
111 | this.ForceRestart = false; | 111 | this.ForceRestart = false; |
112 | this.PromptRestart = false; | 112 | this.PromptRestart = false; |
113 | this.LogFile = string.Empty; | 113 | this.LogFile = String.Empty; |
114 | this.LoggingOptions = MSIExecLoggingOptions.VOICEWARMUP; | 114 | this.LoggingOptions = MSIExecLoggingOptions.VOICEWARMUP; |
115 | this.OtherArguments = String.Empty; | 115 | this.OtherArguments = String.Empty; |
116 | } | 116 | } |
@@ -230,14 +230,14 @@ namespace WixTestTools | |||
230 | } | 230 | } |
231 | 231 | ||
232 | // logfile and logging options | 232 | // logfile and logging options |
233 | if (0 != loggingOptionsString.Length || !string.IsNullOrEmpty(this.LogFile)) | 233 | if (0 != loggingOptionsString.Length || !String.IsNullOrEmpty(this.LogFile)) |
234 | { | 234 | { |
235 | arguments.Append(" /l"); | 235 | arguments.Append(" /l"); |
236 | if (0 != loggingOptionsString.Length) | 236 | if (0 != loggingOptionsString.Length) |
237 | { | 237 | { |
238 | arguments.AppendFormat("{0} ", loggingOptionsString); | 238 | arguments.AppendFormat("{0} ", loggingOptionsString); |
239 | } | 239 | } |
240 | if (!string.IsNullOrEmpty(this.LogFile)) | 240 | if (!String.IsNullOrEmpty(this.LogFile)) |
241 | { | 241 | { |
242 | arguments.AppendFormat(" \"{0}\" ", this.LogFile); | 242 | arguments.AppendFormat(" \"{0}\" ", this.LogFile); |
243 | } | 243 | } |
@@ -268,7 +268,7 @@ namespace WixTestTools | |||
268 | }; | 268 | }; |
269 | 269 | ||
270 | // product | 270 | // product |
271 | if (!string.IsNullOrEmpty(this.Product)) | 271 | if (!String.IsNullOrEmpty(this.Product)) |
272 | { | 272 | { |
273 | arguments.AppendFormat(" \"{0}\" ", this.Product); | 273 | arguments.AppendFormat(" \"{0}\" ", this.Product); |
274 | } | 274 | } |
@@ -311,6 +311,12 @@ namespace WixTestTools | |||
311 | ERROR_CALL_NOT_IMPLEMENTED = 120, | 311 | ERROR_CALL_NOT_IMPLEMENTED = 120, |
312 | 312 | ||
313 | /// <summary> | 313 | /// <summary> |
314 | /// ERROR_FILENAME_EXCED_RANGE 206 | ||
315 | /// The filename or extension is too long. | ||
316 | /// </summary> | ||
317 | ERROR_FILENAME_EXCED_RANGE = 206, | ||
318 | |||
319 | /// <summary> | ||
314 | /// ERROR_APPHELP_BLOCK 1259 | 320 | /// ERROR_APPHELP_BLOCK 1259 |
315 | /// If Windows Installer determines a product may be incompatible with the current operating system, | 321 | /// If Windows Installer determines a product may be incompatible with the current operating system, |
316 | /// it displays a dialog box informing the user and asking whether to try to install anyway. | 322 | /// it displays a dialog box informing the user and asking whether to try to install anyway. |