I have a solution with 4 projects within that all interact with each other. Each project contains its own app.config file named as 'app.config' and may at times contain the same appsettings fields. however for some reason when calling one project.method from another, when it initializes, it calls the app.config file from the calling project method. This should not be the case since I know that each project is compiled with its own config file.
o = streamSettings.GetValue("ConnectionString", GetType(String))
connectionString = o.ToString()
o = streamSettings.GetValue("LogFileDirectory", GetType(String))
logFileDirectory = o.ToString()
This is the same for the all projects but I am getting the wrong connection string here.