Reputation: 14889
Im'm trying to upgrade my dotnet cli. I have installed in my Mac (OS El Capitan) from the official link.
But when I try to view the version with this code:
dotnet --version
My output:
1.0.0-preview2-003121
How can I upgrade?
Upvotes: 6
Views: 13567
Reputation: 1957
To update from 2.0.3 to 2.1.4 I simply downloaded the installer from Microsoft's website and then ran the installer.
I had a Terminal window open, and when I did a dotnet --version
before and after running the installer, the correct version was output to the console. I did not have to restart my terminal window even.
Upvotes: 2
Reputation: 253
Microsoft has done a good job at packaging the SDK and CLI together. See either their main dotnetcore website or go to their git
Upvotes: 0
Reputation: 244767
The version 1.0.0-preview2-003121 of the .Net CLI is currently the latest released version. So there is no newer released version to upgrade to.
You could upgrade to the latest build from the dotnet/cli repo, but you probably shouldn't, since that's not a released version.
Upvotes: 4