5 instantiations of CommandMetadata
aspire (5)
Utils\CommandPathResolver.cs (5)
13["npm"] = new("Node.js", "https://nodejs.org/en/download"), 14["npx"] = new("Node.js", "https://nodejs.org/en/download"), 15["bun"] = new("Bun", "https://bun.sh/docs/installation"), 16["yarn"] = new("Yarn", "https://yarnpkg.com/getting-started/install"), 17["pnpm"] = new("pnpm", "https://pnpm.io/installation")
3 references to CommandMetadata
aspire (3)
Utils\CommandPathResolver.cs (3)
11private static readonly Dictionary<string, CommandMetadata> s_commandMetadata = new(StringComparer.OrdinalIgnoreCase) 66if (s_commandMetadata.TryGetValue(normalizedCommand, out var metadata)) 76return s_commandMetadata.TryGetValue(NormalizeCommand(command), out var metadata)