From 70553531b8389d2d062672763a009751998fe7fc Mon Sep 17 00:00:00 2001 From: Mike Nguyen Date: Fri, 29 Aug 2025 16:27:31 +0100 Subject: [PATCH 1/2] docs: deprecation notice for vscode extension closes #4699 Signed-off-by: Mike Nguyen --- .../local-development/ides/vscode/vscode-dapr-extension.md | 7 ++++++- .../ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md | 6 ++++++ .../ides/vscode/vscode-remote-dev-containers.md | 6 ++++++ 3 files changed, 18 insertions(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-dapr-extension.md b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-dapr-extension.md index 85a90023ab8..b078a89ec91 100644 --- a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-dapr-extension.md +++ b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-dapr-extension.md @@ -6,8 +6,13 @@ weight: 10000 description: "How to develop and run Dapr applications with the Dapr extension" --- +{{% alert title="Deprecation notice" color="primary" %}} +The extension was previously supported by Microsoft, but is now deprecated. The extension will remain available in the Visual Studio Code marketplace, but it will no longer receive updates or support. -Dapr offers a *preview* [Dapr Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-dapr) for local development which enables users a variety of features related to better managing their Dapr applications and debugging of your Dapr applications for all supported Dapr languages which are .NET, Go, PHP, Python and Java. +Alternative solutions are being considered to provide similar functionality for Dapr users. Please stay tuned for future announcements regarding these alternatives. +{{% /alert %}} + +The *deprecated* [Dapr Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-dapr) for local development which enables users a variety of features related to better managing their Dapr applications and debugging of your Dapr applications for all supported Dapr languages which are .NET, Go, PHP, Python and Java. Open in VSCode diff --git a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md index 88d03b7cc37..8f5371c56a5 100644 --- a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md +++ b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md @@ -8,6 +8,12 @@ aliases: - /developing-applications/ides/vscode/vscode-manual-configuration/ --- +{{% alert title="Deprecation notice" color="primary" %}} +The extension was previously supported by Microsoft, but is now deprecated. The extension will remain available in the Visual Studio Code marketplace, but it will no longer receive updates or support. + +Alternative solutions are being considered to provide similar functionality for Dapr users. Please stay tuned for future announcements regarding these alternatives. +{{% /alert %}} + ## Manual debugging When developing Dapr applications, you typically use the Dapr CLI to start your daprized service similar to this: diff --git a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-remote-dev-containers.md b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-remote-dev-containers.md index 57003a3110c..b88ffaa9bbf 100644 --- a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-remote-dev-containers.md +++ b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-remote-dev-containers.md @@ -6,6 +6,12 @@ weight: 30000 description: "How to setup a containerized development environment with Dapr" --- +{{% alert title="Deprecation notice" color="primary" %}} +The extension was previously supported by Microsoft, but is now deprecated. The extension will remain available in the Visual Studio Code marketplace, but it will no longer receive updates or support. + +Alternative solutions are being considered to provide similar functionality for Dapr users. Please stay tuned for future announcements regarding these alternatives. +{{% /alert %}} + The Visual Studio Code [Dev Containers extension](https://code.visualstudio.com/docs/remote/containers) lets you use a self-contained Docker container as a complete development environment, without installing any additional packages, libraries, or utilities in your local filesystem. Dapr has pre-built Dev Containers for C# and JavaScript/TypeScript; you can pick the one of your choice for a ready made environment. Note these pre-built containers automatically update to the latest Dapr release. From a46ea4913d4bbd42c9748e28edfb84c80d1a348b Mon Sep 17 00:00:00 2001 From: Mike Nguyen Date: Wed, 3 Sep 2025 11:52:48 +0100 Subject: [PATCH 2/2] docs: remove promises Co-authored-by: Mark Fussell Signed-off-by: Mike Nguyen --- .../local-development/ides/vscode/vscode-dapr-extension.md | 1 - .../ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md | 1 - .../ides/vscode/vscode-remote-dev-containers.md | 1 - 3 files changed, 3 deletions(-) diff --git a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-dapr-extension.md b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-dapr-extension.md index b078a89ec91..20c2de62db4 100644 --- a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-dapr-extension.md +++ b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-dapr-extension.md @@ -9,7 +9,6 @@ description: "How to develop and run Dapr applications with the Dapr extension" {{% alert title="Deprecation notice" color="primary" %}} The extension was previously supported by Microsoft, but is now deprecated. The extension will remain available in the Visual Studio Code marketplace, but it will no longer receive updates or support. -Alternative solutions are being considered to provide similar functionality for Dapr users. Please stay tuned for future announcements regarding these alternatives. {{% /alert %}} The *deprecated* [Dapr Visual Studio Code extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-dapr) for local development which enables users a variety of features related to better managing their Dapr applications and debugging of your Dapr applications for all supported Dapr languages which are .NET, Go, PHP, Python and Java. diff --git a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md index 8f5371c56a5..a0bbad5e8ec 100644 --- a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md +++ b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-how-to-debug-multiple-dapr-apps.md @@ -11,7 +11,6 @@ aliases: {{% alert title="Deprecation notice" color="primary" %}} The extension was previously supported by Microsoft, but is now deprecated. The extension will remain available in the Visual Studio Code marketplace, but it will no longer receive updates or support. -Alternative solutions are being considered to provide similar functionality for Dapr users. Please stay tuned for future announcements regarding these alternatives. {{% /alert %}} ## Manual debugging diff --git a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-remote-dev-containers.md b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-remote-dev-containers.md index b88ffaa9bbf..40af0f88405 100644 --- a/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-remote-dev-containers.md +++ b/daprdocs/content/en/developing-applications/local-development/ides/vscode/vscode-remote-dev-containers.md @@ -9,7 +9,6 @@ description: "How to setup a containerized development environment with Dapr" {{% alert title="Deprecation notice" color="primary" %}} The extension was previously supported by Microsoft, but is now deprecated. The extension will remain available in the Visual Studio Code marketplace, but it will no longer receive updates or support. -Alternative solutions are being considered to provide similar functionality for Dapr users. Please stay tuned for future announcements regarding these alternatives. {{% /alert %}} The Visual Studio Code [Dev Containers extension](https://code.visualstudio.com/docs/remote/containers) lets you use a self-contained Docker container as a complete development environment, without installing any additional packages, libraries, or utilities in your local filesystem.