update sql projects strings to install .net 6 SDK instead of .net core 3.1 (#21235)

* update sql projects strings to install .net 6 SDK instead of .net core 3.1

* update to us aka.ms link
This commit is contained in:
Kim Santiago
2022-11-21 11:53:12 -08:00
committed by GitHub
parent 46aec180e2
commit 3932332694
3 changed files with 5 additions and 5 deletions

View File

@@ -78,8 +78,8 @@ export class NetCoreTool extends ShellExecutionHelper {
await vscode.commands.executeCommand('workbench.action.openGlobalSettings');
} else if (result === Install) {
//open install link
const dotnetcoreURL = 'https://dotnet.microsoft.com/download/dotnet-core/3.1';
await vscode.env.openExternal(vscode.Uri.parse(dotnetcoreURL));
const dotnetSdkUrl = 'https://aka.ms/sqlprojects-dotnet';
await vscode.env.openExternal(vscode.Uri.parse(dotnetSdkUrl));
} else if (result === DoNotAskAgain) {
const config = vscode.workspace.getConfiguration(DBProjectConfigurationKey);
await config.update(NetCoreDoNotAskAgainKey, true, vscode.ConfigurationTarget.Global);