Runtime: Specified SDK Version not found on .Net 2.0 on cli

Created on 16 Aug 2017  ·  1Comment  ·  Source: dotnet/runtime

Installed .Net Core 2.0 with the Ubuntu commands given. Typed dotnet --version.

Here is the output:
The specified SDK version [1.0.0-rc4-004771] from global.json [/home/stonedge1/Projects/dotNet Core/aspnetprjs/ConferenceBarrel/global.json] not found; install specified SDK version Did you mean to run dotnet SDK commands? Please install dotnet SDK from: http://go.microsoft.com/fwlink/?LinkID=798306&clcid=0x409

my global.json file looks like this:

{
  "sdk": {
    "version": "1.0.0-rc4-004771"
  }
}`

And my .csproj file looks like this:

```


netcoreapp1.0











Most helpful comment

Figured it out:

Changed .json file to:

```{
"sdk": {
"version": "2.0.0-006912"
}
}

>All comments

Figured it out:

Changed .json file to:

```{
"sdk": {
"version": "2.0.0-006912"
}
}

Was this page helpful?
0 / 5 - 0 ratings