We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33dc218 commit c958166Copy full SHA for c958166
src/Detector/DotNetCore/ProjectFileProviders/ExplicitProjectFileProvider.cs
@@ -43,15 +43,13 @@ public string GetRelativePathToProjectFile(DetectorContext context)
43
if (context.SourceRepo.FileExists(projectFile))
44
{
45
this.logger.LogDebug($"Using the given .NET Core project file to build.");
46
- Console.WriteLine("Using the given .NET Core project file to build.");
47
}
48
else
49
50
if (!this.IsValidDotNetProjectFile(projectFileWithRelativePath))
51
52
this.logger.LogDebug(
53
$"The PROJECT variable doesn't specify a valid .NET project file (.csproj or .fsproj).");
54
- Console.WriteLine("PROJECT variable doesn't specify a valid .NET project file (.csproj or .fsproj).");
55
return null;
56
57
0 commit comments