Use app.config file to set Environment (Development,Staging,Production) and then use appsettings.{environment}.json to get configuration based on environment where we are publishing our application
Know how to add app.config file in your .NET Core Console Application and know how to read content of it and we can use it for some purposes which is not possible by other ways to get Configuration
Read article to know how to add Envionment appsettings (appsettings.Production.json) in your .NET Core Console appplication and use it after your deployment on another machine and running exe from another machine
Implementing Bundling and Minification in .NET Core using Third Party NuGet Package, adding bundleconfig.json file and providing inputfiles and outfiles will easily perform Bundling and Minification in .NET Core
Go through the code to know the different Ways to get settings from appsettings.json file in .NET Core application and use it in your MVC or Web API Controller, read the full article...
How to read appsettings.json file in .NET Core Controller file, steps to read and use the configuration settings from appsettings.json file in .NET Core MVC Controller file or Web API Controller file
Exception Handling in .NET Core Web API using UseDeveloperExceptionPage & UseExceptionHandler methods in Startup.cs class and showing Exception message wherever Web API exception occurs
Understanding how to inject Services in .NET Core Blazor Server application Razor View Page, learn using Dependency Injection in .NET Core Blazor Server App Razor View Page
How to create .NET Core application and run it from any IDE like Visual Studio Code with few simple steps, begin with installation of required tools and then create the .NET core app with few .NET CLI commands