blob: bf0a2ad32a05efca444c87eb6284959e8de0c526 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.BuildTasks
{
using System;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Text;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
/// <summary>
/// A base MSBuild task to run the WiX harvester.
/// Specific harvester tasks should extend this class.
/// </summary>
public abstract class HeatTask : WixToolTask
{
private const string HeatToolName = "Heat.exe";
private bool autogenerageGuids;
private bool generateGuidsNow;
private ITaskItem outputFile;
private bool suppressFragments;
private bool suppressUniqueIds;
private string[] transforms;
public bool AutogenerateGuids
{
get { return this.autogenerageGuids; }
set { this.autogenerageGuids = value; }
}
public bool GenerateGuidsNow
{
get { return this.generateGuidsNow; }
set { this.generateGuidsNow = value; }
}
[Required]
[Output]
public ITaskItem OutputFile
{
get { return this.outputFile; }
set { this.outputFile = value; }
}
public bool SuppressFragments
{
get { return this.suppressFragments; }
set { this.suppressFragments = value; }
}
public bool SuppressUniqueIds
{
get { return this.suppressUniqueIds; }
set { this.suppressUniqueIds = value; }
}
public string[] Transforms
{
get { return this.transforms; }
set { this.transforms = value; }
}
/// <summary>
/// Get the name of the executable.
/// </summary>
/// <remarks>The ToolName is used with the ToolPath to get the location of heat.exe.</remarks>
/// <value>The name of the executable.</value>
protected override string ToolName
{
get { return HeatToolName; }
}
/// <summary>
/// Gets the name of the heat operation performed by the task.
/// </summary>
/// <remarks>This is the first parameter passed on the heat.exe command-line.</remarks>
/// <value>The name of the heat operation performed by the task.</value>
protected abstract string OperationName
{
get;
}
/// <summary>
/// Get the path to the executable.
/// </summary>
/// <remarks>GetFullPathToTool is only called when the ToolPath property is not set (see the ToolName remarks above).</remarks>
/// <returns>The full path to the executable or simply heat.exe if it's expected to be in the system path.</returns>
protected override string GenerateFullPathToTool()
{
// If there's not a ToolPath specified, it has to be in the system path.
if (String.IsNullOrEmpty(this.ToolPath))
{
return HeatToolName;
}
return Path.Combine(Path.GetFullPath(this.ToolPath), HeatToolName);
}
/// <summary>
/// Builds a command line from options in this task.
/// </summary>
protected override void BuildCommandLine(WixCommandLineBuilder commandLineBuilder)
{
base.BuildCommandLine(commandLineBuilder);
commandLineBuilder.AppendIfTrue("-ag", this.AutogenerateGuids);
commandLineBuilder.AppendIfTrue("-gg", this.GenerateGuidsNow);
commandLineBuilder.AppendIfTrue("-nologo", this.NoLogo);
commandLineBuilder.AppendIfTrue("-sfrag", this.SuppressFragments);
commandLineBuilder.AppendIfTrue("-suid", this.SuppressUniqueIds);
commandLineBuilder.AppendArrayIfNotNull("-sw", this.SuppressSpecificWarnings);
commandLineBuilder.AppendArrayIfNotNull("-t ", this.Transforms);
commandLineBuilder.AppendTextIfNotNull(this.AdditionalOptions);
commandLineBuilder.AppendSwitchIfNotNull("-out ", this.OutputFile);
}
}
}
|