2 writes to Excluded
Microsoft.NET.HostModel (2)
Bundle\Bundler.cs (1)
512fileSpec.Excluded = true;
Bundle\FileSpec.cs (1)
25Excluded = false;
4 references to Excluded
Microsoft.NET.Build.Tasks (1)
GenerateBundle.cs (1)
109ExcludedFiles = 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)
34public override string ToString() => $"SourcePath: {SourcePath}, RelativePath: {BundleRelativePath} {(Excluded ? "[Excluded]" : "")}";