bump dependencies, switch framework base

This commit is contained in:
Elijah R
2025-05-05 17:51:31 -04:00
parent 1a3224ab0b
commit 2d687c1440
15 changed files with 56 additions and 7 deletions

View File

@@ -1,3 +1,5 @@
using System;
namespace Computernewb.CollabVMAuthServer; namespace Computernewb.CollabVMAuthServer;
public class Bot public class Bot

View File

@@ -1,21 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk.Web"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>disable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization> <InvariantGlobalization>true</InvariantGlobalization>
<PublishAot>false</PublishAot> <PublishAot>false</PublishAot>
<RootNamespace>Computernewb.CollabVMAuthServer</RootNamespace> <RootNamespace>Computernewb.CollabVMAuthServer</RootNamespace>
<Company>Computernewb Development Team</Company> <Company>Computernewb Development Team</Company>
<AssemblyVersion>1.1</AssemblyVersion> <AssemblyVersion>1.1</AssemblyVersion>
<OutputType>Exe</OutputType>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Isopoh.Cryptography.Argon2" Version="2.0.0" /> <PackageReference Include="Isopoh.Cryptography.Argon2" Version="2.0.0" />
<PackageReference Include="MailKit" Version="4.4.0" /> <PackageReference Include="MailKit" Version="4.12.0" />
<PackageReference Include="MySqlConnector" Version="2.3.6" /> <PackageReference Include="MySqlConnector" Version="2.4.0" />
<PackageReference Include="Samboy063.Tomlet" Version="5.3.1" /> <PackageReference Include="Samboy063.Tomlet" Version="6.0.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@@ -1,3 +1,6 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Timer = System.Timers.Timer; using Timer = System.Timers.Timer;
namespace Computernewb.CollabVMAuthServer; namespace Computernewb.CollabVMAuthServer;

View File

@@ -1,5 +1,8 @@
using System;
using System.Collections.Generic;
using System.Data; using System.Data;
using System.Net; using System.Net;
using System.Threading.Tasks;
using Isopoh.Cryptography.Argon2; using Isopoh.Cryptography.Argon2;
using MySqlConnector; using MySqlConnector;

View File

@@ -1,4 +1,7 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using System.Threading.Tasks;
namespace Computernewb.CollabVMAuthServer; namespace Computernewb.CollabVMAuthServer;

View File

@@ -1,7 +1,13 @@
using System;
using System.Linq;
using System.Net; using System.Net;
using System.Text.Json; using System.Text.Json;
using System.Threading.Tasks;
using Computernewb.CollabVMAuthServer.HTTP.Payloads; using Computernewb.CollabVMAuthServer.HTTP.Payloads;
using Computernewb.CollabVMAuthServer.HTTP.Responses; using Computernewb.CollabVMAuthServer.HTTP.Responses;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing;
namespace Computernewb.CollabVMAuthServer.HTTP; namespace Computernewb.CollabVMAuthServer.HTTP;

View File

@@ -1,6 +1,12 @@
using System;
using System.Linq;
using System.Text.Json; using System.Text.Json;
using System.Threading.Tasks;
using Computernewb.CollabVMAuthServer.HTTP.Payloads; using Computernewb.CollabVMAuthServer.HTTP.Payloads;
using Computernewb.CollabVMAuthServer.HTTP.Responses; using Computernewb.CollabVMAuthServer.HTTP.Responses;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Routing;
namespace Computernewb.CollabVMAuthServer.HTTP; namespace Computernewb.CollabVMAuthServer.HTTP;

View File

@@ -1,9 +1,14 @@
using System;
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Net; using System.Net;
using System.Text.Json; using System.Text.Json;
using System.Threading.Tasks;
using Computernewb.CollabVMAuthServer.HTTP.Payloads; using Computernewb.CollabVMAuthServer.HTTP.Payloads;
using Computernewb.CollabVMAuthServer.HTTP.Responses; using Computernewb.CollabVMAuthServer.HTTP.Responses;
using Isopoh.Cryptography.Argon2; using Isopoh.Cryptography.Argon2;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Http;
namespace Computernewb.CollabVMAuthServer.HTTP; namespace Computernewb.CollabVMAuthServer.HTTP;

View File

@@ -1,3 +1,4 @@
using System;
using System.Net; using System.Net;
namespace Computernewb.CollabVMAuthServer; namespace Computernewb.CollabVMAuthServer;

View File

@@ -1,3 +1,5 @@
using System;
using System.Threading.Tasks;
using MailKit.Net.Smtp; using MailKit.Net.Smtp;
using MailKit.Security; using MailKit.Security;
using MimeKit; using MimeKit;

View File

@@ -1,6 +1,13 @@
using System;
using System.IO;
using System.Net; using System.Net;
using System.Reflection; using System.Reflection;
using System.Threading.Tasks;
using Computernewb.CollabVMAuthServer.HTTP; using Computernewb.CollabVMAuthServer.HTTP;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Tomlet; using Tomlet;
namespace Computernewb.CollabVMAuthServer; namespace Computernewb.CollabVMAuthServer;

View File

@@ -1,3 +1,4 @@
using System;
using System.Net; using System.Net;
namespace Computernewb.CollabVMAuthServer; namespace Computernewb.CollabVMAuthServer;

View File

@@ -1,3 +1,4 @@
using System;
using System.Net; using System.Net;
namespace Computernewb.CollabVMAuthServer; namespace Computernewb.CollabVMAuthServer;

View File

@@ -1,8 +1,12 @@
using System;
using System.Linq;
using System.Net; using System.Net;
using System.Text; using System.Text;
using System.Text.Json; using System.Text.Json;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
namespace Computernewb.CollabVMAuthServer; namespace Computernewb.CollabVMAuthServer;

View File

@@ -1,6 +1,9 @@
using System.Text.Json; using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Json;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
using System.Text.Json.Serialization.Metadata; using System.Threading.Tasks;
namespace Computernewb.CollabVMAuthServer; namespace Computernewb.CollabVMAuthServer;