diff options
Diffstat (limited to 'src/WixToolset.BuildTasks/WixCommandLineBuilder.cs')
-rw-r--r-- | src/WixToolset.BuildTasks/WixCommandLineBuilder.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/WixToolset.BuildTasks/WixCommandLineBuilder.cs b/src/WixToolset.BuildTasks/WixCommandLineBuilder.cs index 3f3084a3..a979dbb0 100644 --- a/src/WixToolset.BuildTasks/WixCommandLineBuilder.cs +++ b/src/WixToolset.BuildTasks/WixCommandLineBuilder.cs | |||
@@ -3,10 +3,9 @@ | |||
3 | namespace WixToolset.BuildTasks | 3 | namespace WixToolset.BuildTasks |
4 | { | 4 | { |
5 | using System; | 5 | using System; |
6 | using System.Diagnostics; | 6 | using System.Collections.Generic; |
7 | using System.Globalization; | 7 | using System.Globalization; |
8 | using System.IO; | 8 | using System.IO; |
9 | using System.Text; | ||
10 | 9 | ||
11 | using Microsoft.Build.Framework; | 10 | using Microsoft.Build.Framework; |
12 | using Microsoft.Build.Utilities; | 11 | using Microsoft.Build.Utilities; |
@@ -17,7 +16,7 @@ namespace WixToolset.BuildTasks | |||
17 | public class WixCommandLineBuilder : CommandLineBuilder | 16 | public class WixCommandLineBuilder : CommandLineBuilder |
18 | { | 17 | { |
19 | internal const int Unspecified = -1; | 18 | internal const int Unspecified = -1; |
20 | 19 | ||
21 | /// <summary> | 20 | /// <summary> |
22 | /// Append a switch to the command line if the value has been specified. | 21 | /// Append a switch to the command line if the value has been specified. |
23 | /// </summary> | 22 | /// </summary> |
@@ -131,7 +130,7 @@ namespace WixToolset.BuildTasks | |||
131 | 130 | ||
132 | if (!File.Exists(resolvedPath)) | 131 | if (!File.Exists(resolvedPath)) |
133 | { | 132 | { |
134 | // Extesnion wasn't found, just set it to the extension name passed in | 133 | // Extension wasn't found, just set it to the extension name passed in |
135 | resolvedPath = extension.ItemSpec; | 134 | resolvedPath = extension.ItemSpec; |
136 | } | 135 | } |
137 | } | 136 | } |