The default configuration system in ASP.NET Core is no longer web.config but instead uses _________ files.

  • appsettings.json
  • config.xml
  • settings.conf
  • configuration.yaml
ASP.NET Core shifts from the traditional web.config to use JSON-based configuration files, typically named appsettings.json. This change provides a more flexible and human-readable way to configure application settings, and it aligns with modern development practices.
Add your answer
Loading...

Leave a comment

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