I want to separate out client endpoints in a different config file and I want to use that external config files in my main web.config. But I have one concern that my client.config file is not in the same project directory.
Eg.
<client configSource="~\..\..\Client.config"></client>
or
<client configSource="D:\Client.config"></client>
I don't want to copy client.config in my project folder when I publish my project because when I change one of the client config then I have to copy client.config in all projects, those are using client config.
So How I can use client.config file in my main web.config?