From bef638cd7a7219608aec1f7357af59550062c314 Mon Sep 17 00:00:00 2001 From: Maira Wenzel Date: Wed, 28 Oct 2020 22:00:49 -0700 Subject: [PATCH] Replace above and below --- docs/core/install/includes/linux-install-20-dnf.md | 4 ++-- docs/core/install/includes/linux-install-21-apt.md | 4 ++-- docs/core/install/includes/linux-install-21-dnf.md | 4 ++-- docs/core/install/includes/linux-install-21-yum.md | 4 ++-- docs/core/install/includes/linux-install-30-dnf.md | 4 ++-- docs/core/install/includes/linux-install-31-apt.md | 4 ++-- docs/core/install/includes/linux-install-31-dnf.md | 4 ++-- docs/core/install/includes/linux-install-31-yum.md | 4 ++-- docs/core/install/includes/linux-install-31-zyp.md | 4 ++-- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/docs/core/install/includes/linux-install-20-dnf.md b/docs/core/install/includes/linux-install-20-dnf.md index 8c98676a12ca9..f54be553b6824 100644 --- a/docs/core/install/includes/linux-install-20-dnf.md +++ b/docs/core/install/includes/linux-install-20-dnf.md @@ -9,13 +9,13 @@ sudo dnf install dotnet-sdk-2.0 ### Install the runtime -The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The commands below install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. +The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. ```bash sudo dnf install aspnetcore-runtime-2.0 ``` -As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.0` in the command above with `dotnet-runtime-2.0`. +As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.0` in the previous command with `dotnet-runtime-2.0`. ```bash sudo dnf install dotnet-runtime-2.0 diff --git a/docs/core/install/includes/linux-install-21-apt.md b/docs/core/install/includes/linux-install-21-apt.md index 25a4c0ba5d19b..92508b4459fcc 100644 --- a/docs/core/install/includes/linux-install-21-apt.md +++ b/docs/core/install/includes/linux-install-21-apt.md @@ -15,7 +15,7 @@ sudo apt-get update; \ ### Install the runtime -The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The commands below install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. +The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. ```bash sudo apt-get update; \ @@ -27,7 +27,7 @@ sudo apt-get update; \ > [!IMPORTANT] > If you receive an error message similar to **Unable to locate package aspnetcore-runtime-2.1**, see the [APT troubleshooting](#apt-troubleshooting) section. -As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the command above with `dotnet-runtime-2.1`. +As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the previous command with `dotnet-runtime-2.1`. ```bash sudo apt-get install -y dotnet-runtime-2.1 diff --git a/docs/core/install/includes/linux-install-21-dnf.md b/docs/core/install/includes/linux-install-21-dnf.md index c363a0a6c430f..07d2a2fbaae09 100644 --- a/docs/core/install/includes/linux-install-21-dnf.md +++ b/docs/core/install/includes/linux-install-21-dnf.md @@ -9,13 +9,13 @@ sudo dnf install dotnet-sdk-2.1 ### Install the runtime -The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The commands below install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. +The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. ```bash sudo dnf install aspnetcore-runtime-2.1 ``` -As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the command above with `dotnet-runtime-2.1`. +As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the previous command with `dotnet-runtime-2.1`. ```bash sudo dnf install dotnet-runtime-2.1 diff --git a/docs/core/install/includes/linux-install-21-yum.md b/docs/core/install/includes/linux-install-21-yum.md index 13ce6f55a7f94..df935946599ab 100644 --- a/docs/core/install/includes/linux-install-21-yum.md +++ b/docs/core/install/includes/linux-install-21-yum.md @@ -9,13 +9,13 @@ sudo yum install dotnet-sdk-2.1 ### Install the runtime -The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The commands below install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. +The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. ```bash sudo yum install aspnetcore-runtime-2.1 ``` -As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the command above with `dotnet-runtime-2.1`. +As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the previous command with `dotnet-runtime-2.1`. ```bash sudo yum install dotnet-runtime-2.1 diff --git a/docs/core/install/includes/linux-install-30-dnf.md b/docs/core/install/includes/linux-install-30-dnf.md index 675f7582e593f..dd2a7b934d32a 100644 --- a/docs/core/install/includes/linux-install-30-dnf.md +++ b/docs/core/install/includes/linux-install-30-dnf.md @@ -9,13 +9,13 @@ sudo dnf install dotnet-sdk-3.0 ### Install the runtime -The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The commands below install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. +The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. ```bash sudo dnf install aspnetcore-runtime-3.0 ``` -As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-3.0` in the command above with `dotnet-runtime-3.0`. +As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-3.0` in the previous command with `dotnet-runtime-3.0`. ```bash sudo dnf install dotnet-runtime-3.0 diff --git a/docs/core/install/includes/linux-install-31-apt.md b/docs/core/install/includes/linux-install-31-apt.md index 6b8f070f0c67e..37c3ef8fead0d 100644 --- a/docs/core/install/includes/linux-install-31-apt.md +++ b/docs/core/install/includes/linux-install-31-apt.md @@ -15,7 +15,7 @@ sudo apt-get update; \ ### Install the runtime -The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The commands below install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. +The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. ```bash sudo apt-get update; \ @@ -27,7 +27,7 @@ sudo apt-get update; \ > [!IMPORTANT] > If you receive an error message similar to **Unable to locate package aspnetcore-runtime-3.1**, see the [APT troubleshooting](#apt-troubleshooting) section. -As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-3.1` in the command above with `dotnet-runtime-3.1`. +As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-3.1` in the previous command with `dotnet-runtime-3.1`. ```bash sudo apt-get install -y dotnet-runtime-3.1 diff --git a/docs/core/install/includes/linux-install-31-dnf.md b/docs/core/install/includes/linux-install-31-dnf.md index 3ab22cff49ccf..8fffaf2a7e17c 100644 --- a/docs/core/install/includes/linux-install-31-dnf.md +++ b/docs/core/install/includes/linux-install-31-dnf.md @@ -9,13 +9,13 @@ sudo dnf install dotnet-sdk-3.1 ### Install the runtime -The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The commands below install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. +The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. ```bash sudo dnf install aspnetcore-runtime-3.1 ``` -As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-3.1` in the command above with `dotnet-runtime-3.1`. +As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-3.1` in the previous command with `dotnet-runtime-3.1`. ```bash sudo dnf install dotnet-runtime-3.1 diff --git a/docs/core/install/includes/linux-install-31-yum.md b/docs/core/install/includes/linux-install-31-yum.md index 5feff120ca610..508fbc2d80ca8 100644 --- a/docs/core/install/includes/linux-install-31-yum.md +++ b/docs/core/install/includes/linux-install-31-yum.md @@ -9,13 +9,13 @@ sudo yum install dotnet-sdk-3.1 ### Install the runtime -The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The commands below install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. +The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. ```bash sudo yum install aspnetcore-runtime-3.1 ``` -As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the command above with `dotnet-runtime-3.1`. +As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the previous command with `dotnet-runtime-3.1`. ```bash sudo yum install dotnet-runtime-3.1 diff --git a/docs/core/install/includes/linux-install-31-zyp.md b/docs/core/install/includes/linux-install-31-zyp.md index 56ba75be39137..920c1673ecad1 100644 --- a/docs/core/install/includes/linux-install-31-zyp.md +++ b/docs/core/install/includes/linux-install-31-zyp.md @@ -9,13 +9,13 @@ sudo zypper install dotnet-sdk-3.1 ### Install the runtime -The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The commands below install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. +The .NET Core Runtime allows you to run apps that were made with .NET Core that didn't include the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET Core. In your terminal, run the following commands. ```bash sudo zypper install aspnetcore-runtime-3.1 ``` -As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the command above with `dotnet-runtime-3.1`. +As an alternative to the ASP.NET Core Runtime, you can install the .NET Core Runtime that doesn't include ASP.NET Core support: replace `aspnetcore-runtime-2.1` in the previous command with `dotnet-runtime-3.1`. ```bash sudo zypper install dotnet-runtime-3.1