Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all dependencies #60

Merged
merged 2 commits into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/NodeDev.Blazor.MAUI/NodeDev.Blazor.MAUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="$(MauiVersion)" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0-rc.2.24473.5" />
<PackageReference Include="Microsoft.Maui.Controls" Version="9.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="9.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/NodeDev.Blazor/NodeDev.Blazor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

<ItemGroup>
<PackageReference Include="BlazorMonaco" Version="3.2.0" />
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="7.0.0-rc.1" />
<PackageReference Include="CodeBeam.MudBlazor.Extensions" Version="7.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.0" />
<PackageReference Include="MudBlazor" Version="7.2.0" />
<PackageReference Include="MudBlazor" Version="7.15.0" />
<PackageReference Include="Snakex64.Z.Blazor.Diagrams" Version="99.0.3" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/NodeDev.Core/Class/NodeClassTypeCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Options = buildOptions;
}

private static Assembly TemporaryReflectionAssembly;

Check warning on line 35 in src/NodeDev.Core/Class/NodeClassTypeCreator.cs

View workflow job for this annotation

GitHub Actions / Builds the entire solution

Non-nullable field 'TemporaryReflectionAssembly' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable.
public void CreateProjectClassesAndAssembly()
{
// TODO Remove this when the new System.Reflection.Emit is available in .NET 10
Expand Down Expand Up @@ -141,7 +141,7 @@
str.AppendLine(")");
str.AppendLine("{");
str.Append(new string(' ', 4));
expression.Body.ToCSharpString(str, lineIdent: 4);
expression.Body.ToCSharpString(str, indentSpaces: 4);
str.AppendLine();
str.Append('}');

Expand Down
2 changes: 1 addition & 1 deletion src/NodeDev.Core/NodeDev.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FastExpressionCompiler" Version="4.2.2" />
<PackageReference Include="FastExpressionCompiler" Version="5.0.0" />
<PackageReference Include="NuGet.Versioning" Version="6.12.1" />
<PackageReference Include="System.Reactive" Version="6.0.1" />
<PackageReference Include="snakex64.Dis2Msil" Version="1.0.0" />
Expand Down
4 changes: 2 additions & 2 deletions src/NodeDev.EndToEndTests/NodeDev.EndToEndTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Microsoft.Playwright.NUnit" Version="1.48.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="Microsoft.Playwright.NUnit" Version="1.49.0" />
<PackageReference Include="Reqnroll.NUnit" Version="2.2.1" />
<PackageReference Include="nunit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
Expand Down
2 changes: 1 addition & 1 deletion src/NodeDev.Tests/NodeDev.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
Expand Down
Loading