Compare commits

..

1 commit

Author SHA1 Message Date
Rahul Bhandari 7f05febd5b
Update releases.json 2020-11-11 09:57:55 -08:00
935 changed files with 2025 additions and 62467 deletions

11
.github/ISSUE_TEMPLATE vendored Normal file
View file

@ -0,0 +1,11 @@
# Issue Title
Be as descriptive as you can with your title.
# General
Provide details on the problem you are experiencing including the .NET Core version, operating system version and anything else that is relevant.
Please provide a code sample for your issue if it is relevant, either inline, link to a gist (or similar) or add it as a zipped attachment.
For some issues, you will get a quicker and better response if you file it at a more specific [.NET repo](https://github.com/dotnet/core/blob/master/Documentation/core-repos.md). For example, if the problem is with ASP.NET Core, you are encouraged to use the [aspnet/home repo](https://github.com/aspnet/home/issues).

View file

@ -1,42 +0,0 @@
---
name: General bug report
about: If you're not sure where to create the .NET issue, click here
title: ''
labels: ''
assignees: ''
---
<!--This is just a template - feel free to delete any and all of it and replace as appropriate. If you're not sure of an answer, just skip it. We'll help you! -->
### Description
<!--
* Please share a clear and concise description of the problem.
* Include minimal steps to reproduce the problem if possible. E.g.: the smallest possible code snippet; or a small repo to clone, with steps to run it.
* What behavior are you seeing, and what behavior would you expect?
-->
### Configuration
<!--
* Which version of .NET is the code running on?
* What OS and version, and for Linux, what distro?
* What is the architecture (x64, x86, ARM, ARM64)?
* Do you know whether it is specific to that configuration?
* If you're using Blazor, which web browser(s) do you see this issue in?
-->
### Regression?
<!--
* Did this work in a previous build or release of .NET Core, or from .NET Framework? If you can try a previous release or build to find out, that can help us narrow down the problem. If you don't know, that's OK.
-->
### Other information
<!--
* Please include any relevant stack traces or error messages. If possible please include text as text rather than images (so it shows up in searches).
* If you have an idea where the problem might lie, let us know that here. Please include any pointers to code, relevant changes, or related issues you know of.
* Do you know of any workarounds?
-->

View file

@ -1,26 +0,0 @@
blank_issues_enabled: true
contact_links:
- name: Issue with ASP.NET Core
url: https://github.com/dotnet/aspnetcore/issues/new/choose
about: Please open issues relating to ASP.NET Core in dotnet/aspnetcore.
- name: Issue with .NET runtime or core .NET libraries
url: https://github.com/dotnet/runtime/issues/new/choose
about: Please open issues with the .NET runtime or core .NET libraries in dotnet/runtime.
- name: Issue with .NET SDK
url: https://github.com/dotnet/sdk/issues/new/choose
about: Please open issues relating to the .NET SDK in dotnet/sdk.
- name: Issue with Entity Framework
url: https://github.com/dotnet/efcore/issues/new/choose
about: Please open issues relating to Entity Framework in dotnet/efcore.
- name: Issue with Roslyn compiler
url: https://github.com/dotnet/roslyn/issues/new/choose
about: Please open issues relating to the Roslyn .NET compiler in dotnet/roslyn.
- name: Issue with Windows Forms
url: https://github.com/dotnet/winforms/issues/new/choose
about: Please open issues relating to Windows Forms in dotnet/winforms.
- name: Issue with WPF
url: https://github.com/dotnet/wpf/issues/new/choose
about: Please open issues relating to WPF in dotnet/wpf.
- name: Issue with .NET Framework
url: https://developercommunity.visualstudio.com/spaces/61/index.html
about: Please open issues relating to the .NET Framework (rather than .NET Core or .NET 5+) in Developer Community

27
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,27 @@
version: 2
updates:
- package-ecosystem: nuget
directory: "/samples/dotnetbot"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: nuget
directory: "/samples/helloworld"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: nuget
directory: "/samples/qotd"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: nuget
directory: "/samples/helloworldasync"
schedule:
interval: daily
open-pull-requests-limit: 10
- package-ecosystem: nuget
directory: "/samples/dotnetsay"
schedule:
interval: daily
open-pull-requests-limit: 10

View file

@ -1,6 +1,6 @@
# Contributing
See [Contributing](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md) for information about coding styles, source structure, making pull requests, and more.
See [Contributing](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/contributing.md) for information about coding styles, source structure, making pull requests, and more.
# Repos

View file

@ -1,8 +1,8 @@
# How to use .NET Core on RHEL 6 / CentOS 6
This document describes the prerequisites required to run .NET Core applications on RHEL / CentOS 6. Since this version is quite old, there are two runtime libraries that are not available as standard installation packages in versions that .NET Core can use, so they need to be obtained in different ways described in the sections below.
## Required packages
.NET Core requires the following packages to be installed on RHEL 6:
* epel-release
.NET Core requires the following packages to be installed on RHEL 6:
* epel-release
* libunwind
* openssl
* libnghttp2
@ -22,7 +22,7 @@ This document describes the prerequisites required to run .NET Core applications
}
}
```
For more information about enabling or disabling the Globalization, you may refer to the [Globalization Invariant Mode Doc](https://github.com/dotnet/runtime/blob/main/docs/design/features/globalization-invariant-mode.md)
For more information about enabling or disabling the Globalization, you may refer to the [Globalization Invariant Mode Doc](https://github.com/dotnet/corefx/blob/master/Documentation/architecture/globalization-invariant-mode.md)
## Getting the libraries that are not available as packages.
### ICU
@ -35,13 +35,13 @@ First install the prerequisites:
```sh
yum install -y \
wget \
epel-release
epel-release
yum install -y \
openssl-devel \
libnghttp2-devel \
libidn-devel \
gcc
gcc
```
Now untar the source code
```sh
@ -83,11 +83,11 @@ make install
```
Now pack the compiled CURL:
```sh
cd install
cd install
tar -czf curl-7_45_0-RHEL6-x64.tgz *
```
## Making the libraries available for a .NET Core application
There are several ways to do this. The following paragraphs describe them.
There are several ways to do this. The following paragraphs describe them.
### Install the libraries into /usr/local
First untar the .tgz files as follows:
```sh
@ -109,7 +109,7 @@ tar -xf /your/path/to/icu4c-57_1-RHEL6-x64.tgz --strip-components=3 usr/local/li
### For the app developers pack the libraries with your application
The steps are the same as for the previous option, but they are done by the app developer. The app is then packaged including the libraries.
## Troubleshooting
**Q1:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the following exception:
**Q1:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the following exception:
```
FailFast: Couldn't find a valid ICU package installed on the system. Set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support.
@ -128,7 +128,7 @@ FailFast: Couldn't find a valid ICU package installed on the system. Set the con
Aborted (core dumped)
```
**A1:** The ICU libraries were not extracted from `icu4c-57_1-RHEL6-x64.tgz` to the right place, or `LD_LIBRARY_PATH` was not set to `/usr/local/lib`. See the [Making the libraries available for a .NET Core application](#making-the-libraries-available-for-a-net-core-application) section.
**Q2:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the exception similar to the following one:
```

View file

@ -4,28 +4,28 @@
## .NET Core
|Repository |Description |
|--------------------------------------------------------------------|------------|
|[dotnet/core](https://github.com/dotnet/core) |.NET Core home repository|
|[dotnet/runtime](https://github.com/dotnet/runtime) |.NET Core runtime, runtime installers, application model, & Base Class Library (BCL)|
|[dotnet/docs](https://github.com/dotnet/docs) |.NET documentation|
|Repository |Description |
|------------------------------------------------------------------|------------|
|[dotnet/core](https://github.com/dotnet/core) |.NET Core home repository|
|[dotnet/runtime](https://github.com/dotnet/runtime) |.NET Core runtime, runtime installers, application model, & Base Class Library (BCL)|
|[dotnet/docs](https://github.com/dotnet/docs) |.NET documentation|
|[dotnet/dotnet-api-docs](https://github.com/dotnet/dotnet-api-docs) |.NET API documentation|
|[dotnet/project-system](https://github.com/dotnet/project-system) |Visual Studio project system for C#, F#, & VB|
|[dotnet/sdk](https://github.com/dotnet/sdk) |.NET Core SDK (used by Visual Studio & .NET Core CLI)|
|[dotnet/installer](https://github.com/dotnet/installer) |.NET Core installer (produces zips, tarballs, and installers for the .NET SDK)
|[dotnet/extensions](https://github.com/dotnet/extensions) |.NET extension APIs (DI, logging, configuration, etc.)|
|[dotnet/dotnet-docker](https://github.com/dotnet/dotnet-docker) |.NET Core Docker images|
|[dotnet/templating](https://github.com/dotnet/templating) |Templating engine used by `dotnet new`|
|[dotnet/test-templates](https://github.com/dotnet/test-templates) |.NET Core unit testing project templates|
|[dotnet/winforms](https://github.com/dotnet/winforms) |Windows Forms|
|[dotnet/wpf](https://github.com/dotnet/wpf) |Windows Presentation Foundation (WPF)|
|[dotnet/maui](https://github.com/dotnet/maui) |.NET Multi-platform App UI|
|[dotnet/project-system](https://github.com/dotnet/project-system) |Visual Studio project system for C#, F#, & VB|
|[dotnet/sdk](https://github.com/dotnet/sdk) |.NET Core SDK (used by Visual Studio & .NET Core CLI)|
|[dotnet/installer](https://github.com/dotnet/installer) |.NET Core installer (produces zips, tarballs, and installers for the .NET SDK)
|[dotnet/extensions](https://github.com/dotnet/extensions) |.NET extension APIs (DI, logging, configuration, etc.)|
|[dotnet/dotnet-docker](https://github.com/dotnet/dotnet-docker) |.NET Core Docker images|
|[dotnet/templating](https://github.com/dotnet/templating) |Templating engine used by `dotnet new`|
|[dotnet/test-templates](https://github.com/dotnet/test-templates) |.NET Core unit testing project templates|
|[dotnet/winforms](https://github.com/dotnet/winforms) |Windows Forms|
|[dotnet/wpf](https://github.com/dotnet/wpf) |Windows Presentation Foundation (WPF)|
|[dotnet/maui](https://github.com/dotnet/maui) |.NET Multi-platform App UI|
## .NET Framework
|Repository |Description |
|------------------------------------------------------------------------------------------|------------|
|[Dev Community](https://developercommunity.visualstudio.com/spaces/61/index.html) |Report issues to .NET Framework Developer Community|
|Repository |Description |
|------------------------------------------------------------------|------------|
|[microsoft/dotnet](https://github.com/microsoft/dotnet) |Catch-all repository for .NET (where most .NET Framework issues are filed)|
|[microsoft/dotnet-framework-docker](https://github.com/microsoft/dotnet-framework-docker) |.NET Framework Docker images|
## .NET Standard
@ -59,15 +59,6 @@
|[dotnet/EntityFramework.Docs](https://github.com/dotnet/EntityFramework.Docs)|EF Core & EF 6 documentation |
|[dotnet/sqlclient](https://github.com/dotnet/sqlclient) |SqlClient data provider for SQL Server|
## Machine Learning and AI
|Repository |Description |
|----------------------------------------------------------------------------------------------|-------------------------|
|[dotnet/machinelearning](https://github.com/dotnet/machinelearning) |ML.NET |
|[dotnet/machinelearning-modelbuilder](https://github.com/dotnet/machinelearning-modelbuilder) |ML.NET Tooling |
|[dotnet/ml-api-docs](https://github.com/dotnet/ml-api-docs) |ML.NET API documentation |
|[dotnet/spark](https://github.com/dotnet/spark) |.NET for Apache® Spark™ |
## Languages
|Repository |Description |

View file

@ -9,7 +9,7 @@ The Windows PDB format has been around a long time now (~25 years), and it evolv
## Why a new format? ##
While the Windows PDB format has worked okay over the years, with .NET Core the [Roslyn](https://github.com/dotnet/roslyn/wiki/Roslyn%20Overview) team decided it was time to go back to the drawing board and come up with a new format. A few of the reasons:
* The Windows PDB format is complex, and not well documented. This complexity is important for some of the native code scenarios that the format was designed for, but it is unnecessary for the .NET scenarios. The portable format is [open source](https://github.com/dotnet/symreader-portable) and [documented](https://github.com/dotnet/runtime/blob/main/docs/design/specs/PortablePdb-Metadata.md).
* The Windows PDB format is complex, and not well documented. This complexity is important for some of the native code scenarios that the format was designed for, but it is unnecessary for the .NET scenarios. The portable format is [open source](https://github.com/dotnet/symreader-portable) and [documented](https://github.com/dotnet/runtime/blob/master/docs/design/specs/PortablePdb-Metadata.md).
* At the time the effort was begun there wasn't a cross-platform library that could read or write the original windows PDB format.
* The Windows PDB format is not a compact representation for managed code. Significant size reductions can be obtained with a new format without losing any information.

View file

@ -1 +1 @@
This document has moved to https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md
This document has moved to https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md

View file

@ -8,8 +8,8 @@ There are a few options available for installing .NET Core on Linux systems and
Other useful references
* [OS lifecycle support policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md)
* [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md)
* [OS lifecycle support policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md)
* [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md)
### Installation using a package manager
@ -83,11 +83,11 @@ sudo zypper install libunwind libicu
## Ready to install
Your system is now ready to install .NET Core. See the [Release Notes index](https://github.com/dotnet/core/tree/main/release-notes#net-core-release-notes) for the latest available updates.
Your system is now ready to install .NET Core. See the [Release Notes index](https://github.com/dotnet/core/tree/master/release-notes#net-core-release-notes) for the latest available updates.
## Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements for each distro can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements for each distro can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet

View file

@ -10,45 +10,45 @@ You need to link your GitHub and @microsoft.com accounts. Click the link:
You need to join teams in two organizations. Click the two links:
1. [Join the Microsoft org](https://repos.opensource.microsoft.com/orgs/microsoft/join)
2. [Join the dotnet team](https://repos.opensource.microsoft.com/Microsoft/teams/dotnet/join/)
3. [Join the dotnet org](https://repos.opensource.microsoft.com/orgs/dotnet/join)
4. [Join the microsoft team](https://repos.opensource.microsoft.com/dotnet/teams/microsoft/join/)
* [Join the dotnet org and the microsoft team in that org](https://repos.opensource.microsoft.com/dotnet/teams/microsoft/join/)
* [Join the microsoft org and the dotnet team in that org](https://repos.opensource.microsoft.com/Microsoft/teams/dotnet/join/)
After you join the teams:
* Users will be able to @mention you on [.NET Core Repos](https://github.com/dotnet/core/blob/main/Documentation/core-repos.md)
* Users will be able to @mention you on [.NET Core Repos](https://github.com/dotnet/core/blob/master/Documentation/core-repos.md)
* You will be able to access to private repos we maintain
* You will get write access to a subset of repos
## Configure your GitHub account as a Microsoft employee (recommended)
* Publicly associate yourself with dotnet and Microsoft orgs
* For Microsoft, go to <https://github.com/orgs/Microsoft/people>.
* For dotnet, go to <https://github.com/orgs/dotnet/people>.
* Search for your GitHub handle in the list.
* Choose `Public` from the drop-down list of organization visibility.
* Note: Everyone will now see an org badge on your GH profile in the Organizations section.
* For Microsoft, go to https://github.com/orgs/Microsoft/people
* For dotnet, go to https://github.com/orgs/dotnet/people
* Search for your GitHub handle in the list
* Choose `Public` from the drop-down list of organization visibility
* Note: Everyone will now see an org badge on your GH profile in the Organizations section
* Update your profile
* Go to <https://github.com/settings/profile>.
* Match your **Name** on GitHub with full name in address book (so other employees can find you and contact you internally when needed).
* Set `@Microsoft` as your **Company**,
* Upload your **picture**, ideally showing your face.
* Hint: You can grab your GAL picture from <https://microsoft-my.sharepoint.com>.
* Go to https://github.com/settings/profile
* Match your **Name** on GitHub with full name in address book (so other employees can find you and contact you internally when needed)
* Set `@Microsoft` as your **Company**
* Upload your **picture**, ideally showing your face
* Hint: You can grab your GAL picture from https://microsoft-my.sharepoint.com
## Install Microsoft open source tools (recommended)
The following tool makes it easier to use open source and participate in open-source projects:
The tools make it easier to use open source and participate in open source projects:
* [Browser Extension](https://docs.opensource.microsoft.com/tools/browser.html) -- Identifies Microsoft employees on GitHub.
* [VS Code Extension](https://docs.opensource.microsoft.com/tools/vscode.html) -- Provides information about known vulnerabilities.
The browser extension is recommended. The VS code extension is optional.
## Get write permissions to repos (optional)
Join teams to gain write access to repos:
* Request team membership via <https://repos.opensource.microsoft.com/teams>.
* Ask someone if you don't know which team(s) to join.
* Select `Request to join this team` on the right side - it will send email request to maintainers of the team.
* Request team membership via https://repos.opensource.microsoft.com/teams
* Ask someone if you don't know which team(s) to join.
* Select `Request to join this team` on the right side - it will send email request to maintainers of the team
## Security best practices
@ -58,7 +58,7 @@ The following best practices are required for org owners, and recommended for re
* Do register a [security key(s)](https://www.yubico.com/works-with-yubikey/catalog/github/) as a two factor method.
* Do register an authenticator app -- registering a one-time-password with an app like 1Password is recommended (not tied to your phone).
* Do store recovery codes in a safe place, like [OneDrive Vault](https://www.microsoft.com/microsoft-365/onedrive/personal-vault), 2FA-protected OneNote or in a password vault like 1Password.
* Do store recorvery codes in a safe place, like [OneDrive Vault](https://www.microsoft.com/microsoft-365/onedrive/personal-vault), 2FA-protected OneNote or in a password vault like 1Password.
* Do register your GitHub account with your 2FA-protected Facebook account for GitHub account recovery. This is the absolute last recovery option and is considered secure (even if your Facebook account is breached).
* Do not use SMS for 2FA or as a recovery fallback.
@ -69,7 +69,7 @@ A few more notes on hardware keys:
* You should have at least one hardware key that does not travel with you, but is stored in a secure location (like at home) as a last resort in case you lose access to other factors.
* If you have a FIDO2 key, it can be used with [mysignins](https://mysignins.microsoft.com/).
* If you have USB-C and USB-A only devices, and want to use hardware keys for them, then you need [separate keys](https://www.yubico.com/works-with-yubikey/catalog/github/). This explains why the example below has three keys registered (one securely stored at home, and two keys for daily use for USB-C and USB-A only devices).
* You can use Windows Hello to sign in as a hardware key. This is fine to use, but it doesn't replace the need for hardware key that you store in a secure location. Your Windows Hello key is not tied to you, but the machine. It won't survive hardware failures or re-installing Windows.
* You can use Windows Hello to signin as a hardware key. This is fine to use, but doesn't replace the need for hardware key that you store in a secure location.Your Windows Hello key is not tied to you, but the machine. It won't survive hardware failures or re-installing Windows.
A correctly configured account should look similar to the following:
@ -89,5 +89,5 @@ Service accounts should also be linked. For more details, see [Service accounts
## Guidelines
* [Contributing to .NET Core](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md)
* [What you can expect from Maintainers](https://github.com/dotnet/core/blob/main/Documentation/contributing/maintainers.md)
* [Contributing to .NET Core](https://github.com/dotnet/runtime/blob/master/CONTRIBUTING.md)
* [What you can expect from Maintainers](https://github.com/dotnet/core/blob/master/Documentation/contributing/maintainers.md)

View file

@ -1,7 +1,7 @@
.NET Core native prerequisites
==============================
* [Windows Prerequisites](https://docs.microsoft.com/dotnet/core/install/windows)
* [macOS Prerequisites](https://docs.microsoft.com/dotnet/core/install/macos)
* [Linux Prerequisites](https://docs.microsoft.com/dotnet/core/install/linux)
* [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md)
* [Windows Prerequisites](https://docs.microsoft.com/dotnet/core/install/dependencies?pivots=os-windows)
* [macOS Prerequisites](https://docs.microsoft.com/dotnet/core/install/dependencies?pivots=os-macos)
* [Linux Prerequisites](https://docs.microsoft.com/dotnet/core/install/dependencies?pivots=os-linux)
* [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md)

View file

@ -2,20 +2,23 @@
The dotnet/core repository is a good starting point for .NET Core.
The latest major release is [.NET 6.0](release-notes/6.0/README.md). The latest patch updates are listed in [.NET Core release notes](release-notes/README.md).
The latest major release is [.NET 5.0](release-notes/5.0). The latest patch updates are listed in [.NET Core release notes](release-notes/README.md).
## .NET Core Releases
## Download the latest .NET Core SDK
* [Download the latest .NET Core SDK](https://dotnet.microsoft.com/download/dotnet/5.0)
* [.NET Core releases](releases.md)
* [.NET 5.0 SDK](release-notes/5.0/README.md)
## .NET Core Releases and Daily Builds
* [.NET Core released builds](release-notes/README.md)
* [.NET Core daily builds](daily-builds.md)
## Learn about .NET Core
* [Learn about .NET Core](https://docs.microsoft.com/dotnet/core)
* [.NET Core Roadmap](https://github.com/dotnet/core/blob/main/roadmap.md)
* [.NET Core Roadmap](https://github.com/dotnet/core/blob/master/roadmap.md)
* [Learn about the .NET platform](https://docs.microsoft.com/dotnet/standard/)
* [.NET Core release notes](https://github.com/dotnet/core/blob/main/release-notes/README.md)
* [.NET Core release notes](https://github.com/dotnet/core/blob/master/release-notes/README.md)
* [.NET Core Announcements](https://github.com/dotnet/announcements)
* [.NET Core blog](https://blogs.msdn.microsoft.com/dotnet/tag/net-core/)
@ -28,7 +31,7 @@ The latest major release is [.NET 6.0](release-notes/6.0/README.md). The latest
## How to Engage, Contribute and Provide Feedback
The .NET Core team encourages [contributions](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md), both issues and PRs. The first step is finding the [.NET Core repository](Documentation/core-repos.md) that you want to contribute to.
The .NET Core team encourages [contributions](https://github.com/dotnet/runtime/blob/master/CONTRIBUTING.md), both issues and PRs. The first step is finding the [.NET Core repository](Documentation/core-repos.md) that you want to contribute to.
Check the [product roadmap](https://aka.ms/dotnet-product-roadmap) to see what the team is focusing on.

View file

@ -1,25 +1,23 @@
# .NET Daily Builds -- Servicing and future releases
# .NET Core Daily Builds -- Servicing and future releases
The .NET team builds many branches of the product daily. You can install these builds to try out functionality prior to release.
Daily builds, for both future and servicing branches, are available as Docker container images from the [Microsoft Container Registry](https://hub.docker.com/_/microsoft-dotnet-nightly/).
The .NET Core team builds many branches of the product daily. You can install these builds to try out functionality prior to release.
## Future Releases
Preview branches are for new versions of .NET that have not yet been released and are not yet supported.
Preview branches are for new major/minor versions of .NET Core that have not yet been released and are not yet supported.
|Component|*.NET 6.0*
|Component|*.NET 5.0*
|:------:|:------:|
|SDK|[.NET SDK 6.0.xxx](https://github.com/dotnet/installer/blob/main/README.md#installers-and-binaries)
|ASP.NET Core|[ASP.NET Core 6.0](https://github.com/dotnet/aspnetcore/blob/main/docs/DailyBuilds.md)
|Runtime|[.NET Runtime 6.0](https://github.com/dotnet/installer/blob/master/README.md#daily-builds)
|SDK|[.NET Core SDK 5.0.xxx (Master)](https://github.com/dotnet/core-sdk/blob/master/README.md#installers-and-binaries)
|ASP.NET Core|[ASP.NET Core Shared Framework 5.0 (Master)](https://github.com/aspnet/AspNetCore/blob/master/docs/DailyBuilds.md)
|Runtime|[.NET Core Runtime 5.0 (Master)](https://github.com/dotnet/core-setup/blob/master/README.md#daily-builds)
## Servicing Releases
Servicing branches are for new patch versions of .NET that have not yet been released and are not yet supported.
Servicing branches are for new patch versions of .NET Core that have not yet been released and are not yet supported. These patch versions are for previously released major/minor versions.
|Component|*.NET 5.0*|*.NET Core 3.1*|
|Component|*.NET Core 3.1*|*.NET Core 2.1*
|:------:|:------:|:------:|
|SDK|[.NET SDK 5.0.xxx](https://github.com/dotnet/installer/blob/main/README.md#installers-and-binaries)|[.NET Core SDK 3.1.xxx](https://github.com/dotnet/core-sdk/blob/main/README.md#installers-and-binaries)
|ASP.NET Core|[ASP.NET Core 5.0](https://github.com/dotnet/aspnetcore/blob/main/docs/DailyBuilds.md)|[ASP.NET Core 3.1](https://github.com/dotnet/aspnetcore/blob/main/docs/DailyBuilds.md)|
|Runtime|[.NET Core Runtime 5.0](https://github.com/dotnet/installer/blob/master/README.md#daily-builds)|[.NET Core Runtime 3.1](https://github.com/dotnet/core-setup/blob/master/README.md#daily-builds)
|SDK|[.NET Core SDK 3.1](https://github.com/dotnet/core-sdk/blob/master/README.md#installers-and-binaries)|[.NET Core SDK 2.1.xxx](https://github.com/dotnet/cli/blob/release/2.1/README.md#installers-and-binaries)|
|ASP.NET Core|[ASP.NET Core Shared Framework 3.1](https://github.com/aspnet/AspNetCore/blob/master/docs/DailyBuilds.md)|[ASP.NET Core Shared Framework 2.1](https://github.com/aspnet/AspNetCore/blob/master/docs/DailyBuilds.md)|
|Runtime|[.NET Core Runtime 3.1](https://github.com/dotnet/core-setup/blob/master/README.md#daily-builds)|[.NET Core Runtime 2.1](https://github.com/dotnet/core-setup/blob/master/README.md#daily-builds)|

View file

@ -1,6 +1,6 @@
# License information for .NET on Windows
The Windows distribution of .NET 5.0 and later releases contains files that are provided under
The Windows distribution of .NET 5.0 contains files that are provided under
multiple licenses.
This information is provided to help you understand the license terms that
apply to your use. By using any or all of these files you agree to their associated license terms.
@ -13,7 +13,7 @@ The following binaries are licensed with the
* D3DCompiler_47_cor3.dll (used by WPF)
The following binaries are licensed with the
[.NET Library License](https://dotnet.microsoft.com/dotnet_library_license.htm)
[.NET Library License](https://dotnet.microsoft.com/en/dotnet_library_license.htm)
* PresentationNative_cor3.dll (used by WPF)
* wpfgfx_cor3.dll (used by WPF)
@ -26,6 +26,6 @@ The following binaries are licensed with the
* Microsoft.DiaSymReader.Native.{x86|amd64|arm|arm64}.dll (used by .NET SDK)
All other binaries and files are licensed with the
[MIT license](https://github.com/dotnet/core/blob/main/LICENSE.TXT)
[MIT license](https://github.com/dotnet/core/blob/master/LICENSE.TXT)
This document is provided for informative purposes only, and is not itself a license.

View file

@ -1,21 +1,61 @@
# Microsoft support for .NET
# Microsoft .NET Core support lifecycle
[Microsoft supports .NET](https://dotnet.microsoft.com/platform/support/policy) on multiple operating systems, per the [Microsoft Modern Lifecycle](https://support.microsoft.com/help/30881/modern-lifecycle-policy).
Every Microsoft product has a lifecycle, including .NET Core. The lifecycle begins when a product is released and ends when it's no longer supported. Knowing key dates in this lifecycle helps you make informed decisions about when to upgrade or make other changes to your software. This product is governed by the [Microsoft Modern Lifecycle](https://support.microsoft.com/help/30881/modern-lifecycle-policy).
Support is provided for: .NET SDK, .NET runtime, ASP.NET Core, and EF Core.
This document describes the support lifecycle for: .NET Core, ASP.NET Core and EF Core.
Support has two key benefits:
The [.NET Core OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) describes support for various operating systems.
* Patches are provided (for free) as required for functional or security issues, typically monthly.
* You can [contact Microsoft support to request help](https://support.serviceshub.microsoft.com/supportforbusiness/onboarding) (potentially at a cost).
## .NET Core Releases
You can also request community support on GitHub (for free), but there is no guarantee on a quick reply.
This table describes support type, supported patch version and end of support date for .NET Core releases.
Support is conditional on using the latest .NET patch update and a supported operating system, as defined by:
| Version | Release Date | Support Level | Supported Patch Version | End of Support |
| :-- | :-- | :-- | :-- | :-- |
| [.NET 5.0](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | November 10, 2020 | Current | [5.0.0](https://dotnet.microsoft.com/download/dotnet-core/5.0) | 3 Months after .NET 6 is released |
| [.NET Core 3.1](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | December 3, 2019 | LTS | [3.1.10](https://dotnet.microsoft.com/download/dotnet-core/3.1) | December 3, 2022 |
| [.NET Core 2.1](https://blogs.msdn.microsoft.com/dotnet/2018/05/30/announcing-net-core-2-1) | May 30, 2018 | LTS | [2.1.23](https://dotnet.microsoft.com/download/dotnet-core/2.1) | August 21, 2021 |
* [Microsoft support policy](https://dotnet.microsoft.com/platform/support/policy)
* [.NET releases](releases.md)
* [.NET release policies](release-policies.md)
* [.NET supported operating system lifecycle](os-lifecycle-policy.md).
For previous versions, [see here](https://dotnet.microsoft.com/platform/support/policy/dotnet-core).
Knowing key dates for a product lifecycle helps you make informed decisions about when to upgrade or make other changes to your software and computing environment.
## Release Types
Microsoft produces **Long Term Support (LTS)** and **Current** releases, which are defined as:
* **LTS** releases are designed for long-term support. They included features and components that have been stabilized, requiring few updates over a longer support release lifetime. These releases are a good choice for hosting applications that you do not intend to update.
* **Current** releases include new features that may undergo future change based on feedback. These releases are a good choice for applications in active development, giving you access to the latest features and improvements. You need to upgrade to later .NET Core releases more often to stay in support.
Both types of releases receive critical fixes throughout their lifecycle, for security, reliability, or to add support for new operating system versions. You must stay up-to-date with the latest patches to qualify for support.
## Release Support Policies
.NET Core releases are supported according to the following policies.
### Long Term Support (LTS) releases
LTS releases are supported for three years after the initial release.
### Current releases
Current releases are supported for three months after a subsequent Current or LTS release.
### Maintenance releases
Maintenance releases are in the last stage of the lifecycle . During Maintenance, a release will receive security updates. The length of Maintenance time is 3 months for Current and 1 year for LTS.
### End of support
End of support refers to the date when Microsoft no longer provides fixes, updates, or online technical assistance. As this date nears, make sure you have the latest available update\* installed. Without Microsoft support, you will no longer receive security updates that can help protect your machine from harmful viruses, spyware, and other malicious software that can steal your personal information.
\* Updates are cumulative, with each update built upon all of the updates that preceded it. A device needs to install the latest update to remain supported. Updates may include new features, fixes (security and/or non-security), or a combination of both. Not all features in an update will work on all devices. Update availability may vary, for example by country, region, network connectivity, or hardware capabilities (including, for example, free disk space).
### Out of support .NET Core releases
| Version | End of Support |
| :-- | :-- |
| [.NET Core 3.0](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-0/) | [March 3, 2020](https://devblogs.microsoft.com/dotnet/net-core-3-0-end-of-life/) |
| [.NET Core 2.2](https://devblogs.microsoft.com/dotnet/announcing-net-core-2-2/) | [December 23, 2019](https://devblogs.microsoft.com/dotnet/net-core-2-2-will-reach-end-of-life-on-december-23-2019/)
| [.NET Core 2.0](https://blogs.msdn.microsoft.com/dotnet/2017/08/14/announcing-net-core-2-0/) | [October 1, 2018](https://devblogs.microsoft.com/dotnet/net-core-2-0-will-reach-end-of-life-on-september-1-2018/)
| [.NET Core 1.1](https://blogs.msdn.microsoft.com/dotnet/2016/11/16/announcing-net-core-1-1/) | [June 27, 2019](https://devblogs.microsoft.com/dotnet/net-core-1-0-and-1-1-will-reach-end-of-life-on-june-27-2019/)
| [.NET Core 1.0](https://blogs.msdn.microsoft.com/dotnet/2016/06/27/announcing-net-core-1-0/) | [June 27, 2019](https://devblogs.microsoft.com/dotnet/net-core-1-0-and-1-1-will-reach-end-of-life-on-june-27-2019/)

View file

@ -1,37 +1,39 @@
# .NET Supported OS Policy
# .NET Core Supported OS Lifecycle Policy
.NET is [supported by Microsoft](microsoft-support.md) on multiple operating systems.
.NET Core is [supported by Microsoft](microsoft-support.md) on a range of operating systems.
A more restrictive policy is used for [.NET container images](https://github.com/dotnet/dotnet-docker/blob/main/documentation/supported-platforms.md).
Each supported operating system has a lifecycle defined by its sponsor organization (for example, Microsoft, Red Hat, or Apple). The .NET Core team applies each of those lifecycle schedules to inform adding and removing support for operating system versions.
## Supported .NET versions
The following support documents list currently supported operating system versions for supported .NET Core versions:
The following documents describe supported operating systems:
* [.NET 6 supported OS versions](release-notes/6.0/supported-os.md)
* [.NET 5 supported OS versions](release-notes/5.0/5.0-supported-os.md)
* [.NET Core 3.1 supported OS versions](release-notes/3.1/3.1-supported-os.md)
* [.NET Core 2.1 supported OS versions](release-notes/2.1/2.1-supported-os.md)
## Out-of-support .NET versions
## Out-of-Support .NET Core versions
The following documents describe (historical) supported operating systems:
When an operating system version goes out of support, we stop testing that version and providing support for that version. This means that users will need to move forward to a supported operating system version to get support. Previously released packages will remain available for users needing access.
The following support documents list historical operating system support for out-of-support .NET Core versions:
* [.NET Core 3.0 supported OS versions](release-notes/3.0/3.0-supported-os.md)
* [.NET Core 2.2 supported OS versions](release-notes/2.2/2.2-supported-os.md)
* [.NET Core 2.1 supported OS versions](release-notes/2.1/2.1-supported-os.md)
* [.NET Core 2.0 supported OS versions](release-notes/2.0/2.0-supported-os.md)
* [.NET Core 1.x supported OS versions](release-notes/1.0/1.0-supported-os.md)
## Change Process
Operating system versions are added and go out of support on a regular basis. We record these changes in three places:
Operating system versions are added and go out of support on a regular basis. We record these changes in two places:
* The support documents listed above
* [Monthly Update Announcements](https://github.com/dotnet/announcements/labels/Monthly-Update)
* [OS support tracking issues](https://github.com/dotnet/core/labels/os-support)
## Lifecycle Policy
When a new operating system version is made available, we will typically support it on a subset of supported .NET Core versions, potentially only with the latest .NET Core version.
Each supported operating system has a lifecycle defined by its sponsor organization (for example, Microsoft, Red Hat, Debian, or Apple). The .NET team applies each of those lifecycle schedules to inform adding and removing support for operating system versions. Support is typically removed when an operating system goes out of mainline support, at which point we stop testing and supporting it, and support documents are updated to match.
## Exceptions to the supported platform policy
Operating system policies and schedules do not always align well with the annual .NET schedule. We have sometimes supported both [Windows](https://docs.microsoft.com/troubleshoot/windows-client/windows-7-eos-faq/windows-7-extended-security-updates-faq) and Linux versions after mainline (and possibly free) support has lapsed as a service to users to provide more time to transition to newer releases. The previous support documents are kept up to date and provide accurate information you can use to make your own support decisions.
Occasionally, we may not adhere to a strict interpretation of the policy for supported OS platforms. Instead, we may choose to offer support on an OS platform that is out of support. Or we may choose to exclude a supported platform for specific reasons.
One example is Windows 7 SP1. Windows 7 SP1 is out of support, but enterprise customers can buy [Extended Security Updates](https://docs.microsoft.com/troubleshoot/windows-client/windows-7-eos-faq/windows-7-extended-security-updates-faq), and many do. Given the widespread use of Windows 7 in the .NET ecosystem we chose to include Windows 7 SP1 (with Extended Security Updates installed) as a supported platform for .NET 5.0. Another example is Windows Server 2012. Windows Server 2012 is currently in support but not included in the supported platform list for .NET 5.0 because a newer version is available in the Server 2012 family - Server 2012 R2.
**_When there is a conflict between our general policy for supported platforms and the specific supported platforms documented for a given release of .NET the supported platform list for the specific version of .NET will supersede the general policy._**

View file

@ -25,16 +25,16 @@ Items in each section include the following icons:
## ASP.NET
- ![Completed](media/status-completed.png "Completed icon") [Blazor](https://github.com/dotnet/aspnetcore/issues/21514)
- ![In Progress](media/status-in-progress.png "In Progress icon") [Blazor](https://github.com/dotnet/aspnetcore/issues/21514)
- ![Completed](media/status-completed.png "Completed icon") [Move Blazor to .NET 5](https://github.com/dotnet/aspnetcore/issues/20519)
- ![Completed](media/status-completed.png "Completed icon") [CSS Isolation](https://github.com/dotnet/aspnetcore/issues/10170)
- ![Completed](media/status-completed.png "Completed icon") [Support IAsyncDisposable](https://github.com/dotnet/aspnetcore/issues/9960)
- ![Completed](media/status-completed.png "Completed icon") [Lazy loading of application areas](https://github.com/dotnet/aspnetcore/issues/5465)
- ![Completed](media/status-completed.png "Completed icon") [Add focus support to BrowserRenderer](https://github.com/dotnet/aspnetcore/issues/17472)
- ![Completed](media/status-completed.png "Completed icon") [Protected Browser Storage](https://github.com/dotnet/aspnetcore/issues/18755)
- ![Completed](media/status-completed.png "Completed icon") [Build performance improvements for Blazor](https://github.com/dotnet/aspnetcore/issues/22566)
- ![In Progress](media/status-in-progress.png "In Progress icon") [Build performance improvements for Blazor](https://github.com/dotnet/aspnetcore/issues/22566)
- ![Completed](media/status-completed.png "Completed icon") [Blazor performance optimizations](https://github.com/dotnet/aspnetcore/issues/22432)
- ![Completed](media/status-completed.png "Completed icon") [How to upload files in Blazor App](https://github.com/dotnet/aspnetcore/issues/12205)
- ![In Progress](media/status-in-progress.png "In Progress icon") [How to upload files in Blazor App](https://github.com/dotnet/aspnetcore/issues/12205)
## gRPC
@ -45,8 +45,8 @@ Items in each section include the following icons:
- ![Completed](media/status-completed.png "Completed icon") Configurable HTTP/2 PING frames
- ![Completed](media/status-completed.png "Completed icon") Instrument gRPC for use with OpenTelemetry
- ![Completed](media/status-completed.png "Completed icon") Add support for HttpSysServer
- ![Completed](media/status-completed.png "Completed icon") Add support for IIS
- ![Completed](media/status-completed.png "Completed icon") Introduce additional transports (e.g., Unix-domain sockets, Windows Named Pipes)
- ![In Progress](media/status-in-progress.png "In Progress icon") Add support for IIS
- ![In Progress](media/status-in-progress.png "In Progress icon") Introduce additional transports (e.g., Unix-domain sockets, Windows Named Pipes)
## Tye
@ -83,10 +83,10 @@ Items in each section include the following icons:
- ![Completed](media/status-completed.png "Completed icon") Add new algorithm and root cause detection for anomaly detection
- ![Completed](media/status-completed.png "Completed icon") Add time series seasonality and de-seasonality
- ![In Progress](media/status-in-progress.png "In Progress icon") GA Model Builder in Visual Studio
- ![Completed](media/status-completed.png "Completed icon") Add Azure Object Detection training to Model Builder
- ![Completed](media/status-completed.png "Completed icon") Add local Image Classification training scenario to ML.NET CLI
- ![Completed](media/status-completed.png "Completed icon") Add advanced options for data loading in Model Builder
- ![Completed](media/status-completed.png "Completed icon") Improve Azure training from Model Builder (better errors, multi-GPU multi-machine, reduced overhead)
- ![In Progress](media/status-in-progress.png "In Progress icon") Add Azure Object Detection training to Model Builder
- ![In Progress](media/status-in-progress.png "In Progress icon") Add local Image Classification training scenario to ML.NET CLI
- ![In Progress](media/status-in-progress.png "In Progress icon") Add advanced options for data loading in Model Builder
- ![In Progress](media/status-in-progress.png "In Progress icon") Improve Azure training from Model Builder (better errors, multi-GPU multi-machine, reduced overhead)
- ![In Planning](media/status-in-planning.png "In Planning icon") Add local Ranking scenario to tooling
- ![In Progress](media/status-in-progress.png "In Progress icon") Add support for re-opening Model Builder and adding multiple models to a project
- ![In Planning](media/status-in-planning.png "In Planning icon") Add integration with MLOps
@ -95,8 +95,8 @@ Items in each section include the following icons:
## Spark
- ![Completed](media/status-completed.png "Completed icon") Improve debugging experience
- ![Completed](media/status-completed.png "Completed icon") Spark 2.4 API compatibility
- ![Completed](media/status-completed.png "Completed icon") Spark 3.0 API compatibility
- ![In Progress](media/status-in-progress.png "In Progress icon") Spark 2.4 API compatibility
- ![In Progress](media/status-in-progress.png "In Progress icon") Spark 3.0 API compatibility
- ![In Planning](media/status-in-planning.png "In Planning icon") .NET Core project templates for .NET for Spark
- ![In Planning](media/status-in-planning.png "In Planning icon") VS deploy for .NET for Spark jobs
@ -113,10 +113,8 @@ Items in each section include the following icons:
[Details](https://github.com/dotnet/interactive/issues/392)
- ![Completed](media/status-completed.png "Completed icon") Multi Language support for Jupyter Notebooks (C#, F#, PowerShell)[Post](https://devblogs.microsoft.com/dotnet/net-interactive-is-here-net-notebooks-preview-2/)
- ![Completed](media/status-completed.png "Completed icon") [.NET Notebooks support - Available in VS Code Insiders.](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.dotnet-interactive-vscode)
- ![In Progress](media/status-in-progress.png "In Progress icon") VS Code
- ![In Progress](media/status-in-progress.png "In Progress icon") Adding SQL to .NET Interactive
- ![Completed](media/status-completed.png "Completed icon") Multi Language support for Jupyter Notebooks (C#, F#, PowerShell)
- ![In Progress](media/status-in-progress.png "In Progress icon") .NET Notebooks support in VS code Support
- ![In Progress](media/status-in-progress.png "In Progress icon") Improve Productivity
- ![In Progress](media/status-in-progress.png "In Progress icon") .NET Interactive for makers
- ![Completed](media/status-completed.png "Completed icon") [Documentation](https://github.com/dotnet/interactive/tree/main/docs) - done but always improving
@ -129,7 +127,7 @@ Please see the following links to view work items and themes across:
## Languages
[Language Feature Status](https://github.com/dotnet/roslyn/blob/main/docs/Language%20Feature%20Status.md)
[Language Feature Status](https://github.com/dotnet/roslyn/blob/master/docs/Language%20Feature%20Status.md)
### C# 9
@ -147,9 +145,9 @@ Please see the following links to view work items and themes across:
- ![Completed](media/status-completed.png "Completed icon") [Target-typed conditional](https://github.com/dotnet/csharplang/issues/2460)
- ![In Progress](media/status-in-progress.png "In Progress icon") [Covariant](https://github.com/dotnet/csharplang/issues/49) [Returns](https://github.com/dotnet/csharplang/issues/2844)
- ![Completed](media/status-completed.png "Completed icon") [Extension GetEnumerator](https://github.com/dotnet/csharplang/issues/3194)
- ![Completed](media/status-completed.png "Completed icon") [Module initializers](https://github.com/dotnet/csharplang/blob/main/proposals/csharp-9.0/module-initializers.md)
- ![Completed](media/status-completed.png "Completed icon") [Extending Partial](https://github.com/dotnet/csharplang/blob/main/proposals/csharp-9.0/extending-partial-methods.md)
- ![Completed](media/status-completed.png "Completed icon") [Top-level statements](https://github.com/dotnet/csharplang/blob/main/proposals/csharp-9.0/top-level-statements.md)
- ![Completed](media/status-completed.png "Completed icon") [Module initializers](https://github.com/dotnet/csharplang/blob/master/proposals/csharp-9.0/module-initializers.md)
- ![Completed](media/status-completed.png "Completed icon") [Extending Partial](https://github.com/dotnet/csharplang/blob/master/proposals/csharp-9.0/extending-partial-methods.md)
- ![Completed](media/status-completed.png "Completed icon") [Top-level statements](https://github.com/dotnet/csharplang/blob/master/proposals/csharp-9.0/top-level-statements.md)
### C# Next
@ -185,7 +183,7 @@ Please see the following links to view work items and themes across:
## CLI/SDK and MSBuild
- ![Completed](media/status-completed.png "Completed icon") [Changes to Target Framework Moniker - TFM](https://github.com/dotnet/designs/blob/main/accepted/2020/net5/net5.md)
- ![Completed](media/status-completed.png "Completed icon") [Changes to Target Framework Moniker - TFM](https://github.com/dotnet/designs/blob/master/accepted/2020/net5/net5.md)
- ![In Planning](media/status-in-planning.png "In Planning icon") Xamarin runs on .NET and via the CLI
- ![In Progress](media/status-in-progress.png "In Progress icon") [Optional Workload infrastructure](https://github.com/dotnet/designs/blob/107b50feec105b7c2b67b37acb322054e2255df5/accepted/2020/workloads/workloads.md)
- ![In Planning](media/status-in-planning.png "In Planning icon") Acquisition improvements
@ -195,15 +193,13 @@ Please see the following links to view work items and themes across:
- ![Completed](media/status-completed.png "Completed icon") [Solution filter support in MSBuild](https://github.com/dotnet/msbuild/issues/4097)
- ![Completed](media/status-completed.png "Completed icon") [Low priority builds for MSBuild](https://github.com/dotnet/msbuild/pull/4162)
- ![In Progress](media/status-in-progress.png "In Progress icon") [Resolve Assembly References (RAR) pre-built cache](https://github.com/dotnet/msbuild/issues/5247)
- ![In Progress](media/status-in-progress.png "In Progress icon") [Share RAR cache between projects](https://github.com/dotnet/msbuild/blob/main/documentation/specs/rar-as-service.md)
- ![In Progress](media/status-in-progress.png "In Progress icon") [Share RAR cache between projects](https://github.com/dotnet/msbuild/blob/master/documentation/specs/rar-as-service.md)
## Desktop
### WPF
[Details](https://github.com/dotnet/wpf/blob/main/roadmap.md)
- ![Completed](media/status-completed.png "Completed icon") WPF Integration with .NET 5
- ![In Progress](media/status-in-progress.png "In Progress icon") WPF Integration with .NET 5
- ![In Progress](media/status-in-progress.png "In Progress icon") Accessibility updates on app sample bugs
### WinForms

View file

@ -41,7 +41,7 @@ openSUSE | 42.3+ (1.1) | x64 |
## Out of support OS versions
Support for the following versions was ended by the distribution owners and are [not supported by .NET Core 1.x](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md).
Support for the following versions was ended by the distribution owners and are [not supported by .NET Core 1.x](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md).
OS | Version | End of Life
-----------|----------|-------------

View file

@ -4,7 +4,7 @@ This document lists known issues for *.NET Core 1.0.0* and *.NET Core SDK 1.0.0
## .NET Core native prerequisites
See the [.NET Core prequisites document](https://github.com/dotnet/core/blob/main/Documentation/prereqs.md) to understand any installation or setup requirements for your OS which are not handled by the .NET Core 1.0.0 installers.
See the [.NET Core prequisites document](https://github.com/dotnet/core/blob/master/Documentation/prereqs.md) to understand any installation or setup requirements for your OS which are not handled by the .NET Core 1.0.0 installers.
## NegotiateStream's functionality relies on gssapi implementation

View file

@ -1,4 +1,4 @@
# .NET Core 1.0 manifest
# .NET Core 1.0 mainfest
The following is a comprehensive manifest of packages released for .NET Core 1.0.

View file

@ -1,4 +1,4 @@
# .NET Core September 2016 Update for .NET Core 1.0 manifest
# .NET Core September 2016 Update for .NET Core 1.0 mainfest
The following is a comprehensive manifest of packages released with September 2016 Update for .NET Core 1.0.

View file

@ -3,10 +3,10 @@
## .NET Core March 2017 Update - Released 3/7/2017
* .NET Core SDK 1.0.0 and 1.0.1
* [.NET Core 1.0.4](https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.4.md)
* [.NET Core 1.1.1](https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.1.md)
* [.NET Core 1.0.4](https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.4.md)
* [.NET Core 1.1.1](https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.1.md)
[.NET Core 1.0.4](https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.4.md) was released today. Both releases include reliability updates to improve the quality of .NET Core. You can download the .NET Core Runtime releases via our [.NET Core Runtimes download page](https://dotnet.microsoft.com/download/dotnet/current/runtime). If you are looking for the .NET Core SDK, to get the latest tools, try the [.NET Core SDK download page](https://dotnet.microsoft.com/download).
[.NET Core 1.0.4](https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.4.md) was released today. Both releases include reliability updates to improve the quality of .NET Core. You can download the .NET Core Runtime releases via our [.NET Core Runtimes download page](https://dotnet.microsoft.com/download/dotnet-core/current/runtime). If you are looking for the .NET Core SDK, to get the latest tools, try the [.NET Core SDK download page](https://dotnet.microsoft.com/download).
Have a look at the [.NET announcement blog post](https://blogs.msdn.microsoft.com/dotnet/2017/03/07/announcing-net-core-tools-1-0/) for details and great context around the release. Visual Studio 2017 is also releasing today and you can read about it in their [announcement](https://blogs.msdn.microsoft.com/visualstudio/).

View file

@ -5,7 +5,7 @@ Microsoft is releasing security advisories for .NET Core and ASP.NET Core. Issue
.NET Core 1.0.10 and SDK 1.1.8 are available for download and usage in your environment.
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.10-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.10-download.md)
The .NET Core SDK 1.1.8 includes .NET Core 1.0.10 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 1.1.8, the following command will show that you're running version `1.1.8` of the tools.

View file

@ -5,7 +5,7 @@ Microsoft is releasing updates for .NET Core and ASP.NET Core. Issues addressed
.NET Core 1.0.11 and SDK 1.1.8 are available for download and usage in your environment.
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.11-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.11-download.md)
The .NET Core SDK 1.1.9 includes .NET Core 1.0.11 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 1.1.8, the following command will show that you're running version `1.1.9` of the tools.
@ -19,7 +19,7 @@ The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have b
## Azure AppServices
Deployment of this update to Azure AppServices is in process. Because AppServices is a high availability service, the deployment is carefully staged across regions over a period of time. Deployment will begin in the West US 2 and North Central US regions with remaining regions following over a few days.
Deployment of this update to Azure AppServices is in process. Because AppServices is a high availability service, the deployment is carfully staged across regions over a period of time. Deployment will begin in the West US 2 and North Central US regions with remaining regions following over a few days.
## Known Issues

View file

@ -2,7 +2,7 @@
.NET Core 1.0.12 is available for download and usage in your environment.
* [Download .NET Core](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.12-download.md)
* [Download .NET Core](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.12-download.md)
## Blog Round up
@ -22,7 +22,7 @@ The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have b
## .NET Core Lifecycle News
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
.NET Core 2.1 is expected to be declared LTS in the next few months. It is recommended that 2.1 be the default target for projects. .NET Core 2.0 will go out of support October 2018.

View file

@ -2,7 +2,7 @@
.NET Core 1.0.13 is available for download and usage in your environment.
* [Download .NET Core](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.13-download.md)
* [Download .NET Core](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.13-download.md)
## Blog Round up
@ -22,9 +22,9 @@ The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have b
## .NET Core Lifecycle News
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
As .NET Core 2.1 has become LTS (announced in [August 2018 blog post](https://blogs.msdn.microsoft.com/dotnet/2018/08/21/net-core-august-2018-update)), 1.0 and 1.1 have entered their maintenance phase and will only get critical security fixes going forward till their end of support on June 27, 2019.
As .NET Core 2.1 has become LTS (anounced in [August 2018 blog post](https://blogs.msdn.microsoft.com/dotnet/2018/08/21/net-core-august-2018-update)), 1.0 and 1.1 have entered their maintenance phase and will only get critical security fixes going forward till their end of support on June 27, 2019.
## Notable Changes in 1.0.13

View file

@ -5,7 +5,7 @@
* .NET Core Runtime 1.0.14
* .NET Core SDK 1.1.12
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.14/1.0.14.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.14/1.0.14.md) for details about what is included in this update.
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |
@ -53,7 +53,7 @@ sudo apt-get install dotnet-sharedframework-microsoft.netcore.app-1.0.14
## Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -61,7 +61,7 @@ export PATH=$PATH:$HOME/dotnet
```
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.14.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.14.md
[dotnet-centos-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/49f8157c-f170-4e0e-88ab-20170f9f5354/3fe0e777d5953e2919e7ca0a78c08737/dotnet-centos-x64.1.0.14.tar.gz
[dotnet-debian-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/cf9005e0-2e04-45c5-95fb-617cd1cf23d2/7638479ba289bc6e78e7c4736216f106/dotnet-debian-x64.1.0.14.tar.gz
@ -97,5 +97,5 @@ export PATH=$PATH:$HOME/dotnet
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.0.14-runtime-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.1.12-sdk-sha.txt
[linux-install]: https://dotnet.microsoft.com/download/dotnet/1.0
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-install]: https://dotnet.microsoft.com/download/dotnet-core/1.0
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md

View file

@ -22,7 +22,7 @@ There are no changes this month in OS version support status.
.NET Core 1.0 and 1.1, which entered "Maintenance" support status when 2.1 was declared LTS, will be end-of-life June 27, 2019. Updates for the 1.0 and 1.1 channels will no longer be offered after that date. See [.NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) to learn more about the .NET Core support lifecycle.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Notable Changes in 1.0.14

View file

@ -52,7 +52,7 @@ sudo apt-get install dotnet-sharedframework-microsoft.netcore.app-1.0.15
## Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -60,7 +60,7 @@ export PATH=$PATH:$HOME/dotnet
```
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.15.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.15.md
[dotnet-centos-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/160b5882-cc9f-4887-b641-b2049d0a1844/74e559657e6ca8f92319164506f8ad64/dotnet-centos-x64.1.0.15.tar.gz
[dotnet-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/171b6b96-9368-40f2-87a6-77a7a0f422e3/f706ac99ee323d1061611d4e84df742d/dotnet-osx-x64.1.0.15.pkg
@ -94,6 +94,6 @@ export PATH=$PATH:$HOME/dotnet
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.0.15-runtime-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.1.13-sdk-sha.txt
[linux-install]: https://dotnet.microsoft.com/download/dotnet/1.0
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-install]: https://dotnet.microsoft.com/download/dotnet-core/1.0
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://blogs.msdn.microsoft.com/dotnet/2019/03/12/net-core-march-2019/

View file

@ -24,7 +24,7 @@ There are no changes this month in OS version support status.
.NET Core 1.0 and 1.1, which entered "Maintenance" support status when 2.1 was declared LTS, will be end-of-life June 27, 2019. Updates for the 1.0 and 1.1 channels will no longer be offered after that date. See [.NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) to learn more about the .NET Core support lifecycle.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 1.0.15

View file

@ -52,7 +52,7 @@ sudo apt-get install dotnet-sharedframework-microsoft.netcore.app-1.0.16
## Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -60,7 +60,7 @@ export PATH=$PATH:$HOME/dotnet
```
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.16/1.0.16.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.16/1.0.16.md
[dotnet-centos-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b15f877f-1299-466b-805c-439c4b208229/6b0ebc8e907cd732744974e4f1f0b04f/dotnet-centos-x64.1.0.16.tar.gz
[dotnet-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/10f564b1-0578-4de0-9ed8-7890c60ccfb2/8dc054cf37402b2af50b11b1b9014130/dotnet-osx-x64.1.0.16.pkg
@ -95,6 +95,6 @@ export PATH=$PATH:$HOME/dotnet
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.0.16-runtime-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.1.14-sdk-sha.txt
[linux-install]: https://dotnet.microsoft.com/download/dotnet/1.0
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-install]: https://dotnet.microsoft.com/download/dotnet-core/1.0
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-may-2019/

View file

@ -24,7 +24,7 @@ Ubuntu 14.04 reached the [end of standard support April 2019](https://wiki.ubunt
.NET Core 1.0 and 1.1, which entered "Maintenance" support status when 2.1 was declared LTS, will be end-of-life June 27, 2019. Updates for the 1.0 and 1.1 channels will no longer be offered after that date. See [.NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) to learn more about the .NET Core support lifecycle.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 1.0.16

View file

@ -8,7 +8,7 @@ Today we are releasing updates to the .NET Core SDK and Visual Studio 2017 RC. I
Were getting close to the final release of .NET Core Tools and Visual Studio 2017 making it a great time to try out the migration tools on your projects. and give us feedback on the experience. If you want to try .NET Core Tools in Visual Studio 2017, visit [Visual Studio 2017 RC](https://www.visualstudio.com/vs/visual-studio-2017-rc/) to download. Youll need to choose the Web workload when installing.
If youre using another dev tool on Windows, macOS or Linux, go to the [.NET Core RC Download](https://github.com/dotnet/core/blob/main/release-notes/rc4-download.md) for all installation options.
If youre using another dev tool on Windows, macOS or Linux, go to the [.NET Core RC Download](https://github.com/dotnet/core/blob/master/release-notes/rc4-download.md) for all installation options.
Want a helping hand from Microsoft for migrating your .NET Core and ASP.NET Core projects from project.json to the new VS2017 csproj format? Please click [here](http://landinghub.visualstudio.com/migrate-dotnetcore).

View file

@ -1,4 +1,4 @@
# .NET Core December 2016 Update for .NET Core 1.0 manifest
# .NET Core December 2016 Update for .NET Core 1.0 mainfest
The following is a comprehensive manifest of packages released with December 2016 Update for .NET Core 1.0.

View file

@ -24,4 +24,4 @@ The fix list below includes a number of components under the .NET Core umbrella
### ASP.NET Core
* Please see the [ASP.NET Core release page](https://github.com/aspnet/home/releases/1.0.3) for details on fixes from ASP.NET Core, MVC, Entity Framework Core and others.
* Please see the [ASP.NET Core release page](https://github.com/aspnet/home/releases/1.0.3) for details on fixes from ASP.NET Core, MVC, Entitiy Framework Core and others.

View file

@ -2,11 +2,11 @@
## .NET Core May 2017 Update - SDK 1.0.4 Released 5/8/2017
This release includes critical security and reliability updates to improve the quality of .NET Core. The latest releases can be found on the [.NET Core download pages](https://dotnet.microsoft.com/download/dotnet/current/runtime) or from the following.
This release includes critical security and reliability updates to improve the quality of .NET Core. The latest releases can be found on the [.NET Core download pages](https://dotnet.microsoft.com/download/dotnet-core/current/runtime) or from the following.
* [.NET Core Runtime 1.0.5](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.5-download.md)
* [.NET Core Runtime 1.1.2](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.2-download.md)
* [.NET Core SDK 1.0.4](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.4-sdk-download.md)
* [.NET Core Runtime 1.0.5](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.5-download.md)
* [.NET Core Runtime 1.1.2](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.2-download.md)
* [.NET Core SDK 1.0.4](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.4-sdk-download.md)
The .NET Core SDK 1.0.4 includes .NET Core 1.0.5 and 1.1.2 runtimes so downloading the runtime packages separately is not needed when installing the SDK.

View file

@ -2,7 +2,7 @@
## .NET Core March 2017 Update - 1.0.4 Released 3/7/2017
[.NET Core 1.0.4](https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.4.md) was released today. Both releases include reliability updates to improve the quality of .NET Core. You can download the .NET Core Runtime releases via our [.NET Core Runtimes download page](https://dotnet.microsoft.com/download/dotnet/current/runtime). If you are looking for the .NET Core SDK, to get the latest tools, try the [.NET Core SDK download page](https://dotnet.microsoft.com/download).
[.NET Core 1.0.4](https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.4.md) was released today. Both releases include reliability updates to improve the quality of .NET Core. You can download the .NET Core Runtime releases via our [.NET Core Runtimes download page](https://dotnet.microsoft.com/download/dotnet-core/current/runtime). If you are looking for the .NET Core SDK, to get the latest tools, try the [.NET Core SDK download page](https://dotnet.microsoft.com/download).
Have a look at the [.NET announcement blog post](https://blogs.msdn.microsoft.com/dotnet/2017/03/07/announcing-net-core-tools-1-0/) for details and great context around the release. Visual Studio 2017 is also releasing today and you can read about it in their [announcement](https://blogs.msdn.microsoft.com/visualstudio/).

View file

@ -2,11 +2,11 @@
## .NET Core May 2017 Update - 1.0.5 Released 5/8/2017
This release includes critical security and reliability updates to improve the quality of .NET Core. The latest releases can be found on the [.NET Core download pages](https://dotnet.microsoft.com/download/dotnet/current/runtime) or from the following.
This release includes critical security and reliability updates to improve the quality of .NET Core. The latest releases can be found on the [.NET Core download pages](https://dotnet.microsoft.com/download/dotnet-core/current/runtime) or from the following.
* [.NET Core Runtime 1.0.5](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.5-download.md)
* [.NET Core Runtime 1.1.2](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.2-download.md)
* [.NET Core SDK 1.0.4](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.4-sdk-download.md)
* [.NET Core Runtime 1.0.5](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.5-download.md)
* [.NET Core Runtime 1.1.2](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.2-download.md)
* [.NET Core SDK 1.0.4](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.4-sdk-download.md)
The .NET Core SDK 1.0.4 includes .NET Core 1.0.5 and 1.1.2 runtimes so downloading the runtime packages separately is not needed when installing the SDK.

View file

@ -4,8 +4,8 @@
## Downloads
* [.NET Core 1.0.7](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.7-download.md)
* [.NET Core 1.1.4](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.4-download.md)
* [.NET Core 1.0.7](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.7-download.md)
* [.NET Core 1.1.4](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.4-download.md)
After installing the .NET Core SDK 1.1.4, the following command will show that you're running version `1.1.4` of the tools.

View file

@ -4,8 +4,8 @@
## Downloads
* [.NET Core 1.0.8](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.8.md)
* [.NET Core 1.1.5](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.5.md)
* [.NET Core 1.0.8](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.8.md)
* [.NET Core 1.1.5](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.5.md)
After installing the .NET Core SDK 1.1.5, the following command will show that you're running version `1.1.5` of the tools.

View file

@ -6,7 +6,7 @@ Microsoft is releasing security advisories for .NET Core and ASP.NET Core. Issue
* [Announcement](https://blogs.msdn.microsoft.com/)
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.5-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.5-download.md)
The .NET Core SDK 1.1.7 includes .NET Core 1.0.9 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 1.1.7, the following command will show that you're running version `1.1.7` of the tools.

View file

@ -1,21 +1,17 @@
# .NET Core 1.0 Release -- Out of support
# .NET Core 1.0 Releases
This release is out of support. See [.NET releases](../../releases.md) for in-support releases.
[.NET Core 1.0](https://devblogs.microsoft.com/dotnet/announcing-net-core-1-0/) was released on June 27th, 2016. The release was a collaborative effort by many [contributors](1.0.0-contributor-list.md). [.NET Core 1.0 reached end of life on June 27th, 2019](https://devblogs.microsoft.com/dotnet/net-core-1-0-and-1-1-will-reach-end-of-life-on-june-27-2019/). It was [supported by Microsoft](../../microsoft-support.md) on [multiple operating systems](1.0-supported-os.md).
Release notes and download information is provided for each update, in the follow table.
The following .NET Core 1.0 releases have been shipped. You must be on the latest patch release to be [supported by Microsoft](../../microsoft-support.md)
| Release Date | Description | |
| :-- | :-- | :--: |
| 2019/06/27 | Out of support | [.NET Core 1.0 end of life](https://devblogs.microsoft.com/dotnet/net-core-1-0-and-1-1-will-reach-end-of-life-on-june-27-2019/) |
| 2019/06/27 | Out of support | [details](https://github.com/dotnet/core/blob/master/microsoft-support.md#out-of-support-net-core-releases) |
| 2019/05/14 | 1.0.16 with SDK 1.1.14 | [release notes](1.0.16/1.0.16.md)/[download](1.0.16/1.0.16-download.md) |
| 2019/03/12 | 1.0.15 with SDK 1.1.13 | [release notes](1.0.15/1.0.15.md)/[download](1.0.15/1.0.15-download.md) |
| 2019/02/12 | 1.0.14 with SDK 1.1.12 | [release notes](1.0.14/1.0.14.md)/[download](1.0.14/1.0.14-download.md) |
| 2018/10/09 | 1.0.13 with SDK 1.1.11 | [release notes](1.0.13.md)/[download](../download-archives/1.0.13-download.md) |
| 2018/07/10 | 1.0.12 with SDK 1.1.10 | [release notes](1.0.12.md)/[download](../download-archives/1.0.12-download.md) |
| 2018/04/17 | 1.0.11 with SDK 1.1.9 | [release notes](1.0.11.md)/[download](../download-archives/1.0.11-download.md) |
| 2018/03/13 | 1.0.10 with SDK 1.1.8 | [release notes](1.0.10.md)/[download](../download-archives/1.0.10-download.md) |
| 2018/10/09 | 1.0.13 with SDK 1.1.11 | [release notes](1.0.13.md)/[download](../download-archives/1.0.13.md) |
| 2018/07/10 | 1.0.12 with SDK 1.1.10 | [release notes](1.0.12.md)/[download](../download-archives/1.0.12.md) |
| 2018/04/17 | 1.0.11 with SDK 1.1.9 | [release notes](1.0.11.md)/[download](../download-archives/1.0.11.md) |
| 2018/03/13 | 1.0.10 with SDK 1.1.8 | [release notes](1.0.10.md)/[download](../download-archives/1.0.10.md) |
| 2018/01/09 | 1.0.9 with SDK 1.1.7 | [release notes](1.0.9.md) |
| 2017/11/14 | 1.0.8 with SDK 1.1.5 | [release notes](1.0.8.md)/[download](../download-archives/1.0.8.md) |
| 2017/09/21 | 1.0.7 with SDK 1.1.4 | [release notes](1.0.7.md)/[download](../download-archives/1.0.7-download.md) |
@ -27,6 +23,6 @@ Release notes and download information is provided for each update, in the follo
| 2016/12/13 | 1.0.3 with SDK Preview 2 build 3156 | [release notes](1.0.3.md)/[download](../download-archives/1.0.3-preview2-download.md) |
| 2016/10/24 | 1.0.1 with SDK Preview 4 build 4233 | [release notes](1.0.1-release-notes.md)/[download](../download-archives/preview4-download.md) | | [1.0.1 Known Issues](1.0.1-known-issue
| 2016/10/17 | 1.0.2 with SDK Preview 2 build 3148 | [release notes](https://github.com/dotnet/core/releases/tag/1.0.2)/[download](../download-archives/1.0.2-preview2-download.md) |
| 2016/10/03 | 1.0.1 with SDK Preview 3 build 4056 | [release notes](https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.1-release-notes.md)/[download](../download-archives/preview3-download.md) |
| 2016/09/13 | 1.0.1 with SDK Preview 2 build 3131 and 3133 | [release notes](https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.1-release-notes.md)/[download](../download-archives/1.0.1-preview2-download.md) |
| 2016/06/27 | 1.0 with SDK Preview 2 build 3121 | [release notes](https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.0.md)/[download](../download-archives/1.0-preview2-download.md) | | | [Contributors](1.0.0-contributor-list
| 2016/10/03 | 1.0.1 with SDK Preview 3 build 4056 | [release notes](https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.1-release-notes.md)/[download](../download-archives/preview3-download.md) |
| 2016/09/13 | 1.0.1 with SDK Preview 2 build 3131 and 3133 | [release notes](https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.1-release-notes.md)/[download](../download-archives/1.0.1-preview2-download.md) |
| 2016/06/27 | 1.0 with SDK Preview 2 build 3121 | [release notes](https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.0.md)/[download](../download-archives/1.0-preview2-download.md) | | | [Contributors](1.0.0-contributor-list

View file

@ -114,7 +114,7 @@ If a Debian machine is set in a certain way it may cause the native host (`dotne
**Affects:** the native host
**Workaround:** make sure that all of the [native pre-requisites](../../Documentation/prereqs.md) are installed correctly. You can usually do this by running `apt-get` package manager.
**Workaround:** make sure that all of the [native pre-requisites](../Documentation/prereqs.md) are installed correctly. You can usually do this by running `apt-get` package manager.
## Uninstalling/reinstalling the PKG on OS X
OS X doesn't really have an uninstall capacity for PKGs like Windows has for

View file

@ -9,7 +9,7 @@ Again, this process should be done only in the event that required updates are a
3. Back up existing files to be updated
4. Copy new files to the target directory
## Download NuGet packages containing the updated files ##
## Download NuGet packages containing the udpated files ##
Download the updated CoreCLR and JIT NuGet package which correspond to your system. Links below will download the packages directly.
@ -31,7 +31,7 @@ JIT
## Rename and Extract ##
If your system doesn't recognize \*nupkg files as archives, rename them to \*.zip or \*.tar.gz and extract the `/runtimes` directory to a temporary location. For CoreCLR there will be `/native` and `/lib/netstandard1.0` directories under `/runtimes`. JIT will have only a `/native` directory. Here's an example of what the tmp location should look like when you are done if the Debian 8 packages were used. The list of binaries will be different for other distros.
If your system doesn't recognize *nupkg files as archives, rename them to *.zip or *.tar.gz and extract the `/runtimes` directory to a temporary location. For CoreCLR there will be `/native` and `/lib/netstandard1.0` directories under `/runtimes`. JIT will have only a `/native` directory. Here's an example of what the tmp location should look like when you are done if the Debian 8 packages were used. The list of binaries will be different for other distros.
```
~/tmp-update/
@ -51,7 +51,7 @@ If your system doesn't recognize \*nupkg files as archives, rename them to \*.zi
## Back up existing files ##
Since we'll be updating files in-place it's a good idea to make a backup. First you need to locate the `Microsoft.NETCoreApp/1.0.0` directory. If you used the installers for Ubuntu, 1.0.0 will be found under `/usr/share/dotnet/shared/Microsoft.NETCore.App/`. Other distro installations are still manual extraction from archives so it's wherever you copied the directory structure. Something like `/opt/dotnet/shared/Microsoft.NETCore.App` would not be uncommon.
Since we'll be updating files in-place it's a good idea to make a backup. First you need to locate the `Microsoft.NETCoreApp/1.0.0` directory. If you used the installers for Ubuntu, 1.0.0 will be found under `/usr/share/dotnet/shared/Microsoft.NETCore.App/`. Other distro installations are still manual extraction from archives so it's whereever you copied the directory structure. Something like `/opt/dotnet/shared/Microsoft.NETCore.App` would not be uncommon.
Now that `Microsoft.NETCore.App/1.0.0` has been located, the easiest way to make the backup will be to copy the entire directory which will be updated. `sudo rsync -r 1.0.0/ 1.0.0-backup/` will create the backup directory and copy the entire contents of the source directory.

View file

@ -26,7 +26,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0981"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.16/1.0.16.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.16/1.0.16.md",
"runtime": {
"version": "1.0.16",
"version-display": "1.0.16",
@ -244,7 +244,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0757"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.15/1.0.15.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.15/1.0.15.md",
"runtime": {
"version": "1.0.15",
"version-display": "1.0.15",
@ -455,7 +455,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0657"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.14/1.0.14.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.14/1.0.14.md",
"runtime": {
"version": "1.0.14",
"version-display": "1.0.14",
@ -678,7 +678,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8292"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.13.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.13.md",
"runtime": {
"version": "1.0.13",
"version-display": null,
@ -894,7 +894,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8356"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.12.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.12.md",
"runtime": {
"version": "1.0.12",
"version-display": null,
@ -1059,7 +1059,7 @@
"release-version": "1.0.11",
"security": false,
"cve-list": null,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.11.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.11.md",
"runtime": {
"version": "1.0.11",
"version-display": null,
@ -1203,7 +1203,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-0808"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.10.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.10.md",
"runtime": {
"version": "1.0.10",
"version-display": null,
@ -1343,7 +1343,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-0784"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.9.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.9.md",
"runtime": {
"version": "1.0.9",
"version-display": null,
@ -1473,7 +1473,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11883"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.8.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.8.md",
"runtime": {
"version": "1.0.8",
"version-display": null,
@ -1595,7 +1595,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8585"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.7.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.7.md",
"runtime": {
"version": "1.0.7",
"version-display": null,
@ -1730,7 +1730,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-0247"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.5.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.5.md",
"runtime": {
"version": "1.0.5",
"version-display": null,
@ -1865,7 +1865,7 @@
"release-version": "1.0.4",
"security": false,
"cve-list": null,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.4.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.4.md",
"runtime": {
"version": "1.0.4",
"version-display": null,
@ -2018,7 +2018,7 @@
"release-version": "1.0.3",
"security": false,
"cve-list": null,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.3.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.3.md",
"runtime": {
"version": "1.0.3",
"version-display": null,
@ -2228,7 +2228,7 @@
"release-version": "1.0.1",
"security": false,
"cve-list": null,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.1-release-notes.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.1-release-notes.md",
"runtime": {
"version": "1.0.1",
"version-display": null,
@ -2363,7 +2363,7 @@
"release-version": "1.0.0",
"security": false,
"cve-list": null,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.0/1.0.0.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.0/1.0.0.md",
"runtime": {
"version": "1.0.0",
"version-display": null,

View file

@ -14,7 +14,7 @@ This is expected behavior. See discussion in [coreclr issue #4318](https://githu
## .NET Core SDK Preview 3
We're releasing an update to the .NET Core SDK which is available directly in Visual Studio 2017 RC. Please see the [CLI Known Issues](https://github.com/dotnet/core/blob/main/cli/known-issues.md) document for important information about this release.
We're releasing an update to the .NET Core SDK which is available directly in Visual Studio 2017 RC. Please see the [CLI Known Issues](https://github.com/dotnet/core/blob/master/cli/known-issues.md) document for important information about this release.
Have a look at [Project Json To CSProj](https://github.com/dotnet/cli/blob/rel/1.0.0/Documentation/ProjectJsonToCSProj.md) for details on working with project.json and csproj-based projects.

View file

@ -2,7 +2,7 @@
## .NET Core 1.1.0 Preview 1 released 10/24/2016
.NET Core 1.1.0 Preview 1 and SDK 1.0.0 Preview2.1 are available for [download](https://github.com/dotnet/core/blob/main/release-notes/preview-download.md) and testing. Have a look at the [Announcement blog post](https://blogs.msdn.microsoft.com/dotnet/2016/10/25/announcing-net-core-1-1-preview-1/) for details and other good context for the release.
.NET Core 1.1.0 Preview 1 and SDK 1.0.0 Preview2.1 are available for [download](https://github.com/dotnet/core/blob/master/release-notes/preview-download.md) and testing. Have a look at the [Announcement blog post](https://blogs.msdn.microsoft.com/dotnet/2016/10/25/announcing-net-core-1-1-preview-1/) for details and other good context for the release.
Have a look at [.NET Core 1.1.0 Preview 1 Known Issues](1.1.0-preview1-known-issues.md) document as there are a few things to be aware of before installing.
@ -33,7 +33,7 @@ Changes to the .NET Core API surface are can be seen in the [1.0-1.1-api-diff](1
### ASP.NET Core
* Please see the [ASP.NET Core release page](https://github.com/aspnet/home/releases/1.1.0-preview1) for details on fixes from ASP.NET Core, MVC, Entity Framework Core and others.
* Please see the [ASP.NET Core release page](https://github.com/aspnet/home/releases/1.1.0-preview1) for details on fixes from ASP.NET Core, MVC, Entitiy Framework Core and others.
### Commits for 1.1 Preview 1
@ -41,5 +41,5 @@ Changes to the .NET Core API surface are can be seen in the [1.0-1.1-api-diff](1
### Contributors
The list of contributors can be found in the [1.1.0 Preview 1 Contributor List](https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.0-preview1-contibutor-list.md)
The list of contributors can be found in the [1.1.0 Preview 1 Contributor List](https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.0-preview1-contibutor-list.md)

View file

@ -2,7 +2,7 @@
## .NET Core March 2017 Update - 1.1.1 Released 3/7/2017
[.NET Core 1.1.1](https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.1.md) was released today. Both releases include reliability updates to improve the quality of .NET Core. You can download the .NET Core Runtime releases via our [.NET Core Runtimes download page](https://dotnet.microsoft.com/download/dotnet/current/runtime). If you are looking for the .NET Core SDK, to get the latest tools, try the [.NET Core SDK download page](https://dotnet.microsoft.com/download).
[.NET Core 1.1.1](https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.1.md) was released today. Both releases include reliability updates to improve the quality of .NET Core. You can download the .NET Core Runtime releases via our [.NET Core Runtimes download page](https://dotnet.microsoft.com/download/dotnet-core/current/runtime). If you are looking for the .NET Core SDK, to get the latest tools, try the [.NET Core SDK download page](https://dotnet.microsoft.com/download).
Have a look at the [.NET announcement blog post](https://blogs.msdn.microsoft.com/dotnet/2017/03/07/announcing-net-core-tools-1-0/) for details and great context around the release. Visual Studio 2017 is also releasing today and you can read about it in their [announcement](https://blogs.msdn.microsoft.com/visualstudio/).

View file

@ -2,7 +2,7 @@
.NET Core 1.1.10 is available for download and usage in your environment.
* [Download .NET Core](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.10-download.md)
* [Download .NET Core](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.10-download.md)
## Blog Round up
@ -22,9 +22,9 @@ The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have b
## .NET Core Lifecycle News
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
As .NET Core 2.1 has become LTS (announced in [August 2018 blog post](https://blogs.msdn.microsoft.com/dotnet/2018/08/21/net-core-august-2018-update)), 1.0 and 1.1 have entered their maintenance phase and will only get critical security fixes going forward till their end of support on June 27, 2019.
As .NET Core 2.1 has become LTS (anounced in [August 2018 blog post](https://blogs.msdn.microsoft.com/dotnet/2018/08/21/net-core-august-2018-update)), 1.0 and 1.1 have entered their maintenance phase and will only get critical security fixes going forward till their end of support on June 27, 2019.
## Notable Changes in 1.1.10

View file

@ -5,7 +5,7 @@
* .NET Core Runtime 1.1.11
* .NET Core SDK 1.1.12
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.11/1.1.11.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.11/1.1.11.md) for details about what is included in this update.
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |
@ -56,7 +56,7 @@ sudo apt-get install dotnet-sharedframework-microsoft.netcore.app-1.1.11
## Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -64,7 +64,7 @@ export PATH=$PATH:$HOME/dotnet
```
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.11.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.11.md
[dotnet-debian.9-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e31e3367-6b98-4d1b-9862-a9a63e1c7dc7/88a96cb53c7f01e39e8d3f6d7542921a/dotnet-debian.9-x64.1.1.11.tar.gz
[dotnet-ubuntu.18.04-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ad22fcf6-8e22-4a4a-9dc1-8b62196190b3/2a6cb070de5831a13cdff5ec43ceaade/dotnet-ubuntu.18.04-x64.1.1.11.tar.gz
@ -104,5 +104,5 @@ export PATH=$PATH:$HOME/dotnet
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.1.11-runtime-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.1.12-sdk-sha.txt
[linux-install]: https://dotnet.microsoft.com/download/dotnet/1.1
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-install]: https://dotnet.microsoft.com/download/dotnet-core/1.1
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md

View file

@ -22,7 +22,7 @@ There are no changes this month in OS version support status.
.NET Core 1.0 and 1.1, which entered "Maintenance" support status when 2.1 was declared LTS, will be end-of-life June 27, 2019. Updates for the 1.0 and 1.1 channels will no longer be offered after that date. See [.NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) to learn more about the .NET Core support lifecycle.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Notable Changes in 1.1.11

View file

@ -5,7 +5,7 @@
* .NET Core Runtime 1.1.12
* .NET Core SDK 1.1.13
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.12.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.12.md) for details about what is included in this update.
| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |
| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: |
@ -56,7 +56,7 @@ sudo apt-get install dotnet-sharedframework-microsoft.netcore.app-1.1.12
## Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -64,7 +64,7 @@ export PATH=$PATH:$HOME/dotnet
```
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.12.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.12.md
[dotnet-centos-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/60439f54-4dd4-4128-8c3e-aaa346e54f63/9eed8f5fae4265f32ab4c859bfcbe720/dotnet-centos-x64.1.1.12.tar.gz
[dotnet-debian.9-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/4e85cb6b-7a05-4766-b230-372df3ab80b0/6fa4bed7440dda5a10ee961d14c0def3/dotnet-debian.9-x64.1.1.12.tar.gz
@ -103,7 +103,7 @@ export PATH=$PATH:$HOME/dotnet
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.1.12-runtime-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.1.13-sdk-sha.txt
[linux-install]: https://dotnet.microsoft.com/download/dotnet/1.1
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-install]: https://dotnet.microsoft.com/download/dotnet-core/1.1
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://blogs.msdn.microsoft.com/dotnet/2019/03/12/net-core-march-2019/

View file

@ -24,7 +24,7 @@ There are no changes this month in OS version support status.
.NET Core 1.0 and 1.1, which entered "Maintenance" support status when 2.1 was declared LTS, will be end-of-life June 27, 2019. Updates for the 1.0 and 1.1 channels will no longer be offered after that date. See [.NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) to learn more about the .NET Core support lifecycle.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 1.1.12

View file

@ -56,7 +56,7 @@ sudo apt-get install dotnet-sharedframework-microsoft.netcore.app-1.1.13
## Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -64,7 +64,7 @@ export PATH=$PATH:$HOME/dotnet
```
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.13/1.1.13.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.13/1.1.13.md
[dotnet-centos-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/19659750-f708-4f35-99e8-f37e83755f95/971d83ccd6f1bb96b7da341bb4e1e2e4/dotnet-centos-x64.1.1.13.tar.gz
[dotnet-debian.9-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/70099599-b7e6-425f-a00c-005590a3a880/2bf8884be051ec30b6225116887d3d8e/dotnet-debian.9-x64.1.1.13.tar.gz
@ -104,7 +104,7 @@ export PATH=$PATH:$HOME/dotnet
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.1.13-runtime-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/1.1.14-sdk-sha.txt
[linux-install]: https://dotnet.microsoft.com/download/dotnet/1.1
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-install]: https://dotnet.microsoft.com/download/dotnet-core/1.1
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-may-2019/

View file

@ -24,7 +24,7 @@ Ubuntu 14.04 reached the [end of standard support April 2019](https://wiki.ubunt
.NET Core 1.0 and 1.1, which entered "Maintenance" support status when 2.1 was declared LTS, will be end-of-life June 27, 2019. Updates for the 1.0 and 1.1 channels will no longer be offered after that date. See [.NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) to learn more about the .NET Core support lifecycle.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 1.1.13

View file

@ -2,11 +2,11 @@
## .NET Core May 2017 Update - 1.1.2 Released 5/8/2017
This release includes critical security and reliability updates to improve the quality of .NET Core. The latest releases can be found on the [.NET Core download pages](https://dotnet.microsoft.com/download/dotnet/current/runtime) or from the following.
This release includes critical security and reliability updates to improve the quality of .NET Core. The latest releases can be found on the [.NET Core download pages](https://dotnet.microsoft.com/download/dotnet-core/current/runtime) or from the following.
* [.NET Core Runtime 1.0.5](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.5-download.md)
* [.NET Core Runtime 1.1.2](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.2-download.md)
* [.NET Core SDK 1.0.4](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.4-sdk-download.md)
* [.NET Core Runtime 1.0.5](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.5-download.md)
* [.NET Core Runtime 1.1.2](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.2-download.md)
* [.NET Core SDK 1.0.4](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.4-sdk-download.md)
The .NET Core SDK 1.0.4 includes .NET Core 1.0.5 and 1.1.2 runtimes so downloading the runtime packages separately is not needed when installing the SDK.

View file

@ -4,8 +4,8 @@
## Downloads
* [.NET Core 1.0.7](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.7-download.md)
* [.NET Core 1.1.4](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.4-download.md)
* [.NET Core 1.0.7](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.7-download.md)
* [.NET Core 1.1.4](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.4-download.md)
After installing the .NET Core SDK 1.1.4, the following command will show that you're running version `1.1.4` of the tools.

View file

@ -4,8 +4,8 @@
## Downloads
* [.NET Core 1.0.8](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.0.8.md)
* [.NET Core 1.1.5](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.5.md)
* [.NET Core 1.0.8](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.0.8.md)
* [.NET Core 1.1.5](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.5.md)
After installing the .NET Core SDK 1.1.5, the following command will show that you're running version `1.1.5` of the tools.

View file

@ -6,7 +6,7 @@ Microsoft is releasing security advisories for .NET Core and ASP.NET Core. Issue
* [Announcement](https://blogs.msdn.microsoft.com/)
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.5-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.5-download.md)
The .NET Core SDK 1.1.7 includes .NET Core 1.1.6 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 1.1.7, the following command will show that you're running version `1.1.7` of the tools.

View file

@ -5,7 +5,7 @@ Microsoft is releasing security advisories for .NET Core and ASP.NET Core. Issue
.NET Core 1.1.7 and SDK 1.1.8 are available for download and usage in your environment.
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.7-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.7-download.md)
The .NET Core SDK 1.1.8 includes .NET Core 1.1.7 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 1.1.8, the following command will show that you're running version `1.1.8` of the tools.

View file

@ -5,7 +5,7 @@ Microsoft is releasing updates for .NET Core and ASP.NET Core. Issues addressed
.NET Core 1.1.8 and SDK 1.1.9 are available for download and usage in your environment.
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.8-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.8-download.md)
The .NET Core SDK 1.1.9 includes .NET Core 1.1.8 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 1.1.9, the following command will show that you're running version `1.1.9` of the tools.

View file

@ -2,7 +2,7 @@
.NET Core 1.1.9 is available for download and usage in your environment.
* [Download .NET Core](https://github.com/dotnet/core/blob/main/release-notes/download-archives/1.1.9-download.md)
* [Download .NET Core](https://github.com/dotnet/core/blob/master/release-notes/download-archives/1.1.9-download.md)
## Blog Round up
@ -22,7 +22,7 @@ The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have b
## .NET Core Lifecycle News
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
.NET Core 2.1 is expected to be declared LTS in the next few months. It is recommended that 2.1 be the default target for projects. .NET Core 2.0 will go out of support October 2018.

View file

@ -49,4 +49,4 @@ The great work included in .NET Core 1.1 can be seen in the [1.1 commits](1.1-co
### Contributors
The list of contributors can be found in the [1.1 Contributor List](https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1-contributor-list.md).
The list of contributors can be found in the [1.1 Contributor List](https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1-contributor-list.md).

View file

@ -1,14 +1,10 @@
# .NET Core 1.1 Releases -- Out of support
# .NET Core 1.1 Releases
This release is out of support. See [.NET releases](../../releases.md) for in-support releases.
[.NET Core 1.1](https://devblogs.microsoft.com/dotnet/announcing-net-core-1-1/) was released on November 16th, 2016. The release was a collaborative effort by many [contributors](1.1-contributor-list.md). [.NET Core 1.1 reached end of life on June 27th, 2019](https://devblogs.microsoft.com/dotnet/net-core-1-0-and-1-1-will-reach-end-of-life-on-june-27-2019/). It was [supported by Microsoft](../../microsoft-support.md) on [multiple operating systems](1.1-supported-os.md).
Release notes and download information is provided for each update, in the follow table.
The following .NET Core 1.1 releases have been shipped. You must be on the latest patch release to be [supported by Microsoft](../../microsoft-support.md)
| Release Date | Description | Commits | Known Issues | Contributors |
| :-- | :-- | :--: | :--: | :--: |
| 2019/06/27 | [.NET Core 1.1 end of life](https://devblogs.microsoft.com/dotnet/net-core-1-0-and-1-1-will-reach-end-of-life-on-june-27-2019/) | - | - | - |
| 2019/06/27 | Out of support - see [details](https://github.com/dotnet/core/blob/master/microsoft-support.md#out-of-support-net-core-releases) | - | - | - |
| 2019/05/14 | 1.1.13 with SDK 1.1.14 ([release notes](1.1.13/1.1.13.md) / [download](1.1.13/1.1.13-download.md)) | see release notes | - | - |
| 2019/03/12 | 1.1.12 with SDK 1.1.13 ([release notes](1.1.12/1.1.12.md) / [download](1.1.12/1.1.12-download.md)) | see release notes | - | - |
| 2019/02/12 | 1.1.11 with SDK 1.1.12 ([release notes](1.1.11/1.1.11.md) / [download](1.1.11/1.1.11-download.md)) | see release notes | - | - |

View file

@ -26,7 +26,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0981"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.13/1.1.13.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.13/1.1.13.md",
"runtime": {
"version": "1.1.13",
"version-display": "1.1.13",
@ -274,7 +274,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0757"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.12/1.1.12.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.12/1.1.12.md",
"runtime": {
"version": "1.1.12",
"version-display": "1.1.12",
@ -515,7 +515,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-0657"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.11/1.1.11.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.11/1.1.11.md",
"runtime": {
"version": "1.1.11",
"version-display": "1.1.11",
@ -756,7 +756,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8292"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.10.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.10.md",
"runtime": {
"version": "1.1.10",
"version-display": "1.1.10",
@ -1015,7 +1015,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8356"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.9.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.9.md",
"runtime": {
"version": "1.1.9",
"version-display": "1.1.9",
@ -1235,7 +1235,7 @@
"release-version": "1.1.8",
"security": false,
"cve-list": null,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.8.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.8.md",
"runtime": {
"version": "1.1.8",
"version-display": "1.1.8",
@ -1410,7 +1410,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-0808"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.7.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.7.md",
"runtime": {
"version": "1.1.7",
"version-display": "1.1.7",
@ -1583,7 +1583,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-0784"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.6.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.6.md",
"runtime": {
"version": "1.1.6",
"version-display": "1.1.6",
@ -1890,7 +1890,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-8585"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.4.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.4.md",
"runtime": {
"version": "1.1.4",
"version-display": "1.1.4",
@ -2031,7 +2031,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-0247"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.2.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.2.md",
"runtime": {
"version": "1.1.2",
"version-display": "1.1.2",
@ -2202,7 +2202,7 @@
"release-version": "1.1.1",
"security": false,
"cve-list": null,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.1.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.1.md",
"runtime": {
"version": "1.1.1",
"version-display": "1.1.1",
@ -2373,7 +2373,7 @@
"release-version": "1.1.0",
"security": false,
"cve-list": null,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/1.1/1.1.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.md",
"runtime": {
"version": "1.1.0",
"version-display": "1.1.0",

View file

@ -44,7 +44,7 @@ SUSE Enterprise Linux (SLES) | 12 SP2+ | x64 | [SU
## Out of support OS versions
Support for the following versions was ended by the distribution owners and are [not supported by .NET Core 2](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md).
Support for the following versions was ended by the distribution owners and are [not supported by .NET Core 2](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md).
OS | Version | End of Life | Supported Version
-----------|----------|-------------|------------------

View file

@ -2,7 +2,7 @@
## .NET Core 2.0.0 Preview 1 released 5/10/2017
.NET Core 2.0.0 Preview 1 and SDK 2.0.0 Preview 1 are available for download and testing. These can be found on [.NET Core Preview 1](https://dotnet.microsoft.com/download/dotnet) or the [Preview 1 download page](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.0-preview1-download.md).
.NET Core 2.0.0 Preview 1 and SDK 2.0.0 Preview 1 are available for download and testing. These can be found on [.NET Core Preview 1](https://dotnet.microsoft.com/download/dotnet-core) or the [Preview 1 download page](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.0-preview1-download.md).
The .NET Core SDK 2.0.0-Preview 1 includes .NET Core 2.0.0-Preview 1 runtime so downloading the runtime packages separately is not needed when installing the SDK.
@ -22,7 +22,7 @@ You can visit the following locations to learn more about .NET Standard.
### Linux Binaries
The 'generic' Linux binary archives are new for the 2.0 release. This package contains binaries which are compatible with [Linux distros and versions supported by .NET Core](https://github.com/dotnet/core/blob/main/roadmap.md). This will also enable you to experiment with Distros not present on the supported list but are libc compatible.
The 'generic' Linux binary archives are new for the 2.0 release. This package contains binaries which are compatible with [Linux distros and versions supported by .NET Core](https://github.com/dotnet/core/blob/master/roadmap.md). This will also enable you to experiment with Distros not present on the supported list but are libc compatible.
### OpenSSL is no longer needed on OSX

View file

@ -18,13 +18,13 @@ When referencing a NETStandard2.0 library from a .NETFramework application you m
## .NET Core 2.0 and Visual Studio 2017 15.3 Preview
<https://github.com/aspnet/Tooling/blob/master/known-issues-vs2017-preview.md>
[https://github.com/aspnet/Tooling/blob/master/known-issues-vs2017-preview.md](https://github.com/aspnet/Tooling/blob/master/known-issues-vs2017-preview.md)
## Preview 1 issues which have been resolved
### Running 1.0 first run experience after installing 2.0 CLI
<https://github.com/dotnet/cli/issues/6550>
[https://github.com/dotnet/cli/issues/6550](https://github.com/dotnet/cli/issues/6550)
This fails because the 1.0 first run shells out two dotnet commands to do dotnet new and dotnet restore. Because this is a simple shell out, the 2.0 CLI ends up being picked up to execute the commands. However, in the 1.0 CLI, we invoke dotnet new passing f netcoreapp1.0 and netcoreapp1.1 and the 2.0 CLI no longer carries these templates, which causes the command and the whole first run to fail.

View file

@ -2,8 +2,8 @@
.NET Core 2.0.0 Preview 2 and SDK 2.0.0 Preview 2 are available for download and testing.
* [Getting Started](https://dotnet.microsoft.com/download/dotnet)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.0-preview2-download.md)
* [Getting Started](https://dotnet.microsoft.com/download/dotnet-core)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.0-preview2-download.md)
The .NET Core SDK 2.0.0 Preview 2 includes .NET Core 2.0.0 Preview 2 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 2.0.0 Preview 2, the following command will show that you're running version `2.0.0-preview2-006497` of the tools.

View file

@ -5,7 +5,7 @@
.NET Core 2.0.0 and SDK 2.0.0 are available for download and testing.
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.0-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.0-download.md)
The blog roundup
@ -62,7 +62,7 @@ Because the Runtime Package Store contains crossgen'ed files for a specific rele
### Support
.NET Core 2.0 is being released as a 'current' release. See the [.NET Core support document](https://github.com/dotnet/core/blob/main/microsoft-support.md) for details on release types. We have also posted [OS Lifecycle Support Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) detailing OS version policies.
.NET Core 2.0 is being released as a 'current' release. See the [.NET Core support document](https://github.com/dotnet/core/blob/master/microsoft-support.md) for details on release types. We have also posted [OS Lifecycle Support Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) detailing OS version policies.
### WCF

View file

@ -4,7 +4,7 @@
* [Announcement](https://blogs.msdn.microsoft.com/dotnet/2017/11/14/net-core-november-2017-update/)
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.3.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.3.md)
The .NET Core SDK 2.0.3 includes .NET Core 2.0.3 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 2.0.3, the following command will show that you're running version `2.0.3` of the tools.

View file

@ -3,7 +3,7 @@
.NET Core 2.0.4 and SDK 2.1.3 are available for download and usage in your environment.
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.4-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.4-download.md)
The .NET Core SDK 2.1.3 includes .NET Core 2.0.4 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 2.1.3, the following command will show that you're running version `2.0.4` of the tools.

View file

@ -6,7 +6,7 @@ Microsoft is releasing security advisories for .NET Core and ASP.NET Core. Issue
* [Announcement](https://blogs.msdn.microsoft.com/dotnet/2018/01/09/net-core-january-2018-update/)
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.5-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.5-download.md)
The .NET Core SDK 2.1.4 includes .NET Core 2.0.5 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 2.1.4, the following command will show that you're running version `2.1.4` of the tools.

View file

@ -5,7 +5,7 @@ Microsoft is releasing security advisories for .NET Core and ASP.NET Core. Issue
.NET Core 2.0.6 and SDK 2.1.101 are available for download and usage in your environment.
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.6-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.6-download.md)
The .NET Core SDK 2.1.101 includes .NET Core 2.0.6 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 2.1.101, the following command will show that you're running version `2.1.101` of the tools.

View file

@ -5,7 +5,7 @@ Microsoft is releasing updates for .NET Core and ASP.NET Core. Issues addressed
.NET Core 2.0.7 and SDK 2.1.105 are available for download and usage in your environment.
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.7-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.7-download.md)
The .NET Core SDK 2.1.105 includes .NET Core 2.0.7 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 2.1.105, the following command will show that you're running version `2.1.105` of the tools.

View file

@ -2,7 +2,7 @@
.NET Core 2.0.9 is available for download and usage in your environment.
* [Download .NET Core](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.0.9-download.md)
* [Download .NET Core](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.0.9-download.md)
## Blog Round up
@ -24,7 +24,7 @@ The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have b
## .NET Core Lifecycle News
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
.NET Core 2.1 is expected to be declared LTS in the next few months. It is recommended that 2.1 be the default target for projects. .NET Core 2.0 will go out of support October 2018.

View file

@ -5,7 +5,7 @@ Microsoft is releasing updates for .NET Core SDK and ASP.NET Core. This release
.NET Core 2.0.7 (previously released) and SDK 2.1.200 are available for download and usage in your environment.
* [Getting Started](https://dotnet.microsoft.com/download)
* [Downloads](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.1.200-sdk-download.md)
* [Downloads](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.1.200-sdk-download.md)
The .NET Core SDK 2.1.200 includes .NET Core 2.0.7 Runtime so downloading the runtime packages separately is not needed when installing the SDK. After installing the .NET Core SDK 2.1.200, the following command will show that you're running version `2.1.200` of the tools.

View file

@ -1,14 +1,10 @@
# .NET Core 2.0 Release -- Out of support
# .NET Core 2.0 Releases - Out of support
This release is out of support. See [.NET releases](../../releases.md) for in-support releases.
[.NET Core 2.0](https://devblogs.microsoft.com/dotnet/announcing-net-core-2-0/) was released on December 4th, 2018. The release was a collaborative effort by many [contributors](2.0.0-contributor.md). [.NET Core 2.0 reached end of life on October 1st, 2018](https://devblogs.microsoft.com/dotnet/net-core-2-0-will-reach-end-of-life-on-september-1-2018/). It was [supported by Microsoft](../../microsoft-support.md) on [multiple operating systems](2.0-supported-os.md).
Release notes and download information is provided for each update, in the follow table.
The following .NET Core 2.0 releases have been shipped.
| Release Date | Description | | |
| :-- | :-- | :--: | :-- |
| 2018/10/01 | Out of support | [.NET Core 2.0 end of life](https://devblogs.microsoft.com/dotnet/net-core-2-0-will-reach-end-of-life-on-september-1-2018/) | |
| 2018/10/01 | Out of support | [details](https://github.com/dotnet/core/blob/master/microsoft-support.md#out-of-support-net-core-releases) | |
| 2018/07/10 | 2.0.9 with SDK 2.1.202 | [release notes](2.0.9.md)/[download](../download-archives/2.0.9-download.md) | |
| 2018/05/08 | 2.0.7 with SDK 2.1.200 | [release notes](https://github.com/dotnet/cli/releases/tag/v2.1.200)/[download](../download-archives/2.1.200-sdk-download.md) |
| 2018/04/17 | 2.0.7 with SDK 2.1.105 | [release notes](2.0.7.md)/[download](../download-archives/2.0.7-download.md) | |

View file

@ -22,7 +22,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8356"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/2.0/2.0.9.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/2.0/2.0.9.md",
"runtime": {
"version": "2.0.9",
"version-display": "2.0.9",
@ -280,7 +280,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-0765"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/2.0/2.1.200-sdk.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/2.0/2.1.200-sdk.md",
"runtime": {
"version": "2.0.8",
"version-display": "2.0.8",
@ -458,7 +458,7 @@
"release-version": "2.0.7",
"security": false,
"cve-list": null,
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/2.0/2.0.7.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/2.0/2.0.7.md",
"runtime": {
"version": "2.0.7",
"version-display": "2.0.7",
@ -870,7 +870,7 @@
"cve-url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-0808"
}
],
"release-notes": "https://github.com/dotnet/core/blob/main/release-notes/2.0/2.0.6.md",
"release-notes": "https://github.com/dotnet/core/blob/master/release-notes/2.0/2.0.6.md",
"runtime": {
"version": "2.0.6",
"version-display": null,

View file

@ -30,14 +30,15 @@ Mac OS X (macOS) | 10.12+ | x64 |
OS | Version | Architectures | Notes
------------------------------|-------------------------------|----------------|-----
Red Hat Enterprise Linux | 6 | x64 | [Microsoft support policy](https://www.microsoft.com/net/support/policy)
Red Hat Enterprise Linux <br> CentOS <br> Oracle Linux | 7+ | x64 | [Red Hat support policy](https://access.redhat.com/support/policy/updates/errata/) <br> [CentOS lifecycle](https://wiki.centos.org/FAQ/General#head-fe8a0be91ee3e7dea812e8694491e1dde5b75e6d) <br> [Oracle Linux lifecycle](https://www.oracle.com/us/support/library/elsp-lifetime-069338.pdf)
Fedora | 33+ | x64 | [Fedora lifecycle](https://fedoraproject.org/wiki/End_of_life)
Fedora | 31+ | x64 | [Fedora lifecycle](https://fedoraproject.org/wiki/End_of_life)
Debian | 9+ | x64, ARM32 | [Debian lifecycle](https://wiki.debian.org/DebianReleases)
Ubuntu | 21.04, 20.04, 18.04, 16.04 | x64, ARM32\* | [Ubuntu lifecycle](https://wiki.ubuntu.com/Releases)
Ubuntu | 20.10, 20.04, 18.04, 16.04 | x64, ARM32\* | [Ubuntu lifecycle](https://wiki.ubuntu.com/Releases)
Linux Mint | 18, 17 | x64 | [Linux Mint end of life announcements](https://forums.linuxmint.com/search.php?keywords=%22end+of+life%22&terms=all&author=&sc=1&sf=titleonly&sr=posts&sk=t&sd=d&st=0&ch=300&t=0&submit=Search)
openSUSE | 15+ | x64 | [OpenSUSE lifecycle](https://en.opensuse.org/Lifetime)
SUSE Enterprise Linux (SLES) | 12 SP2+ | x64 | [SUSE lifecycle](https://www.suse.com/lifecycle/)
Alpine Linux | 3.10, 3.11, 3.12 | x64 | [Alpine lifecycle](https://wiki.alpinelinux.org/wiki/Alpine_Linux:Releases)
Alpine Linux | 3.10+ | x64 | [Alpine lifecycle](https://wiki.alpinelinux.org/wiki/Alpine_Linux:Releases)
* **Bold numbers** indicate additions in this release.
* '+' indicates the minimum supported version.
@ -46,13 +47,11 @@ Alpine Linux | 3.10, 3.11, 3.12 | x64
## Out of support OS versions
Support for the following versions was ended by the distribution owners and are [no longer supported by .NET Core 2.1](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md).
Support for the following versions was ended by the distribution owners and are [no longer supported by .NET Core 2.1](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md).
|OS | Version | End of Life |
|-----------|----------|-------------|
| RHEL | 6 | [11/30/2020](https://access.redhat.com/support/policy/updates/errata) |
| Windows 10| 1703 | [10/08/2019](https://support.microsoft.com/help/13853/windows-lifecycle-fact-sheet) |
| Fedora | 31 | [24/11/2020](https://lists.fedoraproject.org/archives/list/announce@lists.fedoraproject.org/thread/NU5AENRUFG4XK5D34SJN5FZPLYMZF6ZQ/) |
| Fedora | 30 | [26/05/2020](https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org/message/7UTUFY7WEL6RTFRXJB75XAFH44Y6RPUC/) |
| Fedora | 29 | [11/26/2019](https://lists.fedoraproject.org/archives/list/announce@lists.fedoraproject.org/thread/BB4ECDFSJ66AQU63ZKNYROEFMMLSLFUK/) |
| Fedora | 28 | [05/28/2019](https://fedoramagazine.org/fedora-28-end-of-life/) |

View file

@ -2,7 +2,7 @@
.NET Core 2.1.0 Preview 1 is available for download and usage in your environment.
* [Downloads](https://dotnet.microsoft.com/download/dotnet/2.1)
* [Downloads](https://dotnet.microsoft.com/download/dotnet-core/2.1)
## Blog Round up

View file

@ -1,6 +1,6 @@
# .NET Core 2.1 - May 30, 2018
.NET Core 2.1.0 is available for download and usage in your environment. Have a look at the [Known Issues](2.1.0-known-issues.md) document as there are a few things to be aware of before installing. A [changelist](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.0-commit.md) for the entire 2.1 development cycle is also available. This does not include ASP.NET Core or Entity Framework Core.
.NET Core 2.1.0 is available for download and usage in your environment. Have a look at the [Known Issues](2.1.0-known-issues.md) document as there are a few things to be aware of before installing. A [changelist](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.0-commit.md) for the entire 2.1 development cycle is also available. This does not include ASP.NET Core or Entity Framework Core.
* [Download .NET Core](https://dotnet.microsoft.com/download)
@ -93,4 +93,4 @@ On Linux and macOS, you can only configure `HttpClient` on a process-basis. On L
### API changes
See all changes from 2.0 in the [detailed API diff](https://github.com/dotnet/core/blob/main/release-notes/2.1/api-diff/2.0-vs-2.1.md) to help determine if any will impact existing projects built on .NET Core 2.0.
See all changes from 2.0 in the [detailed API diff](https://github.com/dotnet/core/blob/master/release-notes/2.1/api-diff/2.0-vs-2.1.md) to help determine if any will impact existing projects built on .NET Core 2.0.

View file

@ -1,8 +1,8 @@
# .NET Core June 2018 Update - June 21, 2018
.NET Core 2.1.1 is available for download and usage in your environment. Have a look at the [Known Issues](2.1.1-known-issues.md) document as there are a few things to be aware of before installing. A [changelist](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.1-commit.md) for the entire 2.1 development cycle is also available. This does not include ASP.NET Core or Entity Framework Core.
.NET Core 2.1.1 is available for download and usage in your environment. Have a look at the [Known Issues](2.1.1-known-issues.md) document as there are a few things to be aware of before installing. A [changelist](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.1-commit.md) for the entire 2.1 development cycle is also available. This does not include ASP.NET Core or Entity Framework Core.
* [Download .NET Core](https://github.com/dotnet/core/blob/main/release-notes/download-archives/2.1.1-download.md)
* [Download .NET Core](https://github.com/dotnet/core/blob/master/release-notes/download-archives/2.1.1-download.md)
## Blog Round up
@ -29,14 +29,14 @@ It was announced in the [2.1 blog post](https://blogs.msdn.microsoft.com/dotnet/
[.NET Core 2.0](https://blogs.msdn.microsoft.com/dotnet/2017/08/14/announcing-net-core-2-0/) was released on August 14, 2017. As a non-LTS release, it is supported for 3 months after the next release.
[.NET Core 2.1](https://blogs.msdn.microsoft.com/dotnet/2018/05/30/announcing-net-core-2-1/) was released on May 30th, 2018. As a result, .NET Core 2.0 will be supported until September 1, 2018.
Microsoft has a published [support policy](https://github.com/dotnet/core/blob/main/microsoft-support.md) for .NET Core. It includes policies for two release types: LTS and Current. .NET Core 2.0 is a Current release.
Microsoft has a published [support policy](https://github.com/dotnet/core/blob/master/microsoft-support.md) for .NET Core. It includes policies for two release types: LTS and Current. .NET Core 2.0 is a Current release.
* LTS releases include features and components that have been stabilized, requiring few updates over a longer support release lifetime. These releases are a good choice for hosting applications that you do not intend to update often.
* Current releases include features and components that are new and that may undergo future change based on feedback. These releases are a good choice for applications in active development, giving you access to the latest features and improvements. You need to upgrade to later .NET Core releases more often to stay in support.
Both types of releases receive critical fixes throughout their lifecycle, for security, reliability, or to add support for new operating system versions. You must stay up-to-date with the latest patches to qualify for support.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
After that time, .NET Core patch updates will no longer include updated packages for .NET Core 2.0.

View file

@ -6,7 +6,7 @@
* ASP.NET Core 2.1.10
* .NET Core SDK
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.10/2.1.10.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.10/2.1.10.md) for details about what is included in this update.
**Note:** If you are a Visual Studio user, there are MSBuild version requirements so use only the .NET Core SDK supported for each Visual Studio version. If you use other development environments, we recommend using the latest SDK release.
@ -49,7 +49,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -82,7 +82,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -107,7 +107,7 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.10/2.1.10.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.10/2.1.10.md
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b3a0363f-4ea6-43c1-b5bf-f15e1b88b428/eda34aff06bd3bfd53cf156427ccd3a3/dotnet-runtime-2.1.10-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/23bde323-de7b-4176-b120-6b5d242b49dd/a7a88339ce8c9708b7654f373f484910/dotnet-runtime-2.1.10-linux-arm64.tar.gz
@ -156,6 +156,6 @@ This will install the ASP.NET Core Module for IIS.
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.506-sdk-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/

View file

@ -54,7 +54,7 @@ There are no changes this month in OS version support status.
.NET Core 1.0 and 1.1, which entered "Maintenance" support status when 2.1 was declared LTS, will be end-of-life June 27, 2019. Updates for the 1.0 and 1.1 channels will no longer be offered after that date. See [.NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) to learn more about the .NET Core support lifecycle.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 2.1.10
@ -144,7 +144,7 @@ runtime.win-x86.microsoft.netcore.dotnethostresolver | 2.1.10
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.10/2.1.10.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.10/2.1.10.md
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b3a0363f-4ea6-43c1-b5bf-f15e1b88b428/eda34aff06bd3bfd53cf156427ccd3a3/dotnet-runtime-2.1.10-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/23bde323-de7b-4176-b120-6b5d242b49dd/a7a88339ce8c9708b7654f373f484910/dotnet-runtime-2.1.10-linux-arm64.tar.gz

View file

@ -49,7 +49,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -82,7 +82,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -107,7 +107,7 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.11/2.1.11.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.11/2.1.11.md
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7e34e5f5-e817-4ba4-9bfe-03f341e2a807/5779a613184dd09596f71681064cdaa8/dotnet-runtime-2.1.11-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f3238746-7a47-407f-9d30-20de4bfd93e2/0c26aad99851325fd5240909f120614d/dotnet-runtime-2.1.11-linux-arm64.tar.gz
@ -153,6 +153,6 @@ This will install the ASP.NET Core Module for IIS.
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.507-sdk-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-may-2019/

View file

@ -54,7 +54,7 @@ Ubuntu 14.04 reached the [end of standard support April 2019](https://wiki.ubunt
.NET Core 1.0 and 1.1, which entered "Maintenance" support status when 2.1 was declared LTS, will be end-of-life June 27, 2019. Updates for the 1.0 and 1.1 channels will no longer be offered after that date. See [.NET Core Support Policy](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) to learn more about the .NET Core support lifecycle.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 2.1.11
@ -215,7 +215,7 @@ System.Memory|4.5.3
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.11/2.1.11.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.11/2.1.11.md
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/7e34e5f5-e817-4ba4-9bfe-03f341e2a807/5779a613184dd09596f71681064cdaa8/dotnet-runtime-2.1.11-linux-arm.tar.gz
[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f3238746-7a47-407f-9d30-20de4bfd93e2/0c26aad99851325fd5240909f120614d/dotnet-runtime-2.1.11-linux-arm64.tar.gz

View file

@ -6,7 +6,7 @@
* ASP.NET Core 2.1.12
* .NET Core SDK 2.1.508
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.12/2.1.12.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.12/2.1.12.md) for details about what is included in this update.
**NOTE:** If you are a Visual Studio user, there are MSBuild version requirements so use only the .NET Core SDK supported for each Visual Studio version. If you use other development environments, we recommend using the latest SDK release.
@ -50,7 +50,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -83,7 +83,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -108,7 +108,7 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.12/2.1.12.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.12/2.1.12.md
[//]: # ( Runtime 2.1.12)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f759670e-1f8d-4f1a-8eb7-58b95f94c68c/69eca04ca138dc6c3caa160bd1b891d1/dotnet-runtime-2.1.12-linux-arm.tar.gz
@ -162,6 +162,6 @@ This will install the ASP.NET Core Module for IIS.
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.701-sdk-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/

View file

@ -59,7 +59,7 @@ The images are expected to be available later today.
Debian 10 GA finally released and we expect .NET Core availability on it later this month.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 2.1.12
@ -158,7 +158,7 @@ runtime.win-x86.Microsoft.NETCore.DotNetHostResolver|2.1.12
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.12/2.1.12.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.12/2.1.12.md
[//]: # ( Runtime 2.1.12)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f759670e-1f8d-4f1a-8eb7-58b95f94c68c/69eca04ca138dc6c3caa160bd1b891d1/dotnet-runtime-2.1.12-linux-arm.tar.gz

View file

@ -6,7 +6,7 @@ This .NET Core SDK release is the version which shipped with Visual Studio 2019.
* .NET Core Runtime 2.1.12
* ASP.NET Core 2.1.12
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.12/2.1.12.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.12/2.1.12.md) for details about what is included in this update.
**NOTE:** If you are a Visual Studio user, there are MSBuild version requirements so use only the .NET Core SDK supported for each Visual Studio version. If you use other development environments, we recommend using the latest SDK release.
@ -50,7 +50,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -83,7 +83,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -108,7 +108,7 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.12/2.1.12.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.12/2.1.12.md
[//]: # ( Runtime 2.1.12)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f759670e-1f8d-4f1a-8eb7-58b95f94c68c/69eca04ca138dc6c3caa160bd1b891d1/dotnet-runtime-2.1.12-linux-arm.tar.gz
@ -162,6 +162,6 @@ This will install the ASP.NET Core Module for IIS.
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.701-sdk-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/

View file

@ -6,7 +6,7 @@ This .NET Core SDK release is the version which shipped with Visual Studio 2019.
* .NET Core Runtime 2.1.12
* ASP.NET Core 2.1.12
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.12/2.1.12.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.12/2.1.12.md) for details about what is included in this update.
**NOTE:** If you are a Visual Studio user, there are MSBuild version requirements so use only the .NET Core SDK supported for each Visual Studio version. If you use other development environments, we recommend using the latest SDK release.
@ -49,7 +49,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -82,7 +82,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -107,7 +107,7 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.12/2.1.12.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.12/2.1.12.md
[//]: # ( Runtime 2.1.12)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f759670e-1f8d-4f1a-8eb7-58b95f94c68c/69eca04ca138dc6c3caa160bd1b891d1/dotnet-runtime-2.1.12-linux-arm.tar.gz
@ -161,6 +161,6 @@ This will install the ASP.NET Core Module for IIS.
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.701-sdk-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/

View file

@ -6,7 +6,7 @@ This .NET Core SDK release is the version which shipped with Visual Studio 2019.
* .NET Core Runtime 2.1.12
* ASP.NET Core 2.1.12
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.12/2.1.12.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.12/2.1.12.md) for details about what is included in this update.
**NOTE:** If you are a Visual Studio user, there are MSBuild version requirements so use only the .NET Core SDK supported for each Visual Studio version. If you use other development environments, we recommend using the latest SDK release.
@ -48,7 +48,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -81,7 +81,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -106,7 +106,7 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.12/2.1.12.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.12/2.1.12.md
[//]: # ( Runtime 2.1.12)
[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f759670e-1f8d-4f1a-8eb7-58b95f94c68c/69eca04ca138dc6c3caa160bd1b891d1/dotnet-runtime-2.1.12-linux-arm.tar.gz
@ -150,6 +150,6 @@ This will install the ASP.NET Core Module for IIS.
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.801-sdk-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/

View file

@ -6,7 +6,7 @@
* ASP.NET Core 2.1.13
* .NET Core SDK 2.1.509
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.13/2.1.13.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.13/2.1.13.md) for details about what is included in this update.
The September Update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual Studio 2019, Visual Studio 2017 or Visual Studio for Mac user, there are MSBuild version requirements that are satisfied by specific, matching .NET Core SDK versions. See the table below to select the correct download. Otherwise, the best version to download is [2.1.802](2.1.802-download.md).
@ -49,7 +49,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -84,7 +84,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -109,7 +109,7 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.13/2.1.13.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.13/2.1.13.md
[//]: # ( Runtime 2.1.13)
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/070b4126-8c0c-445f-8c0e-7a29963b0a1c/d50548fc04e2e0063dad4fda8232cd9d/dotnet-hosting-2.1.13-win.exe
@ -154,6 +154,6 @@ This will install the ASP.NET Core Module for IIS.
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.13-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/

View file

@ -50,7 +50,7 @@ The images are expected to be available later today.
## .NET Core Lifecycle News
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/main/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
See [.NET Core Supported OS Lifecycle Policy](https://github.com/dotnet/core/blob/master/os-lifecycle-policy.md) to learn about Windows, macOS and Linux versions that are supported for each .NET Core release.
## Changes in 2.1.13
@ -181,7 +181,7 @@ runtime.win-x86.microsoft.netcore.dotnethostresolver | 2.1.13
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.13/2.1.13.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.13/2.1.13.md
[//]: # ( Runtime 2.1.13)
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/070b4126-8c0c-445f-8c0e-7a29963b0a1c/d50548fc04e2e0063dad4fda8232cd9d/dotnet-hosting-2.1.13-win.exe

View file

@ -6,7 +6,7 @@
* ASP.NET Core 2.1.13
* .NET Core SDK 2.1.509
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.13/2.1.13.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.13/2.1.13.md) for details about what is included in this update.
The September Update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual Studio 2019, Visual Studio 2017 or Visual Studio for Mac user, there are MSBuild version requirements that are satisfied by specific, matching .NET Core SDK versions. See the table below to select the correct download. Otherwise, the best version to download is [2.1.802](2.1.802-download.md).
@ -49,7 +49,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -84,7 +84,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -109,7 +109,7 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.13/2.1.13.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.13/2.1.13.md
[//]: # ( Runtime 2.1.13)
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/070b4126-8c0c-445f-8c0e-7a29963b0a1c/d50548fc04e2e0063dad4fda8232cd9d/dotnet-hosting-2.1.13-win.exe
@ -154,6 +154,6 @@ This will install the ASP.NET Core Module for IIS.
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.13-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/

View file

@ -6,7 +6,7 @@
* ASP.NET Core 2.1.13
* .NET Core SDK 2.1.509
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.13/2.1.13.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.13/2.1.13.md) for details about what is included in this update.
The September Update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual Studio 2019, Visual Studio 2017 or Visual Studio for Mac user, there are MSBuild version requirements that are satisfied by specific, matching .NET Core SDK versions. See the table below to select the correct download. Otherwise, the best version to download is [2.1.802](2.1.802-download.md).
@ -49,7 +49,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -84,7 +84,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -109,7 +109,7 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.13/2.1.13.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.13/2.1.13.md
[//]: # ( Runtime 2.1.13)
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/070b4126-8c0c-445f-8c0e-7a29963b0a1c/d50548fc04e2e0063dad4fda8232cd9d/dotnet-hosting-2.1.13-win.exe
@ -154,6 +154,6 @@ This will install the ASP.NET Core Module for IIS.
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.13-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/

View file

@ -6,7 +6,7 @@
* ASP.NET Core 2.1.14
* .NET Core SDK 2.1.510
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.14/2.1.14.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.14/2.1.14.md) for details about what is included in this update.
## Docker
@ -26,7 +26,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -61,7 +61,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -86,14 +86,14 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.14/2.1.14.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.14/2.1.14.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.14-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.14-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-november-2019/
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/d08902cf-87b0-4bfe-b25c-627ff77b8802/8293c56094f50ba8c4ed703aff95c325/dotnet-hosting-2.1.14-win.exe

View file

@ -1,6 +1,6 @@
# .NET Core 2.1.14 Update - November 19, 2019
[.NET Core 2.1.14](https://dotnet.microsoft.com/download/dotnet/2.1) is available for download and usage in your environment. This release includes .NET Core 2.1.14, ASP.NET Core 2.1.14 and the .NET Core SDK.
[.NET Core 2.1.14](https://dotnet.microsoft.com/download/dotnet-core/2.1) is available for download and usage in your environment. This release includes .NET Core 2.1.14, ASP.NET Core 2.1.14 and the .NET Core SDK.
* [Blog Post][dotnet-blog]
* [Downloads](#downloads)
@ -150,7 +150,7 @@ runtime.win-x86.Microsoft.NETCore.DotNetHostResolver | 2.1.14
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.14/2.1.14.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.14/2.1.14.md

View file

@ -6,7 +6,7 @@ This .NET Core SDK release includes the following released .NET Core and ASP.NET
* .NET Core Runtime 2.1.14
* ASP.NET Core 2.1.14
See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.14/2.1.14.md) for details about what is included in this update.
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.14/2.1.14.md) for details about what is included in this update.
## Downloads
@ -50,7 +50,7 @@ When .NET Core in installed using the Snap package, the default .NET Core comman
`sudo snap alias dotnet-sdk.dotnet dotnet`
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md) for a possible resolution.
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
### Install using a Package Manager
@ -85,7 +85,7 @@ sudo [package manager] install aspnetcore-runtime-2.1
### Installation from a binary archive
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/main/Documentation/linux-prereqs.md) document.
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
```bash
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
@ -110,13 +110,13 @@ This will install the ASP.NET Core Module for IIS.
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/2.1/2.1.14/2.1.14.md
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/2.1/2.1.14/2.1.14.md
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.14-sha.txt
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/2.1.14-sha.txt
[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
[linux-setup]: https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/

Some files were not shown because too many files have changed in this diff Show more