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 e8583a6 commit fe61ca6Copy full SHA for fe61ca6
src/ScriptCollection.cs
@@ -8,6 +8,11 @@ namespace RunScript;
8
[JsonConverter(typeof(ScriptCollectionConverter))]
9
public class ScriptCollection : KeyedCollection<string, ScriptMapping>
10
{
11
+ public ScriptCollection()
12
+ : base(StringComparer.Ordinal)
13
+ {
14
+ }
15
+
16
protected override string GetKeyForItem(ScriptMapping item)
17
18
if (item is null) throw new ArgumentNullException(nameof(item));
0 commit comments