You're trying to locate your application's main CSS files in an ASP.NET Core project. In which directory would you typically find them?

  • wwwroot/css
  • Controllers
  • Models
  • Views
In an ASP.NET Core project, static web assets, such as CSS files, JavaScript files, and images, are typically stored in the "wwwroot" directory. The "wwwroot/css" folder is a common location for CSS files. This separation allows these assets to be served directly to clients without going through the application's routing and controllers.
Add your answer
Loading...

Leave a comment

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