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

My debug and release web.config app settings are not being read correctly.

Web.config:

<appSettings>
 <add key="webpages:Version" value="1.0.0.0"/>
 <add key="ClientValidationEnabled" value="true"/>
 <add key="UnobtrusiveJavaScriptEnabled" value="true"/>
</appSettings>

Web.Debug.config

<appSettings>
    <add key="ErrorEmailAddress" value="developerEmail@email.com" />
    <add key="TestModeEmailAddress" value="developerEmail@email.com" />
</appSettings>

Web.Release.config

<appSettings>
    <add key="ErrorEmailAddress" value="prodErrorEmail@email.com" />
</appSettings>

However, calling:

WebConfigurationManager.AppSettings["ErrorEmailAddress"]

is returning null (when debugging).

I have tried adding xdt:Transform="Insert" eg.

<add key="ErrorEmailAddress" value="prodErroEmail@email.com" xdt:Transform="Insert" />

Any ideas?

share|improve this question

5 Answers

up vote 11 down vote accepted

Ok I figured it out.

Answered here: How can I use Web.debug.config in the built-in visual studio debugger server?

So the config files are only combined when you publish, not when you are running against a local server. Pretty stupid IMO, when else would you ever use Web.Debug.config?

I will do as is suggested here: Use Visual Studio web.config transform for debugging

and just have Web.config as my default debugging config file, then have release for when releasing. Can't see a use for Web.Debug.config as this point.

Still, this is annoying because most of my settings I want to be set one way for all environments but when developing (eg customErrors On). This means I have to set them in Web.config for debugging, then in all my other environment configs change them.

Thanks everyone for responses.

share|improve this answer
It seems one of the other answers on the second link might be more to your liking. You can use a debug post build step to run the transform. Interesting, the bug for it says its closed and fixed: connect.microsoft.com/VisualStudio/feedback/details/523221/… – m4tt1mus Jun 3 '11 at 18:20
yeah saw that, but too hacky for my likings – Alistair Jun 5 '11 at 1:55

I've never had it working with not having the key in the default web.config.

This works for me:

Web.config

<add key="Environment" value="Localhost" />

Web.Debug.config

<add key="Environment" value="Development" xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>

Web.Release.config

<add key="Environment" value="Production" xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
share|improve this answer
Still doesn't work. Not sure what I'm doing wrong. – Alistair Jun 2 '11 at 3:18
1  
@Alistair - have you tried with ConfigurationManager instead of WebConfigurationManager? I've never used WebConfigurationManager. – RPM1984 Jun 2 '11 at 3:30
Yup, tried both. – Alistair Jun 2 '11 at 3:34
1  
@Alistair - okay, well im out of ideas. I was going to say check your build configuration for any post-build tasks, etc. But if this is just local debugging, not sure what else could be happening. – RPM1984 Jun 2 '11 at 3:45
no worries, thanks anyway – Alistair Jun 2 '11 at 4:41

Could you maybe post all of your web.configs? Default, debug, and release? One way to test if it's working is maybe set something like different connection strings for debug and release and check which one it uses when your app is running.

share|improve this answer
<!-- Web.Config -->
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings configSource="AppSettings.config" />
</configuration>

<!-- AppSettings.config -->
<appSettings>
<add key="MyDoe" value="Arnold" xdt:Transform="Replace" xdt:Locator="Match(key)"/>
</appSettings>

<!-- Web.Release.Config -->
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<compilation xdt:Transform="RemoveAttributes(debug)" />
<appSettings>
<add key="MyDoe" value="John" xdt:Transform="Replace" xdt:Locator="Match(key)"/>
</appSettings>
</configuration>
share|improve this answer

are you debugging in release mode? in the toolbar next to the green arrow used to start debugging you can set a mode, make sure it isn't on release.

share|improve this answer
I am in debugging mode. But in either case it shouldn't be null as far as I can tell. – Alistair Jun 2 '11 at 0:20
if you adding new keys i'm pretty sure they all need to have the insert transform. – m4tt1mus Jun 2 '11 at 0:22
as mentioned, still doesn't work even with insert – Alistair Jun 2 '11 at 0:34

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.