diff --git a/src/Microsoft.DotNet.Interactive.Kql/KqlKernelExtension.cs b/src/Microsoft.DotNet.Interactive.Kql/KqlKernelExtension.cs
index 324651d1cf..468b54bd0e 100644
--- a/src/Microsoft.DotNet.Interactive.Kql/KqlKernelExtension.cs
+++ b/src/Microsoft.DotNet.Interactive.Kql/KqlKernelExtension.cs
@@ -16,7 +16,7 @@ public static async Task LoadAsync(Kernel kernel)
if (kernel is CompositeKernel compositeKernel)
{
var kqlToolName = "MicrosoftKustoServiceLayer";
- await Utils.CheckAndInstallGlobalToolAsync(kqlToolName, "1.2.0", "Microsoft.SqlServer.KustoServiceLayer.Tool");
+ await Utils.CheckAndInstallGlobalToolAsync(kqlToolName, "1.3.0", "Microsoft.SqlServer.KustoServiceLayer.Tool");
var kqlToolPath = Path.Combine(Paths.DotnetToolsPath, kqlToolName);
compositeKernel
diff --git a/src/Microsoft.DotNet.Interactive.Kql/Microsoft.DotNet.Interactive.Kql.csproj b/src/Microsoft.DotNet.Interactive.Kql/Microsoft.DotNet.Interactive.Kql.csproj
index 8593ec49d2..82faf37e5c 100644
--- a/src/Microsoft.DotNet.Interactive.Kql/Microsoft.DotNet.Interactive.Kql.csproj
+++ b/src/Microsoft.DotNet.Interactive.Kql/Microsoft.DotNet.Interactive.Kql.csproj
@@ -28,7 +28,7 @@
-
+
diff --git a/src/Microsoft.DotNet.Interactive.SqlServer/ConnectMsSqlCommand.cs b/src/Microsoft.DotNet.Interactive.SqlServer/ConnectMsSqlCommand.cs
index 6bbe8b4ff9..e8f7ea96d4 100644
--- a/src/Microsoft.DotNet.Interactive.SqlServer/ConnectMsSqlCommand.cs
+++ b/src/Microsoft.DotNet.Interactive.SqlServer/ConnectMsSqlCommand.cs
@@ -83,8 +83,8 @@ private async Task InitializeDbContextAsync(string kernelName, MsSqlKernelConnec
context.DisplayAs($"Scaffolding a `DbContext` and initializing an instance of it called `{kernelName}` in the C# kernel.", "text/markdown");
var submission1 = @$"
-#r ""nuget: Microsoft.EntityFrameworkCore.Design, 7.0.0""
-#r ""nuget: Microsoft.EntityFrameworkCore.SqlServer, 7.0.0""
+#r ""nuget: Microsoft.EntityFrameworkCore.Design, 7.0.13""
+#r ""nuget: Microsoft.EntityFrameworkCore.SqlServer, 7.0.13""
#r ""nuget: Humanizer.Core, 2.14.1""
#r ""nuget: Humanizer, 2.14.1""
#r ""nuget: Microsoft.Identity.Client, 4.48.1""
diff --git a/src/Microsoft.DotNet.Interactive.SqlServer/Microsoft.DotNet.Interactive.SqlServer.csproj b/src/Microsoft.DotNet.Interactive.SqlServer/Microsoft.DotNet.Interactive.SqlServer.csproj
index 0dfa0ffff1..609bb6953b 100644
--- a/src/Microsoft.DotNet.Interactive.SqlServer/Microsoft.DotNet.Interactive.SqlServer.csproj
+++ b/src/Microsoft.DotNet.Interactive.SqlServer/Microsoft.DotNet.Interactive.SqlServer.csproj
@@ -25,15 +25,15 @@
-
+
-
-
-
+
+
+
all
runtime; build; native; contentfiles; analyzers; buildtransitive
-
+
diff --git a/src/Microsoft.DotNet.Interactive.SqlServer/MsSqlKernelExtension.cs b/src/Microsoft.DotNet.Interactive.SqlServer/MsSqlKernelExtension.cs
index bce85dfd6a..87a61e13fb 100644
--- a/src/Microsoft.DotNet.Interactive.SqlServer/MsSqlKernelExtension.cs
+++ b/src/Microsoft.DotNet.Interactive.SqlServer/MsSqlKernelExtension.cs
@@ -15,7 +15,7 @@ public static async Task LoadAsync(Kernel kernel)
if (kernel is CompositeKernel compositeKernel)
{
var sqlToolName = "MicrosoftSqlToolsServiceLayer";
- await Utils.CheckAndInstallGlobalToolAsync(sqlToolName, "1.2.0", "Microsoft.SqlServer.SqlToolsServiceLayer.Tool");
+ await Utils.CheckAndInstallGlobalToolAsync(sqlToolName, "1.3.0", "Microsoft.SqlServer.SqlToolsServiceLayer.Tool");
var sqlToolPath = Path.Combine(Paths.DotnetToolsPath, sqlToolName);
compositeKernel