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 345bdae commit f8b1435Copy full SHA for f8b1435
src/fsharp/ReferenceResolver.fs
@@ -158,8 +158,8 @@ let SimulatedMSBuildResolver =
158
with e -> logWarning "SR001" (e.ToString())
159
160
let isFileName =
161
- r.EndsWith("dll",StringComparison.InvariantCultureIgnoreCase) ||
162
- r.EndsWith("exe",StringComparison.InvariantCultureIgnoreCase)
+ r.EndsWith("dll",StringComparison.OrdinalIgnoreCase) ||
+ r.EndsWith("exe",StringComparison.OrdinalIgnoreCase)
163
164
let qual = if isFileName then r else try AssemblyName(r).Name + ".dll" with _ -> r + ".dll"
165
0 commit comments