| File: ComputeStaticWebAssetsForCurrentProject.cs | Web Access |
| Project: src\sdk\src\StaticWebAssetsSdk\Tasks\Microsoft.NET.Sdk.StaticWebAssets.Tasks.csproj (Microsoft.NET.Sdk.StaticWebAssets.Tasks) |
// 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 ComputeStaticWebAssetsForCurrentProject : Task { [Required] public ITaskItem[] Assets { get; set; } [Required] public string ProjectMode { get; set; } [Required] public string AssetKind { get; set; } [Required] public string Source { get; set; } [Output] public ITaskItem[] StaticWebAssets { get; set; } public override bool Execute() { try { var currentProjectAssets = StaticWebAsset.AssetsByTargetPath(Assets, Source, AssetKind); var resultAssets = new List<StaticWebAsset>(currentProjectAssets.Count); var groupSet = new HashSet<string>(StringComparer.Ordinal); foreach (var kvp in currentProjectAssets) { var targetPath = kvp.Key; var (selected, all) = kvp.Value; if (all != null) { // If all assets have distinct, non-empty AssetGroups, they can coexist if (StaticWebAsset.AllAssetsHaveDistinctGroups(all, groupSet)) { foreach (var groupedAsset in all) { if (!groupedAsset.IsForReferencedProjectsOnly()) { resultAssets.Add(groupedAsset); } else { Log.LogMessage(MessageImportance.Low, "Skipping asset '{0}' because it is for referenced projects only.", groupedAsset.Identity); } } continue; } Log.LogError("More than one compatible asset found for target path '{0}' -> {1}.", targetPath, Environment.NewLine + string.Join(Environment.NewLine, all.Select(a => $"({a.Identity},{a.AssetKind})"))); return false; } if (!selected.IsForReferencedProjectsOnly()) { resultAssets.Add(selected); } else { Log.LogMessage(MessageImportance.Low, "Skipping asset '{0}' because it is for referenced projects only.", selected.Identity); } } StaticWebAssets = resultAssets .Select(a => a.ToTaskItem()) .Concat(Assets.Where(asset => !StaticWebAsset.HasSourceId(asset, Source))) .ToArray(); } catch (Exception ex) { Log.LogError(ex.ToString()); } return !Log.HasLoggedErrors; } }