From b09b0f01e0497c5ec4e520208e8d8852934c1e72 Mon Sep 17 00:00:00 2001 From: MarvinKlein1508 Date: Thu, 14 Nov 2024 14:49:09 +0100 Subject: [PATCH 1/2] Update to .NET 9 --- BlazorSRRDemo/BlazorSRRDemo/BlazorSRRDemo.csproj | 6 +++--- BlazorServerDemo/BlazorServerDemo.csproj | 2 +- BlazorWebAssemblyDemo/BlazorWebAssemblyDemo.csproj | 8 ++++---- Demos.Core/Demos.Core.csproj | 6 +++--- MudBlazorDemo/MudBlazorDemo.csproj | 2 +- SignaturePad/SignaturePad.csproj | 14 +++++++++----- 6 files changed, 21 insertions(+), 17 deletions(-) diff --git a/BlazorSRRDemo/BlazorSRRDemo/BlazorSRRDemo.csproj b/BlazorSRRDemo/BlazorSRRDemo/BlazorSRRDemo.csproj index e611b27..0a4347b 100644 --- a/BlazorSRRDemo/BlazorSRRDemo/BlazorSRRDemo.csproj +++ b/BlazorSRRDemo/BlazorSRRDemo/BlazorSRRDemo.csproj @@ -1,7 +1,7 @@ - + - net8.0 + net9.0 enable enable @@ -9,7 +9,7 @@ - + diff --git a/BlazorServerDemo/BlazorServerDemo.csproj b/BlazorServerDemo/BlazorServerDemo.csproj index a3ee8a2..deeaff8 100644 --- a/BlazorServerDemo/BlazorServerDemo.csproj +++ b/BlazorServerDemo/BlazorServerDemo.csproj @@ -1,7 +1,7 @@  - net8.0 + net9.0 enable enable diff --git a/BlazorWebAssemblyDemo/BlazorWebAssemblyDemo.csproj b/BlazorWebAssemblyDemo/BlazorWebAssemblyDemo.csproj index 9faf3f3..aa35415 100644 --- a/BlazorWebAssemblyDemo/BlazorWebAssemblyDemo.csproj +++ b/BlazorWebAssemblyDemo/BlazorWebAssemblyDemo.csproj @@ -1,15 +1,15 @@  - net8.0 + net9.0 enable enable - - - + + + diff --git a/Demos.Core/Demos.Core.csproj b/Demos.Core/Demos.Core.csproj index d9eedb4..6534b9a 100644 --- a/Demos.Core/Demos.Core.csproj +++ b/Demos.Core/Demos.Core.csproj @@ -1,7 +1,7 @@ - + - net8.0 + net9.0 enable enable @@ -12,7 +12,7 @@ - + diff --git a/MudBlazorDemo/MudBlazorDemo.csproj b/MudBlazorDemo/MudBlazorDemo.csproj index 415b23f..1d5ee84 100644 --- a/MudBlazorDemo/MudBlazorDemo.csproj +++ b/MudBlazorDemo/MudBlazorDemo.csproj @@ -1,7 +1,7 @@  - net8.0 + net9.0 enable enable diff --git a/SignaturePad/SignaturePad.csproj b/SignaturePad/SignaturePad.csproj index 34e222f..0c780cf 100644 --- a/SignaturePad/SignaturePad.csproj +++ b/SignaturePad/SignaturePad.csproj @@ -1,12 +1,12 @@  - net8.0 + net8.0;net9.0 enable enable - 8.1.5 + 9.0.0 A simple to use blazor component to draw a signature. - 2023 + 2023 - 2024 https://github.com/MarvinKlein1508/SignaturePad git unterschrift, signature @@ -34,8 +34,12 @@ - - + + + + + + From 97e6020341ff497c1f2312e2720aa6f75bc05617 Mon Sep 17 00:00:00 2001 From: MarvinKlein1508 Date: Thu, 14 Nov 2024 14:49:53 +0100 Subject: [PATCH 2/2] Update workload to target .NET 9 --- .github/workflows/github-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 2ae3db7..6978fd5 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -19,7 +19,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Restore dependencies run: dotnet restore - name: Install .NET WASM Build Tools