Skip to content

Commit 5f9e190

Browse files
yield needed for travis build?
1 parent a83b6da commit 5f9e190

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/SqlClient.DesignTime/DesignTimeConnectionString.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ type internal DesignTimeConnectionString =
3131
else
3232
// note: these filenames are case sensitive on linux
3333
let file =
34-
seq { "app.config"
35-
"App.config"
36-
"web.config"
37-
"Web.config" }
34+
seq { yield "app.config"
35+
yield "App.config"
36+
yield "web.config"
37+
yield "Web.config" }
3838
|> Seq.map (fun v -> Path.Combine(resolutionFolder,v))
3939
|> Seq.tryFind File.Exists
4040
match file with

0 commit comments

Comments
 (0)