Clint B
Clint B

Reputation: 4710

Is ASP.NET Core RC2 Released?

Looking at the project.json file in this question and looking at other questions on SO about RC2 makes me think that RC2 has been released. But I cannot find any official announcement that it has been released. Does anyone know if it's been released? If so, can you install it on top of RC1 or are there special installation procedures?

Upvotes: 1

Views: 289

Answers (5)

Michael Griffey
Michael Griffey

Reputation: 79

ASP.Net Core RC2 will in all likelihood be released on or before 5/17/16 as Damian Edwards mentioned at the ASP.Net Community Stand-up on 5/10/16. As to the link you referenced, they are using nightly builds. You can actually get bits now from the nightly stream that are labeled "Microsoft.AspNetCore.Mvc": "1.0.0-rc3-*" as the team has continued to finish polishing things up for release. These ports will end up being renamed to whatever management decides to call the final build. The Nuget server for Microsoft Nightly builds is https://www.myget.org/F/aspnetcidev/api/v2/ You can add it to Visual Studio by going to Tools=>Options=>NuGet Package Manager=>Package Sources.See NuGet Package Manager Image Here. However, being so close to a supported release version, it seems futile now. I assume Microsoft will support RC2 with a "Go-Live" license.

Upvotes: 4

Karol Nowosielski
Karol Nowosielski

Reputation: 23

According to ASP.NET Core installation guide:

Before you start

Remove all previous versions of .NET Core from your system.


To do this use Add/Remove programs in Control Panel (Windows).


RC2 you can download from: .NET Core Downloads

Upvotes: 1

Brian Vallelunga
Brian Vallelunga

Reputation: 10201

Yes, it has been released! You can find the various downloads at: https://www.microsoft.com/net/core

Upvotes: 0

Per B
Per B

Reputation: 321

To be more specific. ASP.Net Core RC2 will be released ither today (friday), or on tuseday next week. From what I know, everything is done and set in escrow. Only the tooling team is tracking a few bugs.

You will find full information here: https://www.youtube.com/watch?v=P9HqMZviaMg&list=PL0M0zPgJ3HSftTAAHttA3JQU4vOjXFquF&index=0

Upvotes: 2

Aries
Aries

Reputation: 534

RC2 will be released in mid-May.

Upvotes: 1

Related Questions