-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathComputeStaticWebAssetsTargetPaths.cs
56 lines (42 loc) · 1.7 KB
/
ComputeStaticWebAssetsTargetPaths.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
using Microsoft.Build.Framework;
namespace Microsoft.AspNetCore.StaticWebAssets.Tasks;
public class ComputeStaticWebAssetsTargetPaths : Task
{
[Required]
public ITaskItem[] Assets { get; set; }
public string PathPrefix { get; set; }
public bool UseAlternatePathDirectorySeparator { get; set; }
public bool AdjustPathsForPack { get; set; }
[Output]
public ITaskItem[] AssetsWithTargetPath { get; set; }
public override bool Execute()
{
try
{
Log.LogMessage(MessageImportance.Low, "Using path prefix '{0}'", PathPrefix);
AssetsWithTargetPath = new ITaskItem[Assets.Length];
for (var i = 0; i < Assets.Length; i++)
{
var staticWebAsset = StaticWebAsset.FromTaskItem(Assets[i]);
var result = staticWebAsset.ToTaskItem();
var targetPath = staticWebAsset.ComputeTargetPath(
PathPrefix,
UseAlternatePathDirectorySeparator ? Path.AltDirectorySeparatorChar : Path.DirectorySeparatorChar, StaticWebAssetTokenResolver.Instance);
if (AdjustPathsForPack && string.IsNullOrEmpty(Path.GetExtension(targetPath)))
{
targetPath = Path.GetDirectoryName(targetPath);
}
result.SetMetadata("TargetPath", targetPath);
AssetsWithTargetPath[i] = result;
}
}
catch (Exception ex)
{
Log.LogError(ex.Message);
}
return !Log.HasLoggedErrors;
}
}