mirror of
https://github.com/NoiTheCat/BirthdayBot.git
synced 2024-11-21 13:54:36 +00:00
Noi
a0571ce3d7
Implemented several workarounds to what appearto be a library bug in which not all users will be downloaded onto the cache. User cache checking and downloading is delegated to a new Common method and a new BackgroundService, respectively. This is hopefully temporary.
28 lines
968 B
XML
28 lines
968 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<Version>3.0.2</Version>
|
|
<PackageId>BirthdayBot</PackageId>
|
|
<Authors>NoiTheCat</Authors>
|
|
<Product>BirthdayBot</Product>
|
|
<Description>Discord bot for birthday recognition and reminders.</Description>
|
|
<AssemblyName>BirthdayBot</AssemblyName>
|
|
<RootNamespace>BirthdayBot</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<WarningLevel>0</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Discord.Net" Version="2.3.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
<PackageReference Include="NodaTime" Version="3.0.3" />
|
|
<PackageReference Include="Npgsql" Version="4.1.5" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|