Skip to content

Commit 9088d57

Browse files
authored
Merge pull request #103 from codemonkey85/dev
Update dependencies and solution file format
2 parents 572accb + 891d884 commit 9088d57

7 files changed

Lines changed: 14 additions & 38 deletions

File tree

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,7 @@ resharper_web_config_type_not_resolved_highlighting = warning
340340
resharper_web_config_wrong_module_highlighting = warning
341341
csharp_style_prefer_unbound_generic_type_in_nameof = true:suggestion
342342
csharp_style_prefer_implicitly_typed_lambda_expression = true:suggestion
343+
csharp_style_prefer_simple_property_accessors = true:suggestion
343344

344345
[*.{cs,vb}]
345346
dotnet_style_coalesce_expression = true:suggestion

.github/workflows/buildandtest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
# uses GitHub's checkout action to checkout code form the release branch
2626
- name: Checkout code
27-
uses: actions/checkout@v5.0.0
27+
uses: actions/checkout@v6.0.0
2828

2929
# sets up .NET SDK
3030
- name: Setup .NET

.github/workflows/main_aboutcodemonkey85.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
# uses GitHub's checkout action to checkout code form the main branch
2323
- name: Checkout code
24-
uses: actions/checkout@v5.0.0
24+
uses: actions/checkout@v6.0.0
2525

2626
# sets up .NET SDK
2727
- name: Setup .NET

AboutMe/Wasm/AboutMe.Wasm.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Humanizer" Version="2.14.1"/>
16-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0"/>
17-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.0" PrivateAssets="all"/>
18-
<PackageReference Include="MudBlazor" Version="8.14.0"/>
15+
<PackageReference Include="Humanizer" Version="3.0.1" />
16+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0" />
17+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.0" PrivateAssets="all" />
18+
<PackageReference Include="MudBlazor" Version="8.15.0" />
1919
</ItemGroup>
2020

2121
</Project>

AboutMe/Wasm/GlobalUsings.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
global using AboutMe.Wasm;
22
global using AboutMe.Wasm.Components;
33
global using Humanizer;
4-
global using Humanizer.Localisation;
54
global using Microsoft.AspNetCore.Components.Web;
65
global using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
76
global using MudBlazor;

aboutme.sln

Lines changed: 0 additions & 31 deletions
This file was deleted.

aboutme.slnx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Solution>
2+
<Folder Name="/Solution Items/">
3+
<File Path=".editorconfig" />
4+
<File Path="global.json" />
5+
</Folder>
6+
<Project Path="AboutMe/Wasm/AboutMe.Wasm.csproj" />
7+
</Solution>

0 commit comments

Comments
 (0)