VS2010 Clean Web.configs - not updating

Posted by cw on Stack Overflow See other posts from Stack Overflow or by cw
Published on 2010-04-14T01:03:46Z Indexed on 2010/04/14 1:13 UTC
Read the original article Hit count: 336

Filed under:
|

Hello,

I'm messing around with MVC 2.0 on VS2010 and am having an issue getting the clean web config feature working.

Basically in my Web.debug.config I have

<connectionStrings xdt:Transform="Replace">
  <add name="ApplicationServices" 
    connectionString="Server=localhost;Database=SITE_DB;User ID=dbuser;Password=P@ssw0rd;Trusted_Connection=False;" />
</connectionStrings>

and in my Web.config I have

      <connectionStrings>
        <add name="ApplicationServices"
             connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
             providerName="System.Data.SqlClient" />
      </connectionStrings>

When I run the site in debug mode, I'd expect that xdt:Transform="Replace" would replace the entire connectionStrings section with what is in the Web.debug.config.

Am I assuming wrong? Or am I doing something else incorrect. Not much info posted around this and I'd figure I'd ask you guys.

© Stack Overflow or respective owner

Related posts about VS2010

Related posts about web.config