Bump to net9.0

This commit is contained in:
2025-07-07 14:16:48 +01:00
parent 9f357b4b0e
commit b97f3d3575
23 changed files with 1026 additions and 116 deletions

View File

@ -87,7 +87,7 @@ namespace isnd.tests
TestingUserName = "Tester";
TestingUser = dbContext.Users.FirstOrDefault(u => u.UserName == TestingUserName);
EnsureUser(TestingUserName);
var testKey = dbContext.ApiKeys.FirstOrDefault(k => k.UserId == TestingUser.Id);
var testKey = dbContext.ApiKey.FirstOrDefault(k => k.UserId == TestingUser.Id);
if (testKey == null)
{
var keyProvider = scope.ServiceProvider.GetService<IApiKeyProvider>();