Files
CollabVMAuthServer/CollabVMAuthServer/CollabVMAuthServer.csproj
Elijah R 130baa8863 - add mechanism for database upgrades
- add ban reason
- add api endpoints for banning
- moderators can now list users/bots, and perform basic updates
2024-04-29 12:05:48 -04:00

22 lines
815 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<PublishAot>false</PublishAot>
<RootNamespace>Computernewb.CollabVMAuthServer</RootNamespace>
<Company>Computernewb Development Team</Company>
<AssemblyVersion>1.1</AssemblyVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Isopoh.Cryptography.Argon2" Version="2.0.0" />
<PackageReference Include="MailKit" Version="4.4.0" />
<PackageReference Include="MySqlConnector" Version="2.3.6" />
<PackageReference Include="Samboy063.Tomlet" Version="5.3.1" />
</ItemGroup>
</Project>