From a9166194cb0a51aeaea1fcbfdf980e98e16cb9d4 Mon Sep 17 00:00:00 2001 From: AkshayMata Date: Fri, 24 Feb 2023 08:57:06 -0800 Subject: [PATCH] Update migration service to 4.5.0.28 (#22020) This PR updates the JSON-RPC Migration service to the latest version. Critically, it also changes the dotnet version to 7.0. The STS dotnet version was recently changed, which changed the names of the release packages and broke our existing links. --- extensions/sql-migration/config.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/extensions/sql-migration/config.json b/extensions/sql-migration/config.json index b6bebf8f80..cb0302d8ad 100644 --- a/extensions/sql-migration/config.json +++ b/extensions/sql-migration/config.json @@ -1,12 +1,12 @@ { "downloadUrl": "https://github.com/Microsoft/sqltoolsservice/releases/download/{#version#}/microsoft.sqltools.migration-{#fileName#}", "useDefaultLinuxRuntime": true, - "version": "4.5.0.12", + "version": "4.5.0.28", "downloadFileNames": { - "Windows_86": "win-x86-net6.0.zip", - "Windows_64": "win-x64-net6.0.zip", - "OSX": "osx-x64-net6.0.tar.gz", - "Linux": "rhel-x64-net6.0.tar.gz" + "Windows_86": "win-x86-net7.0.zip", + "Windows_64": "win-x64-net7.0.zip", + "OSX": "osx-x64-net7.0.tar.gz", + "Linux": "rhel-x64-net7.0.tar.gz" }, "installDirectory": "./migrationService/{#platform#}/{#version#}", "executableFiles": ["MicrosoftSqlToolsMigration", "MicrosoftSqlToolsMigration.exe"],