We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80c83f2 commit 57eecebCopy full SHA for 57eeceb
src/DotNetCampus.CommandLine/CommandRunner.cs
@@ -10,7 +10,7 @@ namespace DotNetCampus.Cli;
10
/// </summary>
11
public class CommandRunner : ICommandRunnerBuilder, IAsyncCommandRunnerBuilder
12
{
13
- private static ConcurrentDictionary<Type, VerbCreationInfo> VerbCreationInfos { get; } = [];
+ private static ConcurrentDictionary<Type, VerbCreationInfo> VerbCreationInfos { get; } = new(ReferenceEqualityComparer.Instance);
14
15
private readonly CommandLine _commandLine;
16
private readonly DictionaryCommandHandlerCollection _dictionaryVerbHandlers = new();
0 commit comments