How to upgrade to .NET 10 on Mac

I'm using Rider on a Mac (Tahoe). I'm using .NET 8. When I go to Settings | Environment, I'm given the option to upgrade to .NET 9.0.100. How do I upgrade to .NET 10?

Is there no way of doing this via the IDE? Do I have to do it externally? I used Rider to install .NET originally, so would prefer Rider to keep managing it. 

0
2 comments

Hello Andrew,

Could you try creating the following global.json in one of your projects with the contents described below, open said project in Rider and check what you see in Settings | Environment?

{
  "sdk": {
    "allowPrerelease": false,
    "rollForward": "latestPatch",
    "version": "10.0.100"
  }
}
1

Actually, I just created a new solution to do this and was offered the option to install .NET 10! So that solved it. Thanks.

0

Please sign in to leave a comment.