Skip to content

Commit

Permalink
package updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsequitur committed Jan 13, 2025
1 parent 224ed99 commit 1b28104
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
8 changes: 4 additions & 4 deletions src/dotnet-repl.Tests/dotnet-repl.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<ItemGroup>
<PackageReference Include="Assent" Version="2.3.2" />
<PackageReference Include="fluentassertions" Version="6.11.0" />
<PackageReference Include="microsoft.extensions.dependencyinjection" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="microsoft.extensions.dependencyinjection" Version="9.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0-preview-25060-03" />
<PackageReference Include="pocketlogger.for.xunit" Version="0.9.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand All @@ -19,8 +19,8 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="xunit" Version="2.7.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
4 changes: 1 addition & 3 deletions src/dotnet-repl/KernelBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,7 @@ public static CompositeKernel CreateKernel(StartupOptions? options = null)
compositeKernel.Add(jsKernel, new[] { "js" });
compositeKernel.Add(htmlKernel);
compositeKernel.Add(new MarkdownKernel());
compositeKernel.Add(new SqlDiscoverabilityKernel());
compositeKernel.Add(new KqlDiscoverabilityKernel());


var inputKernel = new InputKernel();

compositeKernel.Add(inputKernel);
Expand Down
16 changes: 8 additions & 8 deletions src/dotnet-repl/dotnet-repl.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="microsoft.dotnet.interactive" Version="1.0.0-beta.24568.1" />
<PackageReference Include="microsoft.dotnet.interactive.csharp" Version="1.0.0-beta.24568.1" />
<PackageReference Include="Microsoft.DotNet.Interactive.Documents" Version="1.0.0-beta.24568.1" />
<PackageReference Include="microsoft.dotnet.interactive.fsharp" Version="1.0.0-beta.24568.1" />
<PackageReference Include="Microsoft.Dotnet.Interactive.Browser" Version="1.0.0-beta.24568.1" />
<PackageReference Include="Microsoft.DotNet.Interactive.Http" Version="1.0.0-beta.24568.1" />
<PackageReference Include="microsoft.dotnet.interactive.packagemanagement" Version="1.0.0-beta.24568.1" />
<PackageReference Include="microsoft.dotnet.interactive.powershell" Version="1.0.0-beta.24568.1" />
<PackageReference Include="microsoft.dotnet.interactive" Version="1.0.0-beta.25059.3" />
<PackageReference Include="microsoft.dotnet.interactive.csharp" Version="1.0.0-beta.25059.3" />
<PackageReference Include="Microsoft.DotNet.Interactive.Documents" Version="1.0.0-beta.25059.3" />
<PackageReference Include="microsoft.dotnet.interactive.fsharp" Version="1.0.0-beta.25059.3" />
<PackageReference Include="Microsoft.Dotnet.Interactive.Browser" Version="1.0.0-beta.25059.3" />
<PackageReference Include="Microsoft.DotNet.Interactive.Http" Version="1.0.0-beta.25059.3" />
<PackageReference Include="microsoft.dotnet.interactive.packagemanagement" Version="1.0.0-beta.25059.3" />
<PackageReference Include="microsoft.dotnet.interactive.powershell" Version="1.0.0-beta.25059.3" />
<PackageReference Include="radline" Version="0.7.0" />
<PackageReference Include="Serilog.Sinks.RollingFileAlternate" Version="2.0.9" />
<PackageReference Include="Spectre.Console" Version="0.48.1-preview.0.36" />
Expand Down

0 comments on commit 1b28104

Please sign in to comment.