blob: c39899024396c58366809ecfbeac0a87d89cd0a5 (
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
|
// 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.HeatTasks
{
using System;
using System.Collections.Generic;
using Microsoft.Build.Utilities;
/// <summary>
/// Helper class for appending the command line arguments.
/// </summary>
public class WixCommandLineBuilder : CommandLineBuilder
{
/// <summary>
/// Append a switch to the command line if the condition is true.
/// </summary>
/// <param name="switchName">Switch to append.</param>
/// <param name="condition">Condition specified by the user.</param>
public void AppendIfTrue(string switchName, bool condition)
{
if (condition)
{
this.AppendSwitch(switchName);
}
}
/// <summary>
/// Append a switch to the command line if any values in the array have been specified.
/// </summary>
/// <param name="switchName">Switch to append.</param>
/// <param name="values">Values specified by the user.</param>
public void AppendArrayIfNotNull(string switchName, IEnumerable<string> values)
{
if (values != null)
{
foreach (var value in values)
{
this.AppendSwitchIfNotNull(switchName, value);
}
}
}
/// <summary>
/// Append arbitrary text to the command-line if specified.
/// </summary>
/// <param name="textToAppend">Text to append.</param>
public void AppendTextIfNotNull(string textToAppend)
{
if (!String.IsNullOrWhiteSpace(textToAppend))
{
this.AppendSpaceIfNotEmpty();
this.AppendTextUnquoted(textToAppend);
}
}
}
}
|