The _________ file was a unique feature in the early versions of ASP.NET Core but was later replaced in .NET Core 2.0 and beyond.
- appsettings.json
- package.json
- project.json
- web.config
The project.json file was used in the early versions of ASP.NET Core (then known as ASP.NET 5), but it was replaced with the .csproj file format in .NET Core 2.0 and beyond. The project.json file defined project dependencies and configuration settings.
Loading...
Related Quiz
- In which file format is the ASP.NET Core project definition primarily saved?
- 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?
- In SignalR, which transport method does it fall back to if WebSockets are not available?
- To define relationships, constraints, or to configure non-entity types, you should override the _________ method in the DbContext.
- Which command is commonly used to create a new migration for ASP.NET Core Identity changes?