From 44e9753191915565b19bed1d22c76c83aafb8908 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Mon, 15 Dec 2025 15:56:20 -0800 Subject: [PATCH 1/3] Revise .NET version sections in README.md Updated .NET version references in README.md to reflect the latest version changes. --- README.md | 18 ++++-------------- 1 file changed, 4 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 4b9116b2a33a..73bbd5400883 100644 --- a/README.md +++ b/README.md @@ -25,33 +25,23 @@ You can download the .NET SDK as either an installer (MSI, PKG) or a zip (zip, t > [!NOTE] > When acquiring installers from the .NET SDK latest builds table, be aware that the installers are the **latest bits**. With development builds, internal NuGet feeds are necessary for some scenarios (for example, to acquire the runtime pack for self-contained apps). You can use the following NuGet.config to configure these feeds. See the following document [Configuring NuGet behavior](https://docs.microsoft.com/nuget/consume-packages/configuring-nuget-behavior) for more information on where to modify your NuGet.config to apply the changes. -### For .NET 10 builds -```xml - - - - - -``` - -### For .NET 9 builds +### For .NET 11 builds ```xml - + ``` -### For .NET 8 builds +### For .NET 10 builds ```xml - + ``` - ### Debian package dependencies Our Debian packages are put together slightly differently than the other OS specific installers. Instead of combining everything, we have separate component packages that depend on each other. If you're installing the SDK from the .deb file (via dpkg or similar), then you'll need to install the corresponding dependencies first: From 1a0439ea535e6101d763066fb3ef18a111ddb400 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Tue, 16 Dec 2025 11:58:52 -0800 Subject: [PATCH 2/3] Update README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 73bbd5400883..ebc52089babe 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,6 @@ You can download the .NET SDK as either an installer (MSI, PKG) or a zip (zip, t -``` ### Debian package dependencies Our Debian packages are put together slightly differently than the other OS specific installers. Instead of combining everything, we have separate component packages that depend on each other. If you're installing the SDK from the .deb file (via dpkg or similar), then you'll need to install the corresponding dependencies first: From 9dcaa0f448c775b28938c39e722cb264c3cd7380 Mon Sep 17 00:00:00 2001 From: Marc Paine Date: Tue, 16 Dec 2025 15:00:20 -0800 Subject: [PATCH 3/3] Remove the nuget links and notes around that altogether Removed notes and examples for .NET SDK installers and Debian package dependencies. This information should be in dotnet/dotnet now. --- README.md | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/README.md b/README.md index ebc52089babe..b048b06d14d1 100644 --- a/README.md +++ b/README.md @@ -22,31 +22,6 @@ You can download the .NET SDK as either an installer (MSI, PKG) or a zip (zip, t - [Official builds](https://dotnet.microsoft.com/download/dotnet) - [**.NET SDK latest builds table**](https://github.com/dotnet/dotnet/blob/main/docs/builds-table.md) -> [!NOTE] -> When acquiring installers from the .NET SDK latest builds table, be aware that the installers are the **latest bits**. With development builds, internal NuGet feeds are necessary for some scenarios (for example, to acquire the runtime pack for self-contained apps). You can use the following NuGet.config to configure these feeds. See the following document [Configuring NuGet behavior](https://docs.microsoft.com/nuget/consume-packages/configuring-nuget-behavior) for more information on where to modify your NuGet.config to apply the changes. - -### For .NET 11 builds -```xml - - - - - -``` - -### For .NET 10 builds -```xml - - - - - -### Debian package dependencies - -Our Debian packages are put together slightly differently than the other OS specific installers. Instead of combining everything, we have separate component packages that depend on each other. If you're installing the SDK from the .deb file (via dpkg or similar), then you'll need to install the corresponding dependencies first: -- [Host, Host FX Resolver, and Shared Framework](https://github.com/dotnet/runtime/blob/main/docs/project/dogfooding.md#daily-builds-table) -- [ASP.NET Core Shared Framework](https://github.com/dotnet/aspnetcore/blob/main/docs/DailyBuilds.md) - ### Looking for dotnet-install sources? Sources for dotnet-install.sh and dotnet-install.ps1 are in the [install-scripts repo](https://github.com/dotnet/install-scripts).