Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"isRoot": true,
"tools": {
"jetbrains.resharper.globaltools": {
"version": "2025.3.0.4",
"version": "2025.3.1",
"commands": [
"jb"
],
Expand Down
2 changes: 1 addition & 1 deletion test/TestBuildingBlocks/TimeExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down