Revert to case insenstive by default to avoid breaking changes.

This commit is contained in:
Jayson Maxson 2023-04-06 17:04:49 -07:00
Родитель 14eacb769d
Коммит 578f72e72e
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -138,7 +138,7 @@ namespace Microsoft.Performance.SDK.Runtime.Discovery
/// </returns>
public bool ProcessAssemblies(IEnumerable<string> directoryPaths, out ErrorInfo error)
{
return this.ProcessAssemblies(directoryPaths, true, null, null, MatchCasing.PlatformDefault, out error);
return this.ProcessAssemblies(directoryPaths, true, null, null, MatchCasing.CaseInsensitive, out error);
}
/// <summary>

Просмотреть файл

@ -35,7 +35,7 @@ namespace Microsoft.Performance.Toolkit.Engine
public AssemblyDiscoverySettings(
bool includeSubdirectories,
IEnumerable<string> searchPatterns)
: this(includeSubdirectories, searchPatterns, null, MatchCasing.PlatformDefault)
: this(includeSubdirectories, searchPatterns, null, MatchCasing.CaseInsensitive)
{
}