In comparison to the traditional ASP.NET, how does ASP.NET Core handle configuration data?

  • It uses JSON files only
  • It relies solely on XML configuration files
  • It uses a flexible and extensible configuration system
  • It doesn't support configuration data
ASP.NET Core introduced a flexible and extensible configuration system that allows developers to configure applications using various sources, such as JSON, XML, environment variables, command-line arguments, and more. This approach offers better configurability and ease of use compared to the traditional ASP.NET configuration methods.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *