C#: Remove unused classes from Util project

This commit is contained in:
Tamas Vajk
2024-04-03 12:15:33 +02:00
parent d7e514913f
commit 75894d581c
13 changed files with 2 additions and 618 deletions

View File

@@ -32,7 +32,7 @@ namespace Semmle.Autobuild.CSharp
if (auto)
{
NotDotNetProjects = builder.ProjectsOrSolutionsToBuild
.SelectMany(p => Enumerators.Singleton(p).Concat(p.IncludedProjects))
.SelectMany(p => new[] { p }.Concat(p.IncludedProjects))
.OfType<Project<CSharpAutobuildOptions>>()
.Where(p => !p.DotNetProject);
var notDotNetProject = NotDotNetProjects.FirstOrDefault();