From ac4de614615bd2016d4440b232345cc54acd0769 Mon Sep 17 00:00:00 2001 From: AJ Matthews Date: Thu, 10 Jul 2025 14:33:28 +0100 Subject: [PATCH 1/2] Added the ASPIRE_VERSION_CHECK_DISABLED value to the App hHost config article. --- docs/app-host/configuration.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/app-host/configuration.md b/docs/app-host/configuration.md index 8485526328..acdc16aedf 100644 --- a/docs/app-host/configuration.md +++ b/docs/app-host/configuration.md @@ -64,6 +64,7 @@ A resource service is hosted by the app host. The resource service is used by th |--|--|--| | `ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL` | `null` | Configures the address of the resource service hosted by the app host. Automatically generated with _launchSettings.json_ to have a random port on localhost. For example, `https://localhost:17037`. | | `ASPIRE_DASHBOARD_RESOURCESERVICE_APIKEY` | Automatically generated 128-bit entropy token. | The API key used to authenticate requests made to the app host's resource service. The API key is required if the app host is in run mode, the dashboard isn't disabled, and the dashboard isn't configured to allow anonymous access with `ASPIRE_DASHBOARD_UNSECURED_ALLOW_ANONYMOUS`. | +| `ASPIRE_VERSION_CHECK_DISABLED` | `false` | When set to `true` .NET Aspire doesn't check for newer versions on startup. | ## Dashboard From 15b71a4bd685c16443d8cd8652c61bcb9a264a0c Mon Sep 17 00:00:00 2001 From: AJ Matthews Date: Thu, 10 Jul 2025 14:37:49 +0100 Subject: [PATCH 2/2] Moved the row to the right table. --- docs/app-host/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/app-host/configuration.md b/docs/app-host/configuration.md index acdc16aedf..9bf94c2172 100644 --- a/docs/app-host/configuration.md +++ b/docs/app-host/configuration.md @@ -55,6 +55,7 @@ For more information, see [.NET Aspire and launch profiles](../fundamentals/laun |--|--|--| | `ASPIRE_ALLOW_UNSECURED_TRANSPORT` | `false` | Allows communication with the app host without https. `ASPNETCORE_URLS` (dashboard address) and `ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL` (app host resource service address) must be secured with HTTPS unless true. | | `ASPIRE_CONTAINER_RUNTIME` | `docker` | Allows the user of alternative container runtimes for resources backed by containers. Possible values are `docker` (default) or `podman`. See [Setup and tooling overview for more details](../fundamentals/setup-tooling.md). | +| `ASPIRE_VERSION_CHECK_DISABLED` | `false` | When set to `true`, .NET Aspire doesn't check for newer versions on startup. | ## Resource service @@ -64,7 +65,6 @@ A resource service is hosted by the app host. The resource service is used by th |--|--|--| | `ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL` | `null` | Configures the address of the resource service hosted by the app host. Automatically generated with _launchSettings.json_ to have a random port on localhost. For example, `https://localhost:17037`. | | `ASPIRE_DASHBOARD_RESOURCESERVICE_APIKEY` | Automatically generated 128-bit entropy token. | The API key used to authenticate requests made to the app host's resource service. The API key is required if the app host is in run mode, the dashboard isn't disabled, and the dashboard isn't configured to allow anonymous access with `ASPIRE_DASHBOARD_UNSECURED_ALLOW_ANONYMOUS`. | -| `ASPIRE_VERSION_CHECK_DISABLED` | `false` | When set to `true` .NET Aspire doesn't check for newer versions on startup. | ## Dashboard