From a0a69caeea6021e2d413294bacd108767179aeb9 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 23 Mar 2026 12:43:10 +0000 Subject: [PATCH] docs: replace .NET 8 with .NET 10 in Android/Termux install section Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com> Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/4d7542ac-8231-4da1-bc87-b617d718cc97 --- docs/guide/installation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 0ce7b20a..5e29fa9e 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -407,12 +407,12 @@ apt update -y && apt upgrade -y apt install wget curl nano -y ``` -Then install .NET 8.0 using Microsoft's official install script: +Then install .NET 10.0 using Microsoft's official install script: ```bash wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh chmod +x dotnet-install.sh -./dotnet-install.sh --channel 8.0 +./dotnet-install.sh --channel 10.0 ``` Now add .NET to your PATH so it works in future sessions. Open `.bashrc`: @@ -446,7 +446,7 @@ Verify the installation by running: dotnet --version ``` -You should see a version number like `8.0.xxx`. +You should see a version number like `10.0.xxx`. #### Installing MCC