In the earlier versions of ASP.NET Core that used project.json, which section would you look into to find out the target framework(s) for the application?
- dependencies
- frameworks
- scripts
- buildOptions
In project.json files used in earlier versions of ASP.NET Core, the "frameworks" section was used to define the target framework(s) for the application. This section specified the runtime and API surface that the application would use.
Loading...
Related Quiz
- When creating a custom Tag Helper, which class should it derive from?
- What kind of testing is primarily focused on testing the interactions between different parts of a system, like services, databases, and external systems?
- While developing an ASP.NET Core MVC application, you notice that a particular piece of logic is repeated across several Razor views. What would be the best way to encapsulate and reuse this logic?
- To implement Two-Factor Authentication (2FA) in ASP.NET Core Identity, the _________ property must be enabled for the user.
- The __________ file in an ASP.NET Core project contains routes, middleware configurations, and other app initializations.