mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-10-05 07:39:39 +00:00
Update to .NET 8 and C# 12 (#952)
* Initial SDK and dependency bumps * Bump Pomelo.EntityFrameworkCore.MySql to 8.0.0-beta.2 Should fix the MissingMethodException error in unit tests * Update CI workflow to use .NET 8 * Apply suggested change from compile time warnings * Fix digest tests * Bump dependencies once more * Update xunit * Remove obsolete ISystemClock from TokenAuthHandler * Update dependencies * Add digest debug preprocessors back * Maybe don't break #966 * Bump EF Driver and update various NET7 references * Fix warnings in digest middleware tests --------- Co-authored-by: Slendy <josh@slendy.pw>
This commit is contained in:
parent
a2eaedc85b
commit
01e6fa191a
20 changed files with 104 additions and 110 deletions
|
@ -17,10 +17,8 @@ public class TokenAuthHandler : AuthenticationHandler<AuthenticationSchemeOption
|
|||
(
|
||||
IOptionsMonitor<AuthenticationSchemeOptions> options,
|
||||
UrlEncoder encoder,
|
||||
ISystemClock clock,
|
||||
DatabaseContext database
|
||||
// I said I don't want any damn vegetables (logs)
|
||||
) : base(options, new NullLoggerFactory(), encoder, clock)
|
||||
) : base(options, new NullLoggerFactory(), encoder)
|
||||
{
|
||||
this.database = database;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue