diff --git a/docs/en/get-started/empty-aspnet-core-application.md b/docs/en/get-started/empty-aspnet-core-application.md index 78eb744eda..5bcec4ebb6 100644 --- a/docs/en/get-started/empty-aspnet-core-application.md +++ b/docs/en/get-started/empty-aspnet-core-application.md @@ -11,7 +11,7 @@ This tutorial explains how to start ABP from scratch with minimal dependencies. ## Create a New Project -1. Create a new AspNet Core Web Application with Visual Studio 2022 (17.0.0+): +1. Create a new AspNet Core Web Application with Visual Studio 2026 (18.0.0+): ![](../images/create-new-aspnet-core-application-v2.png) diff --git a/docs/en/get-started/layered-web-application.md b/docs/en/get-started/layered-web-application.md index dc65e45829..db8077c3ae 100644 --- a/docs/en/get-started/layered-web-application.md +++ b/docs/en/get-started/layered-web-application.md @@ -22,8 +22,8 @@ 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. -* [.NET 9.0+](https://dotnet.microsoft.com/en-us/download/dotnet){{ if UI != "Blazor" }} +* [Visual Studio 2026](https://visualstudio.microsoft.com/) or another IDE that supports [.NET 10.0+](https://dotnet.microsoft.com/download/dotnet) development. +* [.NET 10.0+](https://dotnet.microsoft.com/en-us/download/dotnet){{ if UI != "Blazor" }} * [Node v22.11+](https://nodejs.org/){{ end }}{{ if UI == "NG" }} * [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/) diff --git a/docs/en/get-started/microservice.md b/docs/en/get-started/microservice.md index fb8626baef..d57c652b8e 100644 --- a/docs/en/get-started/microservice.md +++ b/docs/en/get-started/microservice.md @@ -15,8 +15,8 @@ In this quick start guide, you will learn how to create and run a microservice s 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/vs/) or another IDE that supports .NET development -* [.NET 9.0+](https://dotnet.microsoft.com/en-us/download/dotnet) +* [Visual Studio 2026](https://visualstudio.microsoft.com/vs/) or another IDE that supports .NET development +* [.NET 10.0+](https://dotnet.microsoft.com/en-us/download/dotnet) * [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), **This is required for the Angular applications.** * [Docker Desktop (with Kubernetes enabled)](https://www.docker.com/products/docker-desktop/) diff --git a/docs/en/get-started/single-layer-web-application.md b/docs/en/get-started/single-layer-web-application.md index 06c5ed90f9..056b7ed85b 100644 --- a/docs/en/get-started/single-layer-web-application.md +++ b/docs/en/get-started/single-layer-web-application.md @@ -21,8 +21,8 @@ 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. -* [.NET 9.0+](https://dotnet.microsoft.com/en-us/download/dotnet){{ if UI != "Blazor" }} +* [Visual Studio 2026](https://visualstudio.microsoft.com/) or another IDE that supports [.NET 10.0+](https://dotnet.microsoft.com/download/dotnet) development. +* [.NET 10.0+](https://dotnet.microsoft.com/en-us/download/dotnet){{ if UI != "Blazor" }} * [Node v22.11+](https://nodejs.org/){{ end }}{{ if UI == "NG" }} * [Yarn v1.22+ (not v2+)](https://classic.yarnpkg.com/en/docs/install) or npm v10+ (already installed with Node){{ end }} diff --git a/docs/en/samples/easy-crm.md b/docs/en/samples/easy-crm.md index eb959a38c8..7aee565171 100644 --- a/docs/en/samples/easy-crm.md +++ b/docs/en/samples/easy-crm.md @@ -30,7 +30,7 @@ When you download and open the zip file, you will see two folders: ### Server Side / MVC (Razor Pages) Application -* Open the solution (inside the aspnet-core folder) in **Visual Studio 2019** or later (or with another IDE that supports ASP.NET Core). +* Open the solution (inside the aspnet-core folder) in **Visual Studio 2026** or later (or with another IDE that supports ASP.NET Core). * This project use `Sqlite`, the default database folder is located at appsettings (`"SqliteDbFolder": "sqliteDbs"`, this folder is located in the MVC project). * Open the `appsettings.json` file in the `Volo.EasyCrm.Web` application and set `"UseDynamicDatabase": "false"`. > The MVC project is creating new database for each unique visitor. And the visitor id is stored at cookies. When you set `UseDynamicDatabase` as a `true`, you cannot run Blazor & Angular projects because they have no cookie implementation. Be aware it is set as `false` for running Blazor & Angular applications. diff --git a/docs/en/samples/microservice-demo.md b/docs/en/samples/microservice-demo.md index 31516b2a55..c31959f6b0 100644 --- a/docs/en/samples/microservice-demo.md +++ b/docs/en/samples/microservice-demo.md @@ -60,7 +60,7 @@ To be able to run the solution from source code, following tools should be insta ### Open & Build the Visual Studio Solution -* Open the `samples\MicroserviceDemo\MicroserviceDemo.sln` in Visual Studio 2017 (15.9.0+). +* Open the `samples\MicroserviceDemo\MicroserviceDemo.sln` in Visual Studio 2026 (18.0.0+). * Run `dotnet restore` from the command line inside the `samples\MicroserviceDemo` folder. * Build the solution in Visual Studio. diff --git a/docs/en/tutorials/todo/layered/index.md b/docs/en/tutorials/todo/layered/index.md index e32cfd1a1d..b561f0bb06 100644 --- a/docs/en/tutorials/todo/layered/index.md +++ b/docs/en/tutorials/todo/layered/index.md @@ -59,7 +59,7 @@ This documentation has a video tutorial on **YouTube**!! You can watch it here: ## Pre-Requirements -* An IDE (e.g. [Visual Studio](https://visualstudio.microsoft.com/vs/)) that supports [.NET 9.0+](https://dotnet.microsoft.com/download/dotnet) development. +* An IDE (e.g. [Visual Studio](https://visualstudio.microsoft.com/vs/)) that supports [.NET 10.0+](https://dotnet.microsoft.com/download/dotnet) development. * [Node v20.11+](https://nodejs.org/) {{if DB=="EF"}} * [SQL Server Express LocalDB](https://learn.microsoft.com/en-us/sql/database-engine/configure-windows/sql-server-express-localdb) diff --git a/docs/en/tutorials/todo/single-layer/index.md b/docs/en/tutorials/todo/single-layer/index.md index 9493b76dd9..32e7290bc2 100644 --- a/docs/en/tutorials/todo/single-layer/index.md +++ b/docs/en/tutorials/todo/single-layer/index.md @@ -55,7 +55,7 @@ This documentation has a video tutorial on **YouTube**!! You can watch it here: ## Pre-Requirements -* An IDE (e.g. [Visual Studio](https://visualstudio.microsoft.com/vs/)) that supports [.NET 9.0+](https://dotnet.microsoft.com/download/dotnet) development. +* An IDE (e.g. [Visual Studio](https://visualstudio.microsoft.com/vs/)) that supports [.NET 10.0+](https://dotnet.microsoft.com/download/dotnet) development. * [Node v20.11+](https://nodejs.org/) {{if DB=="EF"}} * [SQL Server Express LocalDB](https://learn.microsoft.com/en-us/sql/database-engine/configure-windows/sql-server-express-localdb) diff --git a/templates/app-nolayers/aspnet-core/README.md b/templates/app-nolayers/aspnet-core/README.md index 5aa2ba5045..7dfaaea946 100644 --- a/templates/app-nolayers/aspnet-core/README.md +++ b/templates/app-nolayers/aspnet-core/README.md @@ -6,7 +6,7 @@ This is a minimalist, non-layered startup solution with the ABP Framework. All t ### Pre-requirements -* [.NET 9.0+ SDK](https://dotnet.microsoft.com/download/dotnet) +* [.NET 10.0+ SDK](https://dotnet.microsoft.com/download/dotnet) * [Node v20.11+](https://nodejs.org/en) ### Configurations diff --git a/templates/app/aspnet-core/README.md b/templates/app/aspnet-core/README.md index a35f23ea02..10a17e383c 100644 --- a/templates/app/aspnet-core/README.md +++ b/templates/app/aspnet-core/README.md @@ -6,7 +6,7 @@ This is a layered startup solution based on [Domain Driven Design (DDD)](https:/ ### Pre-requirements -* [.NET 9.0+ SDK](https://dotnet.microsoft.com/download/dotnet) +* [.NET 10.0+ SDK](https://dotnet.microsoft.com/download/dotnet) * [Node v20.11+](https://nodejs.org/en) * [Redis](https://redis.io/)