mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
C#: Enable nullability of Semmle.Extraction.CSharp.Standalone (#4115)
This commit is contained in:
@@ -57,10 +57,15 @@ namespace Semmle.BuildAnalyser
|
||||
/// <summary>
|
||||
/// List of projects which were mentioned but don't exist on disk.
|
||||
/// </summary>
|
||||
public IEnumerable<string> MissingProjects =>
|
||||
public IEnumerable<string> MissingProjects
|
||||
{
|
||||
get
|
||||
{
|
||||
// Only projects in the solution file can be missing.
|
||||
// (NestedProjects are located on disk so always exist.)
|
||||
MsBuildProjects.Where(p => !File.Exists(p));
|
||||
return MsBuildProjects.Where(p => !File.Exists(p));
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The list of project files.
|
||||
|
||||
Reference in New Issue
Block a user