Adds official .NET 5 support (#300)

This commit is contained in:
Kamron Batman 2020-11-07 13:26:27 -08:00 committed by GitHub
parent c3289a20ab
commit 013f333898
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
39 changed files with 496 additions and 668 deletions

View file

@ -1,3 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
@ -63,7 +64,7 @@ namespace Server.Guilds
{
var name = g.Name.ToLower();
if (words.All(t => name.IndexOf(t) != -1))
if (words.All(t => name.IndexOf(t, StringComparison.Ordinal) != -1))
{
results.Add(g);
}