Where to download previous version of .net core sd

2019-03-18 03:58发布

We have a project that uses .net core sdk 1.0.0-preview2-003121.

Currently, I'm setting up a CI server to do automatic builds. In the server, I'm getting this error because the .net core sdk that is installed is not the same as the one in the project.

ERROR

preview2-003121 which is not installed or cannot be found under the path C:\Program Files\dotnet.

I did a command line check dotnet --version and it gave me 1.0.0-preview2-003131

Where can I download older versions of the .net core sdk? I have tried the following links and they give me the latest version for the download

标签: .net-core
4条回答
倾城 Initia
2楼-- · 2019-03-18 04:30

If you are looking to download specific version of .Net core, you can download from here. It worked for me.

Dot Net Core Download Archive List

查看更多
\"骚年 ilove
3楼-- · 2019-03-18 04:34

This article explains how to install the correct .net core version. HTH. http://blog.stephencleary.com/2016/06/dotnet-netcore-versions.html

I was able to just get away with following

  1. download https://dotnetcli.blob.core.windows.net/dotnet/preview/Binaries/1.0.0-preview2-003121/dotnet-dev-win-x64.1.0.0-preview2-003121.zip
  2. copy 1.0.0-preview2-003121 directory inside dotnet-dev-win-x64.1.0.0-preview2-003121.zip\sdk
  3. paste in C:\Program Files\dotnet\sdk

Note: I had newer sdk version already installed(1.0.0-preview2-1-003177)

---Update---

Official download location is https://github.com/dotnet/core/blob/master/release-notes/download-archive.md as mentioned by vinicius-paiva and manoj-attal.

查看更多
仙女界的扛把子
4楼-- · 2019-03-18 04:41

Install using the chocolatey packages, of course.

查看更多
贼婆χ
5楼-- · 2019-03-18 04:41

Even though it is late answer, it might help others.

Check out these link.

To find the version you want, keeping clicking Next at the end of the page.

For example, the version asked by @jmc is found at this page

Other Option:

Check this link https://www.microsoft.com/net/download/all

查看更多
登录 后发表回答