82dfe43d5a
This does a *lot* of things. Essentially, it replaces the existing individual proxy- and autoproxy caches on the bot end with a global cache (in Core) that handles all the caching at once, and automatically invalidates the cache once something changes in the datastore. This allows us to do proxying and autoproxying with *zero database queries* (best-case).
19 lines
653 B
XML
19 lines
653 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Discord.Net\src\Discord.Net.WebSocket\Discord.Net.WebSocket.csproj" />
|
|
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Humanizer.Core" Version="2.7.9" />
|
|
<PackageReference Include="Sentry" Version="2.0.0-beta7" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0-beta0007" />
|
|
</ItemGroup>
|
|
</Project>
|