Upgrade to .NET 6 and update all dependencies

This commit is contained in:
Neil Brommer 2022-04-28 08:57:58 -07:00
parent 2356fbab4f
commit 28747dfe5b
17 changed files with 698 additions and 58 deletions

View file

@ -64,7 +64,7 @@ namespace Start.Server.Controllers {
return Created(
Url.Action(nameof(this.GetBookmarkContainer),
new { bookmarkContainerId = container.BookmarkContainerId }),
new { bookmarkContainerId = container.BookmarkContainerId })!,
container);
}

View file

@ -46,7 +46,7 @@ namespace Start.Server.Controllers {
return Created(
Url.Action(nameof(GetBookmarkGroup),
new { bookmarkGroupId = newGroup.BookmarkGroupId }),
new { bookmarkGroupId = newGroup.BookmarkGroupId })!,
newGroup.MapToDto());
}

View file

@ -47,7 +47,7 @@ namespace Start.Server.Controllers {
return BadRequest();
return Created(
Url.Action(nameof(this.GetBookmark),new { bookmarkId = bookmark.BookmarkId }),
Url.Action(nameof(this.GetBookmark),new { bookmarkId = bookmark.BookmarkId })!,
bookmark);
}