13 references to HashWithNormalizedCasing
dotnet (7)
CommandFactory\CommandResolution\CompositeCommandResolver.cs (1)
44{ "commandName", commandResolverArguments is null ? string.Empty : Sha256Hasher.HashWithNormalizedCasing(commandResolverArguments.CommandName) },
Commands\Hidden\InternalReportInstallSuccess\InternalReportInstallSuccessCommand.cs (1)
31var filter = new TelemetryFilter(Sha256Hasher.HashWithNormalizedCasing);
Commands\MSBuild\MSBuildLogger.cs (1)
242properties[propertyToBeHashed] = Sha256Hasher.HashWithNormalizedCasing(value!);
Commands\New\MSBuildEvaluation\MSBuildEvaluator.cs (3)
184targetFrameworksString = string.Join(",", targetFrameworks.Select(tfm => Sha256Hasher.HashWithNormalizedCasing(tfm))); 188targetFrameworksString = Sha256Hasher.HashWithNormalizedCasing(targetFramework); 193{ "ProjectPath", Sha256Hasher.HashWithNormalizedCasing(projectPath)},
Program.cs (1)
59TelemetryEventEntry.TelemetryFilter = new TelemetryFilter(Sha256Hasher.HashWithNormalizedCasing);
Microsoft.DotNet.ProjectTools (1)
VirtualProjectBuilder.cs (1)
92string hash = Sha256Hasher.HashWithNormalizedCasing(entryPointFileFullPath);
Microsoft.TemplateEngine.Cli (5)
TelemetryHelper.cs (1)
41hashedValues.Add(Sha256Hasher.HashWithNormalizedCasing(choiceValue));
TemplateInvoker.cs (4)
52string? templateName = Sha256Hasher.HashWithNormalizedCasing(templateToRun.Identity); 53string? templateShortNames = templateToRun.ShortNameList.Any() ? Sha256Hasher.HashWithNormalizedCasing(string.Join(',', templateToRun.ShortNameList)) : null; 57string? packageName = string.IsNullOrEmpty(templatePackage?.Identifier) ? null : Sha256Hasher.HashWithNormalizedCasing(templatePackage.Identifier); 58string? packageVersion = string.IsNullOrEmpty(templatePackage?.Version) ? null : Sha256Hasher.HashWithNormalizedCasing(templatePackage.Version);