Configuration

ASP.NET Core Configuration Tips

Configuration tips for success

David Pine

3 minute read

Being a software developer, it’s in our nature to configure various aspects of the applications that we write. With ASP.NET Core configuring our applications is really straight forward. Luckily, there is a lot of really well written documentation surrounding this topic.

  •  <a href="https://docs.microsoft.com/en-us/aspnet/core/fundamentals/configuration/?tabs=basicconfiguration" target='_blank'>ASP.NET Core - Configuration</a>
    
  •  <a href="https://docs.microsoft.com/en-us/aspnet/core/fundamentals/configuration/options" target='_blank'>ASP.NET Core - Options</a>
    

However, there is still room for improvement. I’ve prepared a few tips that can enhance developer productivity by taking advantage of various C# features.