From e34e932ab86f07eb00f0c84c1cbc858c4b54e3f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Dec 2025 16:07:30 +0000 Subject: [PATCH 1/2] Bump jetbrains.resharper.globaltools from 2025.3.0.4 to 2025.3.1 --- updated-dependencies: - dependency-name: jetbrains.resharper.globaltools dependency-version: 2025.3.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 663db1f..c98fe38 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "jetbrains.resharper.globaltools": { - "version": "2025.3.0.4", + "version": "2025.3.1", "commands": [ "jb" ], From fa08f93f586fd730b18e5267297266f54b638c7d Mon Sep 17 00:00:00 2001 From: Bart Koelman <10324372+bkoelman@users.noreply.github.com> Date: Sat, 20 Dec 2025 00:53:42 +0100 Subject: [PATCH 2/2] Adapt to changed formatting rules --- test/TestBuildingBlocks/TimeExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TestBuildingBlocks/TimeExtensions.cs b/test/TestBuildingBlocks/TimeExtensions.cs index 8222994..21ec829 100644 --- a/test/TestBuildingBlocks/TimeExtensions.cs +++ b/test/TestBuildingBlocks/TimeExtensions.cs @@ -12,7 +12,7 @@ public static DateTimeOffset TruncateToWholeMilliseconds(this DateTimeOffset val // Because MongoDB does not store the UTC offset in the database, it cannot round-trip // values with a non-zero UTC offset. - DateTime dateTime = TruncateToWholeMilliseconds(value.DateTime); + DateTime dateTime = value.DateTime.TruncateToWholeMilliseconds(); return new DateTimeOffset(dateTime, TimeSpan.Zero); }