Skip to content

C#: Reword public mentions of C# buildless #16039

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public static ExitCode Run(Options options)
stopwatch.Start();

using var logger = new ConsoleLogger(options.Verbosity, logThreadId: true);
logger.Log(Severity.Info, "Extracting C# in buildless mode");
logger.Log(Severity.Info, "Extracting C# with build-mode set to 'none'");
using var dependencyManager = new DependencyManager(options.SrcDir, logger);

if (!dependencyManager.AllSourceFiles.Any())
Expand Down
2 changes: 1 addition & 1 deletion csharp/ql/src/Telemetry/ExtractorInformation.ql
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ predicate extractionIsStandalone(string key, int value) {
value = 0 and
not extractionIsStandalone()
) and
key = "Is buildless extraction"
key = "Is extracted with build-mode set to 'none'"
}

signature module StatsSig {
Expand Down