How can I create multiple app.config for different environments where values can be overridden
For example, I want to have app.Debug.config and app.Release.config where I can change specific values in like I do on my web projects (Web.config Transformation Syntax for Web Application Project Deployment):
<add key="Test" value="Value_For_Test_Environment" xdt:Transform="Replace" xdt:Locator="Match(key)" />