From 20f04c934c6de7c29b9425bf31fbdefc8795849a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2026 09:16:05 +0000 Subject: [PATCH 1/2] Bump SharedNetCoreLibrary from 1.2.8 to 1.2.9 --- updated-dependencies: - dependency-name: SharedNetCoreLibrary dependency-version: 1.2.9 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- src/RestApiClientSharp/RestApiClientSharp.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RestApiClientSharp/RestApiClientSharp.csproj b/src/RestApiClientSharp/RestApiClientSharp.csproj index aa38f75..ae14d4d 100644 --- a/src/RestApiClientSharp/RestApiClientSharp.csproj +++ b/src/RestApiClientSharp/RestApiClientSharp.csproj @@ -13,7 +13,7 @@ - + From b8ea54461443315181a0f37b658300279634bf28 Mon Sep 17 00:00:00 2001 From: Andreas Date: Fri, 12 Jun 2026 11:26:38 +0200 Subject: [PATCH 2/2] Fixed build errors due upgrade --- src/RestApiClientSharp.Test.NUnit/UnitTest.cs | 2 +- src/RestApiClientSharp/Interfaces/IRestEventArgs.cs | 2 +- src/RestApiClientSharp/Models/Events/RestEventArgs.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/RestApiClientSharp.Test.NUnit/UnitTest.cs b/src/RestApiClientSharp.Test.NUnit/UnitTest.cs index 9921ef1..a90de71 100644 --- a/src/RestApiClientSharp.Test.NUnit/UnitTest.cs +++ b/src/RestApiClientSharp.Test.NUnit/UnitTest.cs @@ -216,7 +216,7 @@ public async Task TestExecption() } catch (Exception ex) { - Assert.That(ex.Message == "Request failed with status code NotFound"); + Assert.That(ex.Message, Is.EqualTo("Request failed with status code NotFound")); } } #endregion diff --git a/src/RestApiClientSharp/Interfaces/IRestEventArgs.cs b/src/RestApiClientSharp/Interfaces/IRestEventArgs.cs index f6fdce6..5e1938c 100644 --- a/src/RestApiClientSharp/Interfaces/IRestEventArgs.cs +++ b/src/RestApiClientSharp/Interfaces/IRestEventArgs.cs @@ -1,4 +1,4 @@ -using AndreasReitberger.Shared.Core.Models.DTO; +using AndreasReitberger.Shared.Core.DTO; namespace AndreasReitberger.API.REST.Interfaces { diff --git a/src/RestApiClientSharp/Models/Events/RestEventArgs.cs b/src/RestApiClientSharp/Models/Events/RestEventArgs.cs index b2d414c..289a7ae 100644 --- a/src/RestApiClientSharp/Models/Events/RestEventArgs.cs +++ b/src/RestApiClientSharp/Models/Events/RestEventArgs.cs @@ -1,5 +1,5 @@ using AndreasReitberger.API.REST.Interfaces; -using AndreasReitberger.Shared.Core.Models.DTO; +using AndreasReitberger.Shared.Core.DTO; namespace AndreasReitberger.API.REST.Events {