fsprojects / FSharp.Configuration

The FSharp.Configuration project contains type providers for the configuration of .NET projects.
http://fsprojects.github.io/FSharp.Configuration/
Other
114 stars 63 forks source link

Redirecting appends ".config" at the end #87

Open isaacabraham opened 8 years ago

isaacabraham commented 8 years ago

Updating this issue. Currently you have to redirect to a specific DLL or executable using the SelectExecutableFile method. It would probably be simpler to offer the ability to redirect to any .config file - especially if you are in e.g. a web situation and want to get at something like web.config (or any other .config file).

MicaelMor commented 3 years ago

Will agree with this suggestion, right now the only workaround to this (that I know of), is to create say a file called App.exe, and then put a file called App.exe.config in that same folder, and point to the App.exe using the SelectExecutableFile function, just so the App.exe.config file can be used.