Skip to content

Commit cc0bb8a

Browse files
committed
Bump MinVer.Cli from 2.4.0 to 2.5.0
1 parent 924a429 commit cc0bb8a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Source/ApiTemplate/Source/ApiTemplate/Commands/GetCarPageCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public async Task<IActionResult> ExecuteAsync(PageOptions pageOptions, Cancellat
4141
throw new ArgumentNullException(nameof(pageOptions));
4242
}
4343

44-
pageOptions.First = pageOptions.First.HasValue && pageOptions.Last.HasValue ? DefaultPageSize : pageOptions.First;
44+
pageOptions.First = !pageOptions.First.HasValue && !pageOptions.Last.HasValue ? DefaultPageSize : pageOptions.First;
4545
var createdAfter = Cursor.FromCursor<DateTimeOffset?>(pageOptions.After);
4646
var createdBefore = Cursor.FromCursor<DateTimeOffset?>(pageOptions.Before);
4747

Source/ApiTemplate/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"minver-cli": {
12-
"version": "2.4.0",
12+
"version": "2.5.0",
1313
"commands": [
1414
"minver"
1515
]

Source/GraphQLTemplate/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"minver-cli": {
12-
"version": "2.4.0",
12+
"version": "2.5.0",
1313
"commands": [
1414
"minver"
1515
]

Source/OrleansTemplate/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"minver-cli": {
12-
"version": "2.4.0",
12+
"version": "2.5.0",
1313
"commands": [
1414
"minver"
1515
]

0 commit comments

Comments
 (0)