I have a Windows Service developed in .NET. I am using a configuration
file that allows me to get app settings. Now I know I have to the
path for my config file like this
RemotingConfiguration.Configure(@"C:\MyService\MyService.exe.config");
The only problem is, I will be also have remoting settting,
bindingRedirect(future releases of dll files will have me put this.)
setting in my config file. Now, if I put it in C:\MyService the
runtime will not be able to read the runtime settings. So I am
forced to put it into c:\windows\system32 unless someone knows how I
can tell the runtime where to read my config file when using a Windows
Service?
Thanks
Michael
|