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>
|
2021-10-14 03:23:50 +00:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-11-21 20:55:19 +00:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2022-03-12 05:52:46 +00:00
|
|
|
|
<Version>3.3.1</Version>
|
2020-04-02 18:27:55 +00:00
|
|
|
|
<Authors>NoiTheCat</Authors>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-05-22 07:26:21 +00:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
|
<WarningLevel>0</WarningLevel>
|
2021-10-14 03:23:50 +00:00
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2020-05-22 07:26:21 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-04-02 18:27:55 +00:00
|
|
|
|
<ItemGroup>
|
2021-10-23 00:44:53 +00:00
|
|
|
|
<PackageReference Include="CommandLineParser" Version="2.8.0" />
|
2022-03-11 03:41:45 +00:00
|
|
|
|
<PackageReference Include="Discord.Net" Version="3.4.1" />
|
2022-02-23 22:31:54 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
|
2021-06-16 02:29:35 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2021-10-23 00:44:53 +00:00
|
|
|
|
<PackageReference Include="NodaTime" Version="3.0.9" />
|
2022-02-15 05:30:22 +00:00
|
|
|
|
<PackageReference Include="Npgsql" Version="6.0.3" />
|
2020-04-02 18:27:55 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|