Update NuGet packages to resolve build warnings. #16
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several updates to package dependencies and a modification to the Swagger UI configuration. The most important changes are the upgrade of various package versions and the change from
UseSwaggerUi3
toUseSwaggerUi
.This PR does not update all packages to the most current version. It is currently limited to package updates to resolve build warnings.
Package dependency updates:
api/src/referenceApp.Api/referenceApp.Api.csproj
: UpgradedMicrosoft.Azure.Cosmos
,Microsoft.EntityFrameworkCore.Cosmos
,Microsoft.EntityFrameworkCore.SqlServer
,Microsoft.EntityFrameworkCore.Tools
,NSwag.AspNetCore
, andNSwag.MSBuild
to newer versions.api/src/referenceApp.Persistence/referenceApp.Persistence.csproj
: UpgradedMicrosoft.EntityFrameworkCore
,Microsoft.EntityFrameworkCore.InMemory
, andMicrosoft.EntityFrameworkCore.Sqlite
to version 8.0.0.Swagger UI configuration update:
api/src/referenceApp.Api/Startup.cs
: Changed the method call fromUseSwaggerUi3
toUseSwaggerUi
(change in NSwag v14 announcement)