From 82e3c3f48b25864847c0fc5c74494fc23cf2cbf6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20=C4=B0brahim=20Kalkan?= Date: Thu, 19 Dec 2024 17:30:31 +0300 Subject: [PATCH] Revised preprequirements list --- docs/en/get-started/layered-web-application.md | 14 +++----------- docs/en/get-started/microservice.md | 3 ++- .../single-layer-web-application.md | 18 +++++------------- 3 files changed, 10 insertions(+), 25 deletions(-) diff --git a/docs/en/get-started/layered-web-application.md b/docs/en/get-started/layered-web-application.md index bb2e6835dd..5c054221e4 100644 --- a/docs/en/get-started/layered-web-application.md +++ b/docs/en/get-started/layered-web-application.md @@ -15,22 +15,14 @@ In this quick start guide, you will learn how to create and run a layered (and p First things first! Let's setup your development environment before creating the first project. The following tools should be installed on your development machine: -* [Visual Studio 2022](https://visualstudio.microsoft.com/) or another IDE that supports [.NET 9.0+](https://dotnet.microsoft.com/download/dotnet) development. [1](#f-editor) +* [Visual Studio 2022](https://visualstudio.microsoft.com/) or another IDE that supports [.NET 9.0+](https://dotnet.microsoft.com/download/dotnet) development. * [.NET 9.0+](https://dotnet.microsoft.com/en-us/download/dotnet) {{ if UI != "Blazor" }} -* [Node v20.11+](https://nodejs.org/) -* [Yarn v1.22+ (not v2)](https://classic.yarnpkg.com/en/docs/install) [2](#f-yarn) or npm v10+ (already installed with Node) +* [Node v22.11+](https://nodejs.org/) +* [Yarn v1.22+ (not v2+)](https://classic.yarnpkg.com/en/docs/install) or npm v10+ (already installed with Node) {{ end }} * [Docker Desktop](https://www.docker.com/products/docker-desktop/) -1 _You can use another editor instead of Visual Studio as long as it supports .NET Core and ASP.NET Core._ [↩](#a-editor) - -{{ if UI != "Blazor" }} - -2 _Yarn v2 works differently and is not supported._ [↩](#a-yarn) - -{{ end }} - > Check the [Pre-requirements document](pre-requirements.md) for more detailed information about these tools. ## Creating a New Solution diff --git a/docs/en/get-started/microservice.md b/docs/en/get-started/microservice.md index 5a732dc508..e29c4cbe10 100644 --- a/docs/en/get-started/microservice.md +++ b/docs/en/get-started/microservice.md @@ -11,7 +11,8 @@ First things first! Let's setup your development environment before creating the * [Visual Studio 2022](https://visualstudio.microsoft.com/vs/) or another IDE that supports .NET development * [.NET 9.0+](https://dotnet.microsoft.com/en-us/download/dotnet) * [Node v22.11+](https://nodejs.org/) -* [Docker Desktop with Kubernetes](https://www.docker.com/products/docker-desktop/) +* [Yarn v1.22+ (not v2+)](https://classic.yarnpkg.com/en/docs/install) or npm v10+ (already installed with Node) +* [Docker Desktop (with Kubernetes enabled)](https://www.docker.com/products/docker-desktop/) * [Helm](https://helm.sh/docs/intro/install/) * [NGINX Ingress Controller](https://kubernetes.github.io/ingress-nginx/deploy/) * [mkcert](https://github.com/FiloSottile/mkcert#installation) diff --git a/docs/en/get-started/single-layer-web-application.md b/docs/en/get-started/single-layer-web-application.md index 4e943876ef..c3cc284dd8 100644 --- a/docs/en/get-started/single-layer-web-application.md +++ b/docs/en/get-started/single-layer-web-application.md @@ -14,20 +14,12 @@ In this quick start guide, you will learn how to create and run a single layer w First things first! Let's setup your development environment before creating the first project. The following tools should be installed on your development machine: -* [Visual Studio 2022](https://visualstudio.microsoft.com/) or another IDE that supports [.NET 9.0+](https://dotnet.microsoft.com/download/dotnet) development. [1](#f-editor) +* [Visual Studio 2022](https://visualstudio.microsoft.com/) or another IDE that supports [.NET 9.0+](https://dotnet.microsoft.com/download/dotnet) development. * [.NET 9.0+](https://dotnet.microsoft.com/en-us/download/dotnet) -{{ if UI != "Blazor" }} -* [Node v20.11+](https://nodejs.org/) -* [Yarn v1.22+ (not v2)](https://classic.yarnpkg.com/en/docs/install) [2](#f-yarn) or npm v10+ (already installed with Node) -{{ end }} - -1 _You can use another editor instead of Visual Studio as long as it supports .NET Core and ASP.NET Core._ [↩](#a-editor) - -{{ if UI != "Blazor" }} - -2 _Yarn v2 works differently and is not supported._ [↩](#a-yarn) - -{{ end }} + {{ if UI != "Blazor" }} +* [Node v22.11+](https://nodejs.org/) +* [Yarn v1.22+ (not v2+)](https://classic.yarnpkg.com/en/docs/install) or npm v10+ (already installed with Node) + {{ end }} > Check the [Pre-requirements document](pre-requirements.md) for more detailed information about these tools.