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)
31
var filter = new TelemetryFilter(Sha256Hasher.
HashWithNormalizedCasing
);
Commands\MSBuild\MSBuildLogger.cs (1)
242
properties[propertyToBeHashed] = Sha256Hasher.
HashWithNormalizedCasing
(value!);
Commands\New\MSBuildEvaluation\MSBuildEvaluator.cs (3)
184
targetFrameworksString = string.Join(",", targetFrameworks.Select(tfm => Sha256Hasher.
HashWithNormalizedCasing
(tfm)));
188
targetFrameworksString = Sha256Hasher.
HashWithNormalizedCasing
(targetFramework);
193
{ "ProjectPath", Sha256Hasher.
HashWithNormalizedCasing
(projectPath)},
Program.cs (1)
59
TelemetryEventEntry.TelemetryFilter = new TelemetryFilter(Sha256Hasher.
HashWithNormalizedCasing
);
Microsoft.DotNet.ProjectTools (1)
VirtualProjectBuilder.cs (1)
92
string hash = Sha256Hasher.
HashWithNormalizedCasing
(entryPointFileFullPath);
Microsoft.TemplateEngine.Cli (5)
TelemetryHelper.cs (1)
41
hashedValues.Add(Sha256Hasher.
HashWithNormalizedCasing
(choiceValue));
TemplateInvoker.cs (4)
52
string? templateName = Sha256Hasher.
HashWithNormalizedCasing
(templateToRun.Identity);
53
string? templateShortNames = templateToRun.ShortNameList.Any() ? Sha256Hasher.
HashWithNormalizedCasing
(string.Join(',', templateToRun.ShortNameList)) : null;
57
string? packageName = string.IsNullOrEmpty(templatePackage?.Identifier) ? null : Sha256Hasher.
HashWithNormalizedCasing
(templatePackage.Identifier);
58
string? packageVersion = string.IsNullOrEmpty(templatePackage?.Version) ? null : Sha256Hasher.
HashWithNormalizedCasing
(templatePackage.Version);