Skip to content
Enrico Sada edited this page Jun 17, 2016 · 14 revisions

The .NET Core SDK beta it's in the rel/1.0.0 branch

The .NET Core SDK README show:

  • the repo build status for all the supported os
  • url for latest nightly binaries (zip and installers)

But green dotnet cli doesnt mean F# works, so if latest dotnet/cli doesnt works, the lkg should

  • Latest release ( latest )
  • Latest known good ( lkg ) dotnet core SDK with f# support working

Last known good version

lkg is version 1.0.0-preview1-002702 (the released preview1 in http://dot.net ) latest is preview2 (built from source of dotnet/cli repo)

Alias Windows Mac OS X Ubuntu 14.04 Docker
lkg ✅ OK ✅ OK ✅ OK ✅ OK
latest KO KO KO

For latest binaries/installers, see http://dot.net

To download a specific version, see How to download a specific .NET Core SDK version

Common issues

  • latest doesnt work

  • pdb doesnt work (file exists but is empty or doesnt exists):

    • why: portable pdb support is not enabled by default in F# project
    • workaround: enabled portable pdb in project.json
    • affect: lkg, latest
### Known Windows issues ### Known Mac OS X issues
  • dotnet restore error "Too many open files"
    • FIX increment file handle limit:

      ulimit -n 1024
      
### Known Ubuntu issues ## How to download a specific .NET CLI version

The specific version url (both zip and installers) can be obtained replacing Latest with the version (like 1.0.0-beta-002071)

If the latest binaries url is

https://dotnetcli.blob.core.windows.net/dotnet/preview/Binaries/Latest/dotnet-dev-win-x64.latest.zip

The 1.0.0-preview2-003119 is:

https://dotnetcli.blob.core.windows.net/dotnet/preview/Binaries/1.0.0-preview2-003119/dotnet-dev-win-x64.1.0.0-preview2-003119.zip
Clone this wiki locally