Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsequitur committed Dec 28, 2022
1 parent 52661b0 commit 91b97de
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/dotnet-repl.Tests/Utility/RenderSpy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class RenderSpy : IRenderHook
{
public List<IRenderable> Renderables { get; } = new();

public IEnumerable<IRenderable> Process(RenderContext context, IEnumerable<IRenderable> renderables)
public IEnumerable<IRenderable> Process(RenderOptions options, IEnumerable<IRenderable> renderables)
{
Renderables.AddRange(renderables);
return renderables;
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet-repl.Tests/dotnet-repl.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Include="Assent" Version="2.1.0" />
<PackageReference Include="fluentassertions" Version="6.8.0" />
<PackageReference Include="microsoft.extensions.dependencyinjection" Version="6.0.0" />
<PackageReference Include="microsoft.extensions.dependencyinjection" Version="7.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="pocketlogger.for.xunit" Version="0.6.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet-repl/KernelSpecificTheme.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public abstract class KernelSpecificTheme : Theme
"javascript" => new JavaScriptTheme(),
"sql" => new SqlTheme(),
"html" => new HtmlTheme(),
"httpRequest" => new HttpRequestTheme(),
"http" => new HttpRequestTheme(),
_ => null
};
}
Expand Down
4 changes: 3 additions & 1 deletion src/dotnet-repl/SpectreHelpBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ private HelpSectionDelegate TitleSection(IAnsiConsole console) =>
{
var panel = new Grid();
panel.AddColumn(new GridColumn());
panel.AddRow(new FigletText(".NET REPL").Color(Color.SandyBrown).Alignment(Justify.Center));
var figletText = new FigletText(".NET REPL").Color(Color.SandyBrown);
figletText.Justification = Justify.Center;
panel.AddRow(figletText);
console.Write(panel);
};

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 @@ -25,17 +25,17 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="microsoft.dotnet.interactive" Version="1.0.0-beta.22606.2" />
<PackageReference Include="microsoft.dotnet.interactive.csharp" Version="1.0.0-beta.22606.2" />
<PackageReference Include="Microsoft.DotNet.Interactive.Documents" Version="1.0.0-beta.22606.2" />
<PackageReference Include="microsoft.dotnet.interactive.fsharp" Version="1.0.0-beta.22606.2" />
<PackageReference Include="Microsoft.Dotnet.Interactive.Browser" Version="1.0.0-beta.22606.2" />
<PackageReference Include="Microsoft.DotNet.Interactive.HttpRequest" Version="1.0.0-beta.22606.2" />
<PackageReference Include="microsoft.dotnet.interactive.powershell" Version="1.0.0-beta.22606.2" />
<PackageReference Include="microsoft.dotnet.interactive" Version="1.0.0-beta.22627.2" />
<PackageReference Include="microsoft.dotnet.interactive.csharp" Version="1.0.0-beta.22627.2" />
<PackageReference Include="Microsoft.DotNet.Interactive.Documents" Version="1.0.0-beta.22627.2" />
<PackageReference Include="microsoft.dotnet.interactive.fsharp" Version="1.0.0-beta.22627.2" />
<PackageReference Include="Microsoft.Dotnet.Interactive.Browser" Version="1.0.0-beta.22627.2" />
<PackageReference Include="Microsoft.DotNet.Interactive.HttpRequest" Version="1.0.0-beta.22627.2" />
<PackageReference Include="microsoft.dotnet.interactive.powershell" Version="1.0.0-beta.22627.2" />
<PackageReference Include="radline" Version="0.6.0" />
<PackageReference Include="Serilog.Sinks.RollingFileAlternate" Version="2.0.9" />
<PackageReference Include="system.reactive" Version="5.0.0" />
<PackageReference Include="Spectre.Console" Version="0.45.1-preview.0.28" />
<PackageReference Include="Spectre.Console" Version="0.45.1-preview.0.47" />
<PackageReference Include="trexlib" Version="1.0.188" />
<PackageReference Include="pocket.disposable" Version="1.1.0">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 91b97de

Please sign in to comment.