In 'the old days' using XML configuration it was possible to include partial configuration from another file like this:
<appSettings file="relative file name">
<!-- Remaining configuration settings -->
</appSettings>
Now in ASP.NET Core I would like to share some configuration in appsettings.Development.json
as well as for example appsettings.Staging.json
. Is something like the <appSettings file="">
did also available using the json configuration?