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.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *