- Now uses EntityFrameworkCore for database operations - HTTP handlers have all been refactored to use ASP.NET MVC controllers, and generally to be more idiomatic and remove copied boilerplate ugliness - Authentication/Authorization refactored to use native ASP.NET core handlers - Switch to Microsoft.Extensions.Logging instead of handrolled logging method
9 lines
351 B
C#
9 lines
351 B
C#
using Computernewb.CollabVMAuthServer.Database;
|
|
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Computernewb.CollabVMAuthServer.HTTP;
|
|
|
|
public class CollabVMAuthenticationSchemeOptions : AuthenticationSchemeOptions {
|
|
public DbContextOptions<CollabVMAuthDbContext> DbContextOptions { get; set; } = new();
|
|
} |