I just upgraded to Visual Studio 2010 and MVC 2.0 and I noticed the Web.config has two additional files attached to it? Are these files used to specify debug and release specific settings, so you don't clutter up the main Web.config?

Does it even make sense to place a connection string in the root Web.config file if I have a local and remote one in the debug and release Web.configs respectively?

Thanks!

link|improve this question

feedback

2 Answers

up vote 43 down vote accepted

It's the new Web.config transformation feature of Visual Studio 2010. More information here.


Edit:

Are these files used to specify debug and release specific settings, so you don't clutter up the main web.config?

It isn't limited to three files, you could (in theory) have as many files as you have environments. The "top level" Web.config provides a template of your web config. The files under it provide replacement values specific to that environment (like if you have different connection strings for local/stage/test/whatever).

Does it even make sense to place a connection string in the root web.config file if I have have a local and remote one in the debug and release web.configs respectively.

It would only make sense if it wasn't going to change between environments. Sounds like in your case it does so, in your case no, it would not make sense to leave it in the Web.config.

link|improve this answer
feedback

That was something long needed in VS. Unfortunately there seems to be a problem with the implementation. For example consider this scenario (VS.2010 Ultimate, all SP):

Web.Config

  • No connectionStrings section
  • Full Membership User/Role/etc. Provider configuration using connectionStringName="test"

Web.Release.Config

  • No membership configuration (already specified in main web.config)
  • connectionStrings section including the CS named "test"

Web.Debug.Config

  • No membership configuration (already specified in main web.config)
  • connectionStrings section including the CS named "test"

When executing the application gives the following error:

The connection name 'test' was not found in the applications configuration or the connection string is empty.

In other words, because the connection string elements are in the Release/Debug designer files and used by configuration elements in the main (Web.config) file, it is unable to resolve it.

link|improve this answer
To be fair, if you have a connection string named test in both your debug and release config files, it really should just be in the main web.config with the appropriate sections templated. As is, you are duplicating code, which is something the template is supposed to solve for you. – R0MANARMY Jan 31 at 15:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.