blob: 0b37827234e579f6bf3aca2cff409981250a45ab (
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
|
// 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.Text.RegularExpressions;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
/// <summary>
/// A base MSBuild task to refresh generated files.
/// </summary>
public abstract class RefreshTask : Task
{
private static readonly Regex AddPrefix = new Regex(@"^[^a-zA-Z_]");
private static readonly Regex IllegalIdentifierCharacters = new Regex(@"[^A-Za-z0-9_\.]|\.{2,}"); // non 'words' and assorted valid characters
/// <summary>Metadata key name to turn off harvesting of project references.</summary>
protected const string DoNotHarvest = "DoNotHarvest";
/// <summary>
/// The list of files to generate.
/// </summary>
[Required]
public ITaskItem[] GeneratedFiles { get; set; }
/// <summary>
/// All the project references in the project.
/// </summary>
[Required]
public ITaskItem[] ProjectReferencePaths { get; set; }
/// <summary>
/// Return an identifier based on passed file/directory name
/// </summary>
/// <param name="name">File/directory name to generate identifer from</param>
/// <returns>A version of the name that is a legal identifier.</returns>
/// <remarks>This is duplicated from WiX's Common class.</remarks>
protected static string GetIdentifierFromName(string name)
{
var result = IllegalIdentifierCharacters.Replace(name, "_"); // replace illegal characters with "_".
// MSI identifiers must begin with an alphabetic character or an
// underscore. Prefix all other values with an underscore.
if (AddPrefix.IsMatch(name))
{
result = String.Concat("_", result);
}
return result;
}
protected static string GetMetadataOrDefault(ITaskItem item, string metadataName, string defaultValue)
{
var value = item.GetMetadata(metadataName);
return String.IsNullOrWhiteSpace(value) ? defaultValue : value;
}
}
}
|