From 48aaba29bfb49daa1301a0a64adfa7aa988279d2 Mon Sep 17 00:00:00 2001 From: Andrew Wang Date: Tue, 5 Oct 2021 13:39:17 -0700 Subject: [PATCH 1/2] Add Debug Welcome View This PR adds a welcome view when the debug language detected is C#. --- package.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 1040841f74..397cf1c821 100644 --- a/package.json +++ b/package.json @@ -3741,6 +3741,13 @@ "group": "2_dotnet@2" } ] - } + }, + "viewsWelcome": [ + { + "view": "debug", + "contents": "[Generate C# Assets for Build and Debug](command:dotnet.generateAssets)\n\nTo learn more about launch.json, see [Configuring launch.json for C# debugging](https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md).", + "when": "debugStartLanguage == csharp" + } + ] } } \ No newline at end of file From a542e860418dec897e22e742af643a09318c8bbc Mon Sep 17 00:00:00 2001 From: Andrew Wang Date: Tue, 5 Oct 2021 13:50:16 -0700 Subject: [PATCH 2/2] Use aka.ms link --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 397cf1c821..63500df7ee 100644 --- a/package.json +++ b/package.json @@ -3745,7 +3745,7 @@ "viewsWelcome": [ { "view": "debug", - "contents": "[Generate C# Assets for Build and Debug](command:dotnet.generateAssets)\n\nTo learn more about launch.json, see [Configuring launch.json for C# debugging](https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md).", + "contents": "[Generate C# Assets for Build and Debug](command:dotnet.generateAssets)\n\nTo learn more about launch.json, see [Configuring launch.json for C# debugging](https://aka.ms/VSCode-CS-LaunchJson).", "when": "debugStartLanguage == csharp" } ]