Search Results

0
votes

How can I share application configuration in a .net application?

You can also put the configuration settings into the machine.config to share them amongst multiple applications. This makes deployment more problematic though. …
0
votes

.NET 1.1 and .NET 2 config files working together

The problem seems to be that because Bravo.dll targets 1.1, the 1.1 version of the framework gets loaded, and, as you say, the applicationSettings section is new in .NET 2.0. The solution is to for …