You're working on a .NET project with a team and want to ensure everyone uses the same .NET SDK version. What file, when added to your project, can specify the SDK version developers should use?
- .gitignore
- README.md
- global.json
- package.json
To specify the SDK version for a .NET project, you should add a "global.json" file to the project's root directory. This JSON file allows you to define the desired SDK version, ensuring consistency among team members and across development environments.
Loading...
Related Quiz
- What is the primary purpose of serving static files in a web application?
- In what scenario might you use the _ViewImports.cshtml file in conjunction with Razor Layout Views?
- Which Azure service is specifically tailored for deploying Docker containers?
- You are building a small website using ASP.NET Core MVC. For displaying data to the users, which component of the MVC pattern should you focus on?
- What is ASP.NET Core primarily used for?