1 write to Value
Microsoft.DotNet.Cli.Utils (1)
ToolCommandName.cs (1)
20Value = name;
11 references to Value
dotnet-aot (7)
parent\dotnet\CommandFactory\CommandResolution\LocalToolsCommandResolver.cs (1)
92return ToolCommandSpecCreator.CreateToolCommandSpec(toolCommand.Name.Value, toolCommand.Executable.Value, toolCommand.Runner,
parent\dotnet\Commands\Tool\List\ToolListLocalCommand.cs (2)
73p => string.Join(CommandDelimiter, p.toolManifestPackage.CommandNames.Select(c => c.Value))); 88Commands = [.. p.toolManifestPackage.CommandNames.Select(c => c.Value)],
parent\dotnet\ToolManifest\ToolManifestEditor.cs (2)
72Commands = [.. toolCommandNames.Select(c => c.Value)], 101toEdit.Commands = [.. newToolCommandNames.Select(c => c.Value)];
parent\dotnet\ToolPackage\LocalToolsResolverCache.cs (1)
127Name = restoredCommandIdentifier.CommandName.Value,
parent\dotnet\ToolPackage\ToolCommand.cs (1)
24return $"ToolCommandName: {Name.Value} - Runner: {Runner} - FilePath: {Executable.Value}";
Microsoft.DotNet.Cli.Utils (4)
ToolCommandName.cs (4)
25public override string ToString() => Value; 29return string.Equals(Value, other.Value, StringComparison.OrdinalIgnoreCase); 39return StringComparer.OrdinalIgnoreCase.GetHashCode(Value);