Skip to content

Commit 3716169

Browse files
author
Rob Green
authored
Merge pull request #19 from trossr32/dotnet-outdated
Dependency updates and minor content adjustments.
2 parents 022b6d6 + fd1ce2c commit 3716169

7 files changed

Lines changed: 863 additions & 603 deletions

File tree

.github/workflows/build-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
workflow_dispatch:
99

1010
env:
11-
DOTNET_VERSION: '8.x.x'
11+
DOTNET_VERSION: '9.x.x'
1212
NODE_VERSION: '20.x'
1313
SOLUTION_PATH: 'src/RobGreenEngineering.sln'
1414
PROJECT_PATH: 'src/RobGreenEngineering/RobGreenEngineering.csproj'

.github/workflows/outdated.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: trossr32/outdated-packages-action@v1.6.0
23+
- uses: trossr32/outdated-packages-action@v1.7.0
2424
with:
2525
use-dotnet-outdated: true
2626
dotnet-solution-or-project-path: ${{ env.SOLUTION_PATH }}
2727
dotnet-exclude-packages: ${{ env.EXCLUDE_PACKAGES }}
28+
dotnet-version: '9.*.*'
2829
use-npm-outdated: true
2930
npm-project-directory: ${{ env.PROJECT_DIR }}

src/RobGreenEngineering/RobGreenEngineering.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>disable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<NpmLastInstall>node_modules/.last-install</NpmLastInstall>
@@ -10,10 +10,10 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="Blazored.LocalStorage" Version="4.5.0" />
13-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.4" />
14-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="8.0.4" />
15-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.4" PrivateAssets="all" />
16-
<PackageReference Include="PublishSPAforGitHubPages.Build" Version="2.2.0" />
13+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.1" />
14+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Authentication" Version="9.0.1" />
15+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.1" PrivateAssets="all" />
16+
<PackageReference Include="PublishSPAforGitHubPages.Build" Version="3.0.0" />
1717
</ItemGroup>
1818

1919
<Target Name="CheckForNpm" BeforeTargets="NpmInstall">

src/RobGreenEngineering/Shared/Experience.razor

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,22 @@
66
{
77
Image = "rest-easier-logo",
88
DateRange = "August 2023 - Present",
9-
Role = "Lead Software Engineer",
9+
Role = "Lead Software & Infrastructure Engineer",
1010
Description = "A platform for customers to collect, analyse and understand their assets, liabilities and wishes, allowing them to implement a tax efficient inheritance strategy for their loved ones.",
11-
Url = null
11+
Url = "https://resteasier.co.uk"
1212
},
1313
new()
1414
{
1515
Image = "gecko-logo",
1616
DateRange = "July 2022 - Present",
17-
Role = "Lead Software Engineer",
17+
Role = "Lead Software & Infrastructure Engineer",
1818
Description = "Accumulating and providing in depth Electric Vehicle data to industry stakeholders.",
1919
Url = "https://geckorisk.com"
2020
},
2121
new()
2222
{
2323
Image = "houseful-logo",
24-
DateRange = "September 2023 - Present",
24+
DateRange = "September 2023 - December 2024",
2525
Role = "Tech Lead",
2626
Description = "Houseful is organised around Homes, Software and Data & Risk business units that unlock the connections that power better property decisions. Houseful incorporates Zoopla and Yourkeys alongside multiple other brands and services.",
2727
Url = "https://houseful.co.uk"

src/RobGreenEngineering/Shared/Footer.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<footer class="bg-light-green">
22
<div class="container flex flex-col justify-between py-6 sm:flex-row">
33
<p class="text-center font-header text-white md:text-left">
4-
© Copyright @DateTime.Now.Year. All rights reserved, Rob Green Engineering Ltd.
4+
© Copyright 2022 - @DateTime.Now.Year. All rights reserved, Rob Green Engineering Ltd.
55
</p>
66
<div class="flex items-center justify-center pt-5 sm:justify-start sm:pt-0">
77
<a href="https://github.com/trossr32" target="_blank" title="Rob Green Github">

0 commit comments

Comments
 (0)