From 0da3b208bd65522d08ec77351c98437db8e6f849 Mon Sep 17 00:00:00 2001 From: gewarren <24882762+gewarren@users.noreply.github.com> Date: Sun, 1 Dec 2024 01:29:59 +0000 Subject: [PATCH] =?UTF-8?q?Bot=20=F0=9F=A4=96=20generated=20CleanRepo=20to?= =?UTF-8?q?ol=20run?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../includes/set-openai-secrets.md | 13 ------- .../install/includes/linux-install-60-apk.md | 33 ----------------- .../install/includes/linux-install-60-dnf.md | 33 ----------------- .../install/includes/linux-install-60-zyp.md | 33 ----------------- .../install/includes/linux-install-70-apk.md | 33 ----------------- .../install/includes/linux-install-70-apt.md | 35 ------------------- .../install/includes/linux-install-70-dnf.md | 33 ----------------- .../install/includes/linux-install-70-zyp.md | 33 ----------------- .../install/includes/linux-install-80-apk.md | 33 ----------------- 9 files changed, 279 deletions(-) delete mode 100644 docs/ai/quickstarts/includes/set-openai-secrets.md delete mode 100644 docs/core/install/includes/linux-install-60-apk.md delete mode 100644 docs/core/install/includes/linux-install-60-dnf.md delete mode 100644 docs/core/install/includes/linux-install-60-zyp.md delete mode 100644 docs/core/install/includes/linux-install-70-apk.md delete mode 100644 docs/core/install/includes/linux-install-70-apt.md delete mode 100644 docs/core/install/includes/linux-install-70-dnf.md delete mode 100644 docs/core/install/includes/linux-install-70-zyp.md delete mode 100644 docs/core/install/includes/linux-install-80-apk.md diff --git a/docs/ai/quickstarts/includes/set-openai-secrets.md b/docs/ai/quickstarts/includes/set-openai-secrets.md deleted file mode 100644 index 9f4348ed8f339..0000000000000 --- a/docs/ai/quickstarts/includes/set-openai-secrets.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -author: jmatthiesen -ms.author: jomatthi -ms.date: 07/03/2024 -ms.topic: include ---- - -Run the following commands to configure your OpenAI API key as a secret for the sample app: - -```bash -dotnet user-secrets init -dotnet user-secrets set OpenAIKey -``` diff --git a/docs/core/install/includes/linux-install-60-apk.md b/docs/core/install/includes/linux-install-60-apk.md deleted file mode 100644 index 0e60bb456cab4..0000000000000 --- a/docs/core/install/includes/linux-install-60-apk.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: adegeo -ms.author: adegeo -ms.date: 11/22/2022 -ms.topic: include -ms.custom: linux-related-content ---- - -### Install the SDK - -The .NET SDK allows you to develop apps with .NET. If you install the .NET SDK, you don't need to install the corresponding runtime. To install the .NET SDK, run the following command: - -```bash -sudo apk add dotnet6-sdk -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). - -### Install the runtime - -The ASP.NET Core Runtime allows you to run apps that were made with .NET that didn't provide the runtime. The following command installs the ASP.NET Core Runtime, which is the most compatible runtime for .NET. In your terminal, run the following command: - -```bash -sudo apk add aspnetcore6-runtime -``` - -As an alternative to the ASP.NET Core Runtime, you can install the .NET Runtime, which doesn't include ASP.NET Core support. To install it, replace `aspnetcore6-runtime` in the previous command with `dotnet6-runtime`: - -```bash -sudo apk add dotnet6-runtime -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). diff --git a/docs/core/install/includes/linux-install-60-dnf.md b/docs/core/install/includes/linux-install-60-dnf.md deleted file mode 100644 index 70834859cbec6..0000000000000 --- a/docs/core/install/includes/linux-install-60-dnf.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: adegeo -ms.author: adegeo -ms.date: 01/05/2022 -ms.topic: include -ms.custom: linux-related-content ---- - -### Install the SDK - -The .NET SDK allows you to develop apps with .NET. If you install the .NET SDK, you don't need to install the corresponding runtime. To install the .NET SDK, run the following command: - -```bash -sudo dnf install dotnet-sdk-6.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). - -### Install the runtime - -The ASP.NET Core Runtime allows you to run apps that were made with .NET that didn't provide the runtime. The following command installs the ASP.NET Core Runtime, which is the most compatible runtime for .NET. In your terminal, run the following command: - -```bash -sudo dnf install aspnetcore-runtime-6.0 -``` - -As an alternative to the ASP.NET Core Runtime, you can install the .NET Runtime, which doesn't include ASP.NET Core support: replace `aspnetcore-runtime-6.0` in the previous command with `dotnet-runtime-6.0`: - -```bash -sudo dnf install dotnet-runtime-6.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). diff --git a/docs/core/install/includes/linux-install-60-zyp.md b/docs/core/install/includes/linux-install-60-zyp.md deleted file mode 100644 index f5845cc0d106e..0000000000000 --- a/docs/core/install/includes/linux-install-60-zyp.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: adegeo -ms.author: adegeo -ms.date: 10/26/2021 -ms.topic: include -ms.custom: linux-related-content ---- - -### Install the SDK - -The .NET SDK allows you to develop apps with .NET. If you install the .NET SDK, you don't need to install the corresponding runtime. To install the .NET SDK, run the following command: - -```bash -sudo zypper install dotnet-sdk-6.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). - -### Install the runtime - -The ASP.NET Core Runtime allows you to run apps that were made with .NET that didn't provide the runtime. The following command installs the ASP.NET Core Runtime, which is the most compatible runtime for .NET. In your terminal, run the following command: - -```bash -sudo zypper install aspnetcore-runtime-6.0 -``` - -As an alternative to the ASP.NET Core Runtime, you can install the .NET Runtime, which doesn't include ASP.NET Core support: replace `aspnetcore-runtime-6.0` in the previous command with `dotnet-runtime-6.0`: - -```bash -sudo zypper install dotnet-runtime-6.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). diff --git a/docs/core/install/includes/linux-install-70-apk.md b/docs/core/install/includes/linux-install-70-apk.md deleted file mode 100644 index e77a463a3bb8f..0000000000000 --- a/docs/core/install/includes/linux-install-70-apk.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: adegeo -ms.author: adegeo -ms.date: 11/22/2022 -ms.topic: include -ms.custom: linux-related-content ---- - -### Install the SDK - -The .NET SDK allows you to develop apps with .NET. If you install the .NET SDK, you don't need to install the corresponding runtime. To install the .NET SDK, run the following command: - -```bash -sudo apk add dotnet7-sdk -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). - -### Install the runtime - -The ASP.NET Core Runtime allows you to run apps that were made with .NET that didn't provide the runtime. The following command installs the ASP.NET Core Runtime, which is the most compatible runtime for .NET. In your terminal, run the following command: - -```bash -sudo apk add aspnetcore7-runtime -``` - -As an alternative to the ASP.NET Core Runtime, you can install the .NET Runtime, which doesn't include ASP.NET Core support: replace `aspnetcore7-runtime` in the previous command with `dotnet7-runtime`: - -```bash -sudo apk add dotnet7-runtime -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). diff --git a/docs/core/install/includes/linux-install-70-apt.md b/docs/core/install/includes/linux-install-70-apt.md deleted file mode 100644 index dc6f821781270..0000000000000 --- a/docs/core/install/includes/linux-install-70-apt.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -author: adegeo -ms.author: adegeo -ms.date: 11/15/2022 -ms.topic: include -ms.custom: linux-related-content ---- - -### Install the SDK - -The .NET SDK allows you to develop apps with .NET. If you install the .NET SDK, you don't need to install the corresponding runtime. To install the .NET SDK, run the following commands: - -```bash -sudo apt-get update && \ - sudo apt-get install -y dotnet-sdk-7.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). - -### Install the runtime - -The ASP.NET Core Runtime allows you to run apps that were made with .NET that didn't provide the runtime. The following commands install the ASP.NET Core Runtime, which is the most compatible runtime for .NET. In your terminal, run the following commands: - -```bash -sudo apt-get update && \ - sudo apt-get install -y aspnetcore-runtime-7.0 -``` - -As an alternative to the ASP.NET Core Runtime, you can install the .NET Runtime, which doesn't include ASP.NET Core support: replace `aspnetcore-runtime-7.0` in the previous command with `dotnet-runtime-7.0`: - -```bash -sudo apt-get install -y dotnet-runtime-7.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). diff --git a/docs/core/install/includes/linux-install-70-dnf.md b/docs/core/install/includes/linux-install-70-dnf.md deleted file mode 100644 index d5d5e82f41bb0..0000000000000 --- a/docs/core/install/includes/linux-install-70-dnf.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: adegeo -ms.author: adegeo -ms.date: 11/15/2022 -ms.topic: include -ms.custom: linux-related-content ---- - -### Install the SDK - -The .NET SDK allows you to develop apps with .NET. If you install the .NET SDK, you don't need to install the corresponding runtime. To install the .NET SDK, run the following command: - -```bash -sudo dnf install dotnet-sdk-7.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). - -### Install the runtime - -The ASP.NET Core Runtime allows you to run apps that were made with .NET that didn't provide the runtime. The following command installs the ASP.NET Core Runtime, which is the most compatible runtime for .NET. In your terminal, run the following command: - -```bash -sudo dnf install aspnetcore-runtime-7.0 -``` - -As an alternative to the ASP.NET Core Runtime, you can install the .NET Runtime, which doesn't include ASP.NET Core support: replace `aspnetcore-runtime-7.0` in the previous command with `dotnet-runtime-7.0`: - -```bash -sudo dnf install dotnet-runtime-7.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). diff --git a/docs/core/install/includes/linux-install-70-zyp.md b/docs/core/install/includes/linux-install-70-zyp.md deleted file mode 100644 index 3b9cf515b83ba..0000000000000 --- a/docs/core/install/includes/linux-install-70-zyp.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: adegeo -ms.author: adegeo -ms.date: 11/15/2022 -ms.topic: include -ms.custom: linux-related-content ---- - -### Install the SDK - -The .NET SDK allows you to develop apps with .NET. If you install the .NET SDK, you don't need to install the corresponding runtime. To install the .NET SDK, run the following command: - -```bash -sudo zypper install dotnet-sdk-7.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). - -### Install the runtime - -The ASP.NET Core Runtime allows you to run apps that were made with .NET that didn't provide the runtime. The following command installs the ASP.NET Core Runtime, which is the most compatible runtime for .NET. In your terminal, run the following command: - -```bash -sudo zypper install aspnetcore-runtime-7.0 -``` - -As an alternative to the ASP.NET Core Runtime, you can install the .NET Runtime, which doesn't include ASP.NET Core support: replace `aspnetcore-runtime-7.0` in the previous command with `dotnet-runtime-7.0`: - -```bash -sudo zypper install dotnet-runtime-7.0 -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). diff --git a/docs/core/install/includes/linux-install-80-apk.md b/docs/core/install/includes/linux-install-80-apk.md deleted file mode 100644 index b81e647b92e5f..0000000000000 --- a/docs/core/install/includes/linux-install-80-apk.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -author: adegeo -ms.author: adegeo -ms.date: 11/14/2023 -ms.topic: include -ms.custom: linux-related-content ---- - -### Install the SDK - -The .NET SDK allows you to develop apps with .NET. If you install the .NET SDK, you don't need to install the corresponding runtime. To install the .NET SDK, run the following command: - -```bash -sudo apk add dotnet8-sdk -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md). - -### Install the runtime - -The ASP.NET Core Runtime allows you to run apps that were made with .NET that didn't provide the runtime. The following command installs the ASP.NET Core Runtime, which is the most compatible runtime for .NET. In your terminal, run the following command: - -```bash -sudo apk add aspnetcore8-runtime -``` - -As an alternative to the ASP.NET Core Runtime, you can install the .NET Runtime, which doesn't include ASP.NET Core support: replace `aspnetcore8-runtime` in the previous command with `dotnet8-runtime`: - -```bash -sudo apk add dotnet8-runtime -``` - -To learn how to use the .NET CLI, see [.NET CLI overview](../../tools/index.md).