Is there way to set the App.Config file from the network share instead of providing it from the same directory where the .EXE is running. For example, Can I do something like this :
System.AppDomain.CurrentDomain.SetupInformation.ConfigurationFile = @"\\abc.com\root\myshare\it\development\T\_test2\App.Config";
and at runtime all my configuration parameters are set so that I can do something like this in my .cs file with no null exception.
string environment = System.ConfigurationManager["Environment"];
I really appreciate any ideas or suggestions on it.
Thanks