Skip to content

Commit f8b1435

Browse files
committed
implement GAC search
1 parent 345bdae commit f8b1435

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fsharp/ReferenceResolver.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ let SimulatedMSBuildResolver =
158158
with e -> logWarning "SR001" (e.ToString())
159159

160160
let isFileName =
161-
r.EndsWith("dll",StringComparison.InvariantCultureIgnoreCase) ||
162-
r.EndsWith("exe",StringComparison.InvariantCultureIgnoreCase)
161+
r.EndsWith("dll",StringComparison.OrdinalIgnoreCase) ||
162+
r.EndsWith("exe",StringComparison.OrdinalIgnoreCase)
163163

164164
let qual = if isFileName then r else try AssemblyName(r).Name + ".dll" with _ -> r + ".dll"
165165

0 commit comments

Comments
 (0)