Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a web.config with 2 transforms - for debug and release.

web.config:

<connectionStrings>
    <clear />
    <add name="StrName" connectionString="data source=.\sqlexpress;User Id=sa;Password=pass;Database=SocialBot;"
                providerName="System.Data.SqlClient" />
</connectionStrings>

I just copied the example given and replaced the name with StrName. I end up with :

<add name="StrName" connectionString="$(ReplacableToken_SocialBotConnectionString-Web.config Connection String_0)"
                providerName="System.Data.SqlClient" />

What the hell is ReplacableToken_ ?

I have another project and it works with no problem there.

share|improve this question

3 Answers

up vote 6 down vote accepted

Hope this helps: http://forums.asp.net/p/1569934/4043217.aspx

share|improve this answer
I don't know how I didn't find that one, but thanks. Eventually deploying to a folder somewhere generated the correct web.config – sirrocco Sep 4 '10 at 3:56

If, like me, you're running up against this problem while trying to automate your build process using msbuild from the command line, the correct answer can be found in this blog entry:

http://zvolkov.com/blog/post/2010/05/18/How-to-Publish-Web-Site-project-using-VS2010-and-MsBuild.aspx

Specifically, the parameter you need to set is:

/p:AutoParameterizationWebConfigConnectionStrings=False

This is most likely what VS is doing on your behalf when you publish to the filesystem

share|improve this answer
You're a life saver. – willem Nov 8 '11 at 8:42
Exactly what I was looking for! – Jeremy Smith Apr 16 '12 at 21:13
yay, had the issue, found my own answer! – zvolkov Sep 27 '12 at 19:04

If you want to build with Visual Studio 2010, add the following line to your configuration PropertyGroup in your .csproj:

<AutoParameterizationWebConfigConnectionStrings>False</AutoParameterizationWebConfigConnectionStrings>

More details here: How to get rid of "$(ReplacableToken...)" in web.config conpletely

share|improve this answer
+1 This is what allows you to click "Build Deployment Package" to get the transformed web.config. – Chad Schouggins Mar 29 at 17:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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