File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,12 +30,13 @@ type internal DesignTimeConnectionString =
3030 then raise <| FileNotFoundException( sprintf " Could not find config file '%s '." path)
3131 else path
3232 else
33- let appConfig = Path.Combine( resolutionFolder, " app.config" )
34- let webConfig = Path.Combine( resolutionFolder, " web.config" )
33+ // note: these filenames are case sensitive on linux
34+ let appConfig = Path.Combine( resolutionFolder, " App.config" )
35+ let webConfig = Path.Combine( resolutionFolder, " Web.config" )
3536
3637 if File.Exists appConfig then appConfig
3738 elif File.Exists webConfig then webConfig
38- else failwithf " Cannot find either app .config or web .config."
39+ else failwithf " Cannot find either App .config or Web .config."
3940
4041 let map = ExeConfigurationFileMap()
4142 map.ExeConfigFilename <- configFilename
You can’t perform that action at this time.
0 commit comments