Assembly's App.Config is being ignored; Machine.config being read instead. - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T06:35:01Zhttp://stackoverflow.com/feeds/question/624942http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/624942/assemblys-app-config-is-being-ignored-machine-config-being-read-instead0Assembly's App.Config is being ignored; Machine.config being read instead.pcampbell2009-03-09T03:42:49Z2009-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#6249474Answer by Ray for Assembly's App.Config is being ignored; Machine.config being read instead.Ray2009-03-09T03:47:48Z2009-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#13332781Answer by Roman for Assembly's App.Config is being ignored; Machine.config being read instead.Roman2009-08-26T08:51:47Z2009-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#17717740Answer by Mike Pelton for Assembly's App.Config is being ignored; Machine.config being read instead.Mike Pelton2009-11-20T16:52:36Z2009-11-20T16:52:36Z<p>This was driving me nuts - many thanks Roman... </p>