
3,027
Downloads
2,713
Downloads of v 1.0.1
12/14/2016
Last update
.NET Core is a set of runtime, library and compiler components. Microsoft uses these components in various configurations for device and cloud workloads. You can do the same for your app or service.
Managed runtimes make code easy to write and guarantee safe execution. .NET Core manages memory with a garbage collector, compiles your code with a JIT compiler or ahead of time with .NET Native.
You can create .NET Core apps that run on multiple OSes and CPUs. .NET Core runs on Windows. Ports are in progress for Linux, OS X and FreeBSD, as is integration with the LLVM compiler.
This package only supports x64 architecture.
To install .Net Core SDK, run the following command from the command line or from PowerShell:
C:\> choco install dotnetcoresdk
To upgrade .Net Core SDK, run the following command from the command line or from PowerShell:
C:\> choco upgrade dotnetcoresdk
Files
Hide- dotnet.png
- README.md
Show
# dotnetcoresdk-chocolatey This is the source of chocolatey package for .Net Core SDK.
- tools\chocolateyInstall.ps1
Show
$script = $MyInvocation.MyCommand.Definition $packageArgs = @{ packageName = 'DotNetCoreSDK' fileType = 'exe' url = 'https://go.microsoft.com/fwlink/?LinkID=827524' softwareName = 'DotNetCoreSDK*' checksum = '27DFA0EA2D2AAA80F76D77D8747E9E2C1178F40592C3650FBD3BCFB512144132' checksumType = 'sha256' silentArgs = '/quiet' validExitCodes = @(0, 3010, 1641) } function CheckDotNetCliInstalled($value) { $registryPath = 'HKLM:\SOFTWARE\Wow6432Node\dotnet\Setup\InstalledVersions\x64\sdk' if (Test-RegistryValue -Path $registryPath -Value $value) { return $true } } function Test-RegistryValue { param ( [parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] $Path, [parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] $Value ) try { if (Test-Path -Path $Path) { Get-ItemProperty -Path $Path | Select-Object -ExpandProperty $Value -ErrorAction Stop | Out-Null return $true } } catch { return $false } } if (CheckDotNetCliInstalled($version)) { Write-Host "Microsoft .NET Core SDK is already installed on your machine." } else { Install-ChocolateyPackage @packageArgs }
Virus Scan Results
- dotnetcoresdk.1.0.1.nupkg (ecbf2c302939) - ## / 54 - Log in or click on link to see number of positives
- DotNetCore.1.0.1-SDK.1.0.0.Preview2-003133-x64.exe (27dfa0ea2d2a) - ## / 56 - Log in or click on link to see number of positives
Dependencies
-
- dotnetcore-runtime (≥ 1.0.1)
Package Maintainer(s)
Software Author(s)
Tags
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
.Net Core SDK 1.0.1 | 2713 | Wednesday, December 14, 2016 | approved |
.Net Core SDK 1.0.0-RC2 | 314 | Friday, May 20, 2016 | exempted |
Discussion for the .Net Core SDK Package
Ground rules:
- This discussion is only about .Net Core SDK and the .Net Core SDK package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or .Net Core SDK, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.