Skip to content

Commit

Permalink
Bump minimum version for SQL Tools and Kusto packages
Browse files Browse the repository at this point in the history
  • Loading branch information
corivera authored and colombod committed Apr 4, 2024
1 parent 0eab9c1 commit 0d5f733
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Microsoft.DotNet.Interactive.Kql/KqlKernelExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static async Task LoadAsync(Kernel kernel)
if (kernel is CompositeKernel compositeKernel)
{
var kqlToolName = "MicrosoftKustoServiceLayer";
await Utils.CheckAndInstallGlobalToolAsync(kqlToolName, "1.3.0", "Microsoft.SqlServer.KustoServiceLayer.Tool");
await Utils.CheckAndInstallGlobalToolAsync(kqlToolName, "2.0.0", "Microsoft.SqlServer.KustoServiceLayer.Tool");

var kqlToolPath = Path.Combine(Paths.DotnetToolsPath, kqlToolName);
compositeKernel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static async Task LoadAsync(Kernel kernel)
if (kernel is CompositeKernel compositeKernel)
{
var sqlToolName = "MicrosoftSqlToolsServiceLayer";
await Utils.CheckAndInstallGlobalToolAsync(sqlToolName, "1.3.0", "Microsoft.SqlServer.SqlToolsServiceLayer.Tool");
await Utils.CheckAndInstallGlobalToolAsync(sqlToolName, "2.0.0", "Microsoft.SqlServer.SqlToolsServiceLayer.Tool");

var sqlToolPath = Path.Combine(Paths.DotnetToolsPath, sqlToolName);
compositeKernel
Expand Down

0 comments on commit 0d5f733

Please sign in to comment.