Assembly's App.Config is being ignored; Machine.config being read instead. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:35:01Z http://stackoverflow.com/feeds/question/624942 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/624942/assemblys-app-config-is-being-ignored-machine-config-being-read-instead 0 Assembly's App.Config is being ignored; Machine.config being read instead. pcampbell 2009-03-09T03:42:49Z 2009-11-20T17:45:45Z <p>In running my VS2008 <strike>unit</strike> integration tests against my DAL, I have found that the assembly is reading <code>machine.config</code> instead of the assembly's <code>app.config</code>.</p> <p>Here's the rundown on the call stack:</p> <ul> <li>Unit Test Project has method calling into a DataLayer Project </li> <li><code>MyDataLayer</code> class inherits from a base class. Method is called <code>GetStuff()</code></li> <li>Base class is using <code>System.Configuration</code> . All good.</li> <li>calling this property in code: <code>ConfigurationManager.ConnectionStrings["MyConnStr"]</code> actually returns null because it's not found apparently.</li> <li>checking the <code>MyDataLayer</code> class, yep, MyConnStr is there.</li> <li>checking the collection <code>ConnectionStrings</code>, yes, it has one connection string. It's the one in machine.config that's over in <code>C:\Windows\Microsoft.NET\Framework\v2.0.50727\Config\machine.config</code></li> <li>I am not sure why my DAL's <code>app.config</code> is being superseded by the <code>machine.config</code></li> </ul> <p>Any help is appreciated!</p> http://stackoverflow.com/questions/624942/assemblys-app-config-is-being-ignored-machine-config-being-read-instead/624947#624947 4 Answer by Ray for Assembly's App.Config is being ignored; Machine.config being read instead. Ray 2009-03-09T03:47:48Z 2009-03-09T03:47:48Z <p>Not sure if this applies to you, but you need to make sure the configuration string is in your Unit Test Project's app.config, not your DataLayer project.</p> http://stackoverflow.com/questions/624942/assemblys-app-config-is-being-ignored-machine-config-being-read-instead/1333278#1333278 1 Answer by Roman for Assembly's App.Config is being ignored; Machine.config being read instead. Roman 2009-08-26T08:51:47Z 2009-11-20T17:45:45Z <p>This might help to some people dealing with <code>Settings.settings</code> and <code>App.config</code>: </p> <p>Watch out for <code>GenerateDefaultValueInCod</code>e attribute in the Properties pane while editing any of the value (rows) in the Settings.settings grid in Visual Studio (VS2008 in my case).</p> <p>If you set <code>GenerateDefaultValueInCode</code> to True (True is the default here!), the default value is compiled into the exe (or dll), you can find it embedded in the file when you open it in a plain text editor. </p> <p>I was working on a console application and if I had defaults in the exe, the application always ignored the config file placed in the same directory! </p> <p>Quite a nightmare and no information about this on the whole internet.</p> http://stackoverflow.com/questions/624942/assemblys-app-config-is-being-ignored-machine-config-being-read-instead/1771774#1771774 0 Answer by Mike Pelton for Assembly's App.Config is being ignored; Machine.config being read instead. Mike Pelton 2009-11-20T16:52:36Z 2009-11-20T16:52:36Z <p>This was driving me nuts - many thanks Roman... </p>