From fc3d5cfc9f73f199d804f0b6608cef80c1e1d539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Tue, 25 Aug 2026 15:16:18 +0200 Subject: [PATCH 1/2] Clarify daily build source in installation script The daily builds happen from the .NET VMR repo nowadays. --- docs/core/tools/dotnet-install-script.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/tools/dotnet-install-script.md b/docs/core/tools/dotnet-install-script.md index 679b112723678..7ec483c6a7085 100644 --- a/docs/core/tools/dotnet-install-script.md +++ b/docs/core/tools/dotnet-install-script.md @@ -159,7 +159,7 @@ The install scripts do not update the registry on Windows. They just download th The different quality values signal different stages of the release process of the SDK or Runtime installed. - * `daily`: The latest builds of the SDK or Runtime. They're built every day and aren't tested. They aren't recommended for production use but can often be used to test specific features or fixes immediately after they are merged into the product. These builds are from the `dotnet/installer` repo, and so if you're looking for fixes from `dotnet/sdk` you must wait for code to flow and be merged from SDK to Installer before it appears in a daily build. + * `daily`: The latest builds of the SDK or Runtime. They're built every day and aren't tested. They aren't recommended for production use but can often be used to test specific features or fixes immediately after they are merged into the product. These builds are from the [dotnet/dotnet](https://github.com/dotnet/dotnet) VMR (Virtual Monolithic Repository), and so if you're looking for fixes from a repository like `dotnet/sdk` or `dotnet/runtime` you must wait for code to flow and be merged into `dotnet/dotnet` before it appears in a daily build. * `preview`: The monthly public releases of the next version of .NET, intended for public use. Not recommended for production use. Intended to allow users to experiment and test the new major version before release. * `GA`: The final stable releases of the .NET SDK and Runtime. Intended for public use as well as production support. From 5baa1bfa4b7058a5bab56f56810a66dbc0dc23f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Tue, 25 Aug 2026 15:20:58 +0200 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- docs/core/tools/dotnet-install-script.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/tools/dotnet-install-script.md b/docs/core/tools/dotnet-install-script.md index 7ec483c6a7085..252f3ef7fbdf9 100644 --- a/docs/core/tools/dotnet-install-script.md +++ b/docs/core/tools/dotnet-install-script.md @@ -159,7 +159,7 @@ The install scripts do not update the registry on Windows. They just download th The different quality values signal different stages of the release process of the SDK or Runtime installed. - * `daily`: The latest builds of the SDK or Runtime. They're built every day and aren't tested. They aren't recommended for production use but can often be used to test specific features or fixes immediately after they are merged into the product. These builds are from the [dotnet/dotnet](https://github.com/dotnet/dotnet) VMR (Virtual Monolithic Repository), and so if you're looking for fixes from a repository like `dotnet/sdk` or `dotnet/runtime` you must wait for code to flow and be merged into `dotnet/dotnet` before it appears in a daily build. + * `daily`: The latest builds of the SDK or Runtime. They're built every day and aren't tested. Don't use them in production. These builds come from the [dotnet/dotnet](https://github.com/dotnet/dotnet) VMR (Virtual Monolithic Repository), so you might need to wait for changes from repositories like `dotnet/sdk` or `dotnet/runtime` to flow into `dotnet/dotnet` before they appear in a daily build. * `preview`: The monthly public releases of the next version of .NET, intended for public use. Not recommended for production use. Intended to allow users to experiment and test the new major version before release. * `GA`: The final stable releases of the .NET SDK and Runtime. Intended for public use as well as production support.