diff options
Diffstat (limited to 'src/WixToolset.BuildTasks/DoIt.cs')
-rw-r--r-- | src/WixToolset.BuildTasks/DoIt.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/WixToolset.BuildTasks/DoIt.cs b/src/WixToolset.BuildTasks/DoIt.cs index 977a2326..0c7a0943 100644 --- a/src/WixToolset.BuildTasks/DoIt.cs +++ b/src/WixToolset.BuildTasks/DoIt.cs | |||
@@ -28,7 +28,7 @@ namespace WixToolset.BuildTasks | |||
28 | 28 | ||
29 | public string AdditionalOptions { get; set; } | 29 | public string AdditionalOptions { get; set; } |
30 | 30 | ||
31 | public string Cultures { get; set; } | 31 | public string[] Cultures { get; set; } |
32 | 32 | ||
33 | public string[] DefineConstants { get; set; } | 33 | public string[] DefineConstants { get; set; } |
34 | 34 | ||
@@ -145,7 +145,7 @@ namespace WixToolset.BuildTasks | |||
145 | commandLineBuilder.AppendSwitchIfNotNull("-out ", this.OutputFile); | 145 | commandLineBuilder.AppendSwitchIfNotNull("-out ", this.OutputFile); |
146 | commandLineBuilder.AppendSwitchIfNotNull("-outputType ", this.OutputType); | 146 | commandLineBuilder.AppendSwitchIfNotNull("-outputType ", this.OutputType); |
147 | commandLineBuilder.AppendIfTrue("-nologo", this.NoLogo); | 147 | commandLineBuilder.AppendIfTrue("-nologo", this.NoLogo); |
148 | commandLineBuilder.AppendSwitchIfNotNull("-cultures ", this.Cultures); | 148 | commandLineBuilder.AppendArrayIfNotNull("-culture ", this.Cultures); |
149 | commandLineBuilder.AppendArrayIfNotNull("-d ", this.DefineConstants); | 149 | commandLineBuilder.AppendArrayIfNotNull("-d ", this.DefineConstants); |
150 | commandLineBuilder.AppendArrayIfNotNull("-I ", this.IncludeSearchPaths); | 150 | commandLineBuilder.AppendArrayIfNotNull("-I ", this.IncludeSearchPaths); |
151 | commandLineBuilder.AppendExtensions(this.Extensions, this.ExtensionDirectory, this.ReferencePaths); | 151 | commandLineBuilder.AppendExtensions(this.Extensions, this.ExtensionDirectory, this.ReferencePaths); |