-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Migrate project and dependencies to target .NET 6.0 RC1 * Update Program startup code to the new .NET 6 template format Consolidating Program.cs and Startup.cs in a single file * Update Github Actions to use .Net Core 6.0 preview * Update Program startup code to .NET 6 changes Remove DeveloperExceptionPage middleware as it is now added by the framework automatically UseEndpoints braces are no longer required and we can map controller routes directly to the app As per https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-net-6-rc-1/#developer-exception-page-middleware-change * Update dotnet-ef to version 6 RC * Update database migration methods to EF 6 changes As some have been deprecated * Update Hashing methods to .NET 6 changes As some have been deprecated * Change some helper methods to be static * Update exception throwing to include the parameter * Use new C# idioms & features * Update package references to .NET 6 RC2 * Update dependencies Update IdentityModel to 5.2.0 Remove unneeded development dependencies * Update package references to .NET 6.0 (final) * Update the EntityFramework CLI tool to 6.0 (final) * Update GitHub Actions to .NET 6 (final) Note : There is still a workaround in place to enable .NET 6 in the CodeQL GitHub Action.
- Loading branch information
Showing
14 changed files
with
297 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
] | ||
}, | ||
"dotnet-ef": { | ||
"version": "5.0.7", | ||
"version": "6.0.0", | ||
"commands": [ | ||
"dotnet-ef" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
63 changes: 34 additions & 29 deletions
63
Source/WebApp-Service-Provider-DotNet/Migrations/20210929141814_InitialCreate.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.