When creating an ASP.NET Core project with the intention of using it as a reusable class library, opt for the ________ template.
- Class Library
- Web API
- Razor Pages
- MVC
The Class Library template in ASP.NET Core is intended for creating reusable class libraries. When you want to encapsulate functionality and share it across multiple projects, such as other ASP.NET Core applications, this template is the right choice. It allows you to create libraries that can be easily referenced and reused.
Loading...
Related Quiz
- What would you use to create reusable UI components in Razor views?
- Which IDE is commonly used by developers for building ASP.NET Core applications?
- The [Route("{action=Index}")] attribute specifies a default value for the action, which in this case is ______.
- SignalR in ASP.NET Core is used to establish which type of communication?
- While working on an ASP.NET Core application, you realize you need functionalities like Git integration, debugging, and extensions. Which lightweight editor, enriched with plugins, would be ideal for this purpose?