2021-02-02 06:31:24 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-04-02 18:27:55 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2021-02-02 06:31:24 +00:00
|
|
|
|
<Version>3.0.2</Version>
|
2020-04-02 18:27:55 +00:00
|
|
|
|
<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>
|
|
|
|
|
|
2020-05-22 07:26:21 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
|
<WarningLevel>0</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-04-02 18:27:55 +00:00
|
|
|
|
<ItemGroup>
|
2021-02-02 06:31:24 +00:00
|
|
|
|
<PackageReference Include="Discord.Net" Version="2.3.0" />
|
2020-04-02 18:27:55 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
2020-10-29 08:26:17 +00:00
|
|
|
|
<PackageReference Include="NodaTime" Version="3.0.3" />
|
|
|
|
|
<PackageReference Include="Npgsql" Version="4.1.5" />
|
2020-04-02 18:27:55 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|