Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.NET Core SDK and Runtime v3.0.0-preview5 #2862

Closed
IlyaFinkelshteyn opened this issue Feb 12, 2019 · 6 comments
Closed

.NET Core SDK and Runtime v3.0.0-preview5 #2862

IlyaFinkelshteyn opened this issue Feb 12, 2019 · 6 comments

Comments

@IlyaFinkelshteyn
Copy link
Contributor

No description provided.

@jnyrup
Copy link

jnyrup commented May 29, 2019

Since this issue was created, v3.0.0-preview5 has been released.
Is this issue specifically about preview2 or more generally about the newest available preview?

@IlyaFinkelshteyn IlyaFinkelshteyn changed the title .NET Core SDK and Runtime 3.0.100-preview2 .NET Core SDK and Runtime v3.0.0-preview5 Jun 3, 2019
@tidusjar
Copy link

v3.0.0-preview6 has also been released now

@ddrinka
Copy link

ddrinka commented Jul 5, 2019

@FeodorFitsner We're starting to migrate some code to netstandard2.1 / netcoreapp3.0. Could you go ahead and push this through on the VS2019 Preview image? Is there anything preventing its installation?

@alexrp
Copy link

alexrp commented Jul 7, 2019

@IlyaFinkelshteyn Do AppVeyor images provide the dotnet-install.ps1/dotnet-install.sh scripts? This would make it very easy for users to install whichever .NET Core version they need as part of their build, without you guys having to update the image for every new preview version.

@FeodorFitsner
Copy link
Member

The required version of .NET Core could be easily installed with these one-two liners.

On Windows:

Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version '<CORE_SDK_VERSION>' -InstallDir "$env:ProgramFiles\dotnet"

where CORE_SDK_VERSION is .NET Core SDK version to install, for example 3.0.100-preview6-012264.

On Linux:

wget -O dotnet-sdk.tar.gz <CORE_SDK_LINUX_URL>
sudo tar zxf dotnet-sdk.tar.gz -C /usr/share/dotnet

where CORE_SDK_LINUX_URL is a download URL of .NET Core Linux binaries from .NET Core download page. You can grab "click here to download manually" link from "Thanks for downloading" page.

@SimonCropp
Copy link

perhaps should be closed in favor of #3098 ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants