2019-06-21 22:05:58 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-04-27 21:17:55 +00:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2021-08-26 03:18:45 +00:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<Authors>NoiTheCat</Authors>
|
2018-04-27 21:17:55 +00:00
|
|
|
|
<Description>Advanced and flexible Discord moderation bot.</Description>
|
|
|
|
|
<Version>0.0.1</Version>
|
2022-07-21 01:55:08 +00:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
2018-09-22 03:38:23 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2018-06-03 00:33:31 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="DefaultGuildConfig.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="DefaultGuildConfig.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-04-27 21:17:55 +00:00
|
|
|
|
<ItemGroup>
|
2022-07-23 06:41:49 +00:00
|
|
|
|
<PackageReference Include="CommandLineParser" Version="2.9.1" />
|
2022-07-21 01:55:08 +00:00
|
|
|
|
<PackageReference Include="Discord.Net" Version="3.7.2" />
|
2022-03-29 05:03:01 +00:00
|
|
|
|
<PackageReference Include="EFCore.NamingConventions" Version="6.0.0" />
|
2022-07-21 01:55:08 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.7" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.7">
|
2022-03-29 05:03:01 +00:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2022-07-21 01:55:08 +00:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.7" />
|
2021-08-26 03:18:45 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
2022-07-21 01:55:08 +00:00
|
|
|
|
<PackageReference Include="Npgsql" Version="6.0.5" />
|
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.5" />
|
2022-03-29 05:03:01 +00:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.Design" Version="1.1.0" />
|
2018-04-27 21:17:55 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|