mirror of
https://github.com/github/codeql.git
synced 2026-04-26 09:15:12 +02:00
Fixup: better error message for no-projects-or-solutions
This commit is contained in:
@@ -165,7 +165,9 @@ namespace Semmle.Autobuild.CSharp
|
||||
if (this.ProjectsOrSolutionsToBuild.Count == 0)
|
||||
{
|
||||
var message = MakeDiagnostic("no-projects-or-solutions", "No project or solutions files found");
|
||||
message.PlaintextMessage = "CodeQL could not find any project or solution files in your repository.";
|
||||
message.PlaintextMessage =
|
||||
"CodeQL could not find any project or solution files in your repository. " +
|
||||
"You can manually specify a suitable build command for your project.";
|
||||
message.Severity = DiagnosticMessage.TspSeverity.Error;
|
||||
|
||||
Diagnostic(message);
|
||||
|
||||
Reference in New Issue
Block a user