Unlike the traditional ASP.NET which relied on System.Web.dll, ASP.NET Core operates on a set of granular and modular _________ packages.
- NuGet
- .NET Framework
- GAC
- Windows Registry
ASP.NET Core utilizes NuGet packages for its dependencies, unlike the monolithic System.Web.dll used in traditional ASP.NET. NuGet packages allow for a more modular and granular approach to including libraries, reducing the size of your application and making it more efficient.
Loading...
Related Quiz
- When securing ASP.NET Core applications, the ________ attribute can be applied to ensure certain actions or controllers are accessible only to authenticated users.
- In the context of ASP.NET Core, what does the CLI tool allow developers to do?
- Your web application needs to provide different access levels, such as "Admin," "User," and "Guest." Which ASP.NET Core Identity feature would be crucial for implementing this?
- How does ASP.NET Core achieve cross-platform compatibility?
- After writing your ASP.NET Core application code, you want to build and run your application using a command-line tool. Which tool would you use for this purpose?