Hello,
You have to do it manually by editing your .csproj file.
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<AppConfig>App.Release.config</AppConfig>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<AppConfig>App.Debug.config</AppConfig>
</PropertyGroup>
And to display config files together, under App.config in the Solution Explorer;
<ItemGroup>
<None Include="App.config"/>
<None Include="App.Debug.config">
<DependentUpon>App.config</DependentUpon>
</None>
<None Include="App.Release.config">
<DependentUpon>App.config</DependentUpon>
</None>
</ItemGroup>