aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BuildTasks/HeatProject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.BuildTasks/HeatProject.cs')
-rw-r--r--src/WixToolset.BuildTasks/HeatProject.cs11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/WixToolset.BuildTasks/HeatProject.cs b/src/WixToolset.BuildTasks/HeatProject.cs
index c8f56688..71679dc4 100644
--- a/src/WixToolset.BuildTasks/HeatProject.cs
+++ b/src/WixToolset.BuildTasks/HeatProject.cs
@@ -4,7 +4,6 @@ namespace WixToolset.BuildTasks
4{ 4{
5 using Microsoft.Build.Framework; 5 using Microsoft.Build.Framework;
6 6
7#if false
8 public sealed class HeatProject : HeatTask 7 public sealed class HeatProject : HeatTask
9 { 8 {
10 private string configuration; 9 private string configuration;
@@ -83,14 +82,8 @@ namespace WixToolset.BuildTasks
83 get { return "project"; } 82 get { return "project"; }
84 } 83 }
85 84
86 /// <summary> 85 protected override void BuildCommandLine(WixCommandLineBuilder commandLineBuilder)
87 /// Generate the command line arguments to write to the response file from the properties.
88 /// </summary>
89 /// <returns>Command line string.</returns>
90 protected override string GenerateResponseFileCommands()
91 { 86 {
92 WixCommandLineBuilder commandLineBuilder = new WixCommandLineBuilder();
93
94 commandLineBuilder.AppendSwitch(this.OperationName); 87 commandLineBuilder.AppendSwitch(this.OperationName);
95 commandLineBuilder.AppendFileNameIfNotNull(this.Project); 88 commandLineBuilder.AppendFileNameIfNotNull(this.Project);
96 89
@@ -103,8 +96,6 @@ namespace WixToolset.BuildTasks
103 commandLineBuilder.AppendIfTrue("-wixvar", this.GenerateWixVariables); 96 commandLineBuilder.AppendIfTrue("-wixvar", this.GenerateWixVariables);
104 97
105 base.BuildCommandLine(commandLineBuilder); 98 base.BuildCommandLine(commandLineBuilder);
106 return commandLineBuilder.ToString();
107 } 99 }
108 } 100 }
109#endif
110} 101}