For cross-platform development in ASP.NET Core, what runtime should be targeted to ensure the application can run on different OS types?
- .NET Framework
- .NET Core
- .NET Standard
- .NET Runtime
To achieve cross-platform compatibility in ASP.NET Core, developers should target the .NET Core runtime. .NET Core is designed to be cross-platform and supports running applications on various operating systems, making it the preferred choice for cross-platform development.
Loading...
Related Quiz
- In the context of Razor, what were "Master Pages" used for in the older versions of ASP.NET?
- How can you set a default document (like index.html) to be served when the user accesses the root URL in an ASP.NET Core app?
- What significant change was introduced in ASP.NET Core compared to its predecessor, ASP.NET?
- In a new project, you are given the responsibility to handle user registration. Your senior developer mentions that there's a built-in way in ASP.NET Core to manage users. What is this system called?
- The _______ method is used to add and configure the necessary middleware for routing in ASP.NET Core.