diff options
Diffstat (limited to 'src/WixToolset.BuildTasks/HeatFile.cs')
| -rw-r--r-- | src/WixToolset.BuildTasks/HeatFile.cs | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/WixToolset.BuildTasks/HeatFile.cs b/src/WixToolset.BuildTasks/HeatFile.cs index e21d61f5..57fe579d 100644 --- a/src/WixToolset.BuildTasks/HeatFile.cs +++ b/src/WixToolset.BuildTasks/HeatFile.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 HeatFile : HeatTask | 7 | public sealed class HeatFile : HeatTask |
| 9 | { | 8 | { |
| 10 | private string file; | 9 | private string file; |
| @@ -70,14 +69,8 @@ namespace WixToolset.BuildTasks | |||
| 70 | get { return "file"; } | 69 | get { return "file"; } |
| 71 | } | 70 | } |
| 72 | 71 | ||
| 73 | /// <summary> | 72 | protected override void BuildCommandLine(WixCommandLineBuilder commandLineBuilder) |
| 74 | /// Generate the command line arguments to write to the response file from the properties. | ||
| 75 | /// </summary> | ||
| 76 | /// <returns>Command line string.</returns> | ||
| 77 | protected override string GenerateResponseFileCommands() | ||
| 78 | { | 73 | { |
| 79 | WixCommandLineBuilder commandLineBuilder = new WixCommandLineBuilder(); | ||
| 80 | |||
| 81 | commandLineBuilder.AppendSwitch(this.OperationName); | 74 | commandLineBuilder.AppendSwitch(this.OperationName); |
| 82 | commandLineBuilder.AppendFileNameIfNotNull(this.File); | 75 | commandLineBuilder.AppendFileNameIfNotNull(this.File); |
| 83 | 76 | ||
| @@ -90,8 +83,6 @@ namespace WixToolset.BuildTasks | |||
| 90 | commandLineBuilder.AppendSwitchIfNotNull("-var ", this.PreprocessorVariable); | 83 | commandLineBuilder.AppendSwitchIfNotNull("-var ", this.PreprocessorVariable); |
| 91 | 84 | ||
| 92 | base.BuildCommandLine(commandLineBuilder); | 85 | base.BuildCommandLine(commandLineBuilder); |
| 93 | return commandLineBuilder.ToString(); | ||
| 94 | } | 86 | } |
| 95 | } | 87 | } |
| 96 | #endif | ||
| 97 | } | 88 | } |
