2 writes to Excluded
Microsoft.NET.HostModel (2)
Bundle\Bundler.cs (1)
512
fileSpec.
Excluded
= true;
Bundle\FileSpec.cs (1)
25
Excluded
= false;
4 references to Excluded
Microsoft.NET.Build.Tasks (1)
GenerateBundle.cs (1)
109
ExcludedFiles = FilesToBundle.Zip(fileSpec, (item, spec) => (spec.
Excluded
) ? item : null).Where(x => x != null).ToArray()!;
Microsoft.NET.HostModel (3)
Bundle\Bundler.cs (2)
255
/// Files that are excluded from the bundle have their <see cref="FileSpec.
Excluded
"/> flag set by this method.
463
/// Files that are excluded from the bundle have their <see cref="FileSpec.
Excluded
"/> flag set by this method.
Bundle\FileSpec.cs (1)
34
public override string ToString() => $"SourcePath: {SourcePath}, RelativePath: {BundleRelativePath} {(
Excluded
? "[Excluded]" : "")}";