diff options
Diffstat (limited to 'src/WixToolset.BuildTasks/WixBuild.cs')
-rw-r--r-- | src/WixToolset.BuildTasks/WixBuild.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/WixToolset.BuildTasks/WixBuild.cs b/src/WixToolset.BuildTasks/WixBuild.cs index b669c52b..dbff7e81 100644 --- a/src/WixToolset.BuildTasks/WixBuild.cs +++ b/src/WixToolset.BuildTasks/WixBuild.cs | |||
@@ -59,7 +59,9 @@ namespace WixToolset.BuildTasks | |||
59 | public ITaskItem BindBuiltOutputsFile { get; set; } | 59 | public ITaskItem BindBuiltOutputsFile { get; set; } |
60 | 60 | ||
61 | public string CabinetCachePath { get; set; } | 61 | public string CabinetCachePath { get; set; } |
62 | |||
62 | public int CabinetCreationThreadCount { get; set; } | 63 | public int CabinetCreationThreadCount { get; set; } |
64 | |||
63 | public string DefaultCompressionLevel { get; set; } | 65 | public string DefaultCompressionLevel { get; set; } |
64 | 66 | ||
65 | [Output] | 67 | [Output] |
@@ -69,7 +71,9 @@ namespace WixToolset.BuildTasks | |||
69 | public string[] WixVariables { get; set; } | 71 | public string[] WixVariables { get; set; } |
70 | 72 | ||
71 | public bool SuppressValidation { get; set; } | 73 | public bool SuppressValidation { get; set; } |
74 | |||
72 | public string[] SuppressIces { get; set; } | 75 | public string[] SuppressIces { get; set; } |
76 | |||
73 | public string AdditionalCub { get; set; } | 77 | public string AdditionalCub { get; set; } |
74 | 78 | ||
75 | protected override string ToolName => "wix.exe"; | 79 | protected override string ToolName => "wix.exe"; |
@@ -95,6 +99,7 @@ namespace WixToolset.BuildTasks | |||
95 | commandLineBuilder.AppendSwitchIfNotNull("-contentsfile ", this.BindContentsFile); | 99 | commandLineBuilder.AppendSwitchIfNotNull("-contentsfile ", this.BindContentsFile); |
96 | commandLineBuilder.AppendSwitchIfNotNull("-outputsfile ", this.BindOutputsFile); | 100 | commandLineBuilder.AppendSwitchIfNotNull("-outputsfile ", this.BindOutputsFile); |
97 | commandLineBuilder.AppendSwitchIfNotNull("-builtoutputsfile ", this.BindBuiltOutputsFile); | 101 | commandLineBuilder.AppendSwitchIfNotNull("-builtoutputsfile ", this.BindBuiltOutputsFile); |
102 | commandLineBuilder.AppendSwitchIfNotNull("-defaultcompressionlevel ", this.DefaultCompressionLevel); | ||
98 | 103 | ||
99 | base.BuildCommandLine(commandLineBuilder); | 104 | base.BuildCommandLine(commandLineBuilder); |
100 | 105 | ||