We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
no-projects-or-solutions
1 parent 9165ec9 commit b1f9a3dCopy full SHA for b1f9a3d
1 file changed
csharp/autobuilder/Semmle.Autobuild.CSharp/CSharpAutobuilder.cs
@@ -165,7 +165,9 @@ protected override void AutobuildFailureDiagnostic()
165
if (this.ProjectsOrSolutionsToBuild.Count == 0)
166
{
167
var message = MakeDiagnostic("no-projects-or-solutions", "No project or solutions files found");
168
- message.PlaintextMessage = "CodeQL could not find any project or solution files in your repository.";
+ message.PlaintextMessage =
169
+ "CodeQL could not find any project or solution files in your repository. " +
170
+ "You can manually specify a suitable build command for your project.";
171
message.Severity = DiagnosticMessage.TspSeverity.Error;
172
173
Diagnostic(message);
0 commit comments