I have a few appSetting entries in my web.config.

I have some different entries in web.Release.config that I would like to push to IIS(7) when I publish. (I am publishing using the one-click publish in VS2010 using the web deploy method).

When I publish to IIS and run the app, the app is getting the values from web.config and not web.release.config.

(I am in the Release configuration when I publish).

What am I missing ?

[EDIT]

The app settings section of the web.release.config:

<appSettings>
    <add key="StylesheetPath" value="http://mySite/Stylesheet/"/>
    <add key="ImagePath" value="http://mySite/Stylesheet/images/"/>
  </appSettings>

Thanks

link|improve this question

70% accept rate
Can you post a portion of your web.release.config file? I'd like to see appSettings node (if that's the one that your values are contained within) – tomasmcguinness Apr 11 '11 at 11:03
Sure thing, added to the original post – nixon Apr 11 '11 at 11:06
feedback

1 Answer

up vote 2 down vote accepted

In your web.release.config's appSettings node, add a transform attribute

<appSettings xdt:Transform="Replace">
<add key="StylesheetPath" value="http://mySite/Stylesheet/"/>
<add key="ImagePath" value="http://mySite/Stylesheet/images/"/>
</appSettings>

This xdt:Transform tells the config builder to take the appSettings node in your web.config and replace it with this one. When you deploy it, the web.config should be updated.

link|improve this answer
Perfect thanks !! – nixon Apr 11 '11 at 11:27
Did that work okay? More information on the transforms can be found here: weblogs.asp.net/srkirkland/archive/2009/10/13/… – tomasmcguinness Apr 11 '11 at 11:29
Yes that did exactly what i wanted. Love the one click publish, this is a nice added feature for quick and painless deployment to dev servers. Thanks again for such a quick answer. – nixon Apr 11 '11 at 11:32
Once they integrate it into Azure Publishing, I'll be especially happy! – tomasmcguinness Apr 11 '11 at 11:37
feedback

Your Answer

 
or
required, but never shown

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