There is already a similar topic , but it does not answer my question.
When developing web applications in visual studio 2010, you can have several configuration files. You have the default Web.config file, and then you can have Web.Debug.config and Web.Release.config.
Now create a C # console application and name it Foo. The default configuration file should be Foo.exe.Config. Can we override this configuration file for different environments? How can we call it? Foo.exe.Release.config or Foo.Release.exe.config?
source
share