RegexBot/RegexBot.csproj

31 lines
1.4 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2018-04-27 21:17:55 +00:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Authors>NoiTheCat</Authors>
2018-04-27 21:17:55 +00:00
<Description>Advanced and flexible Discord moderation bot.</Description>
2022-12-04 01:28:59 +00:00
<Version>3.1.1</Version>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
2018-04-27 21:17:55 +00:00
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
2022-10-13 18:44:40 +00:00
<PackageReference Include="Discord.Net" Version="3.8.1" />
<PackageReference Include="EFCore.NamingConventions" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.7" />
2022-12-04 01:28:59 +00:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
2022-10-13 18:44:40 +00:00
<PackageReference Include="Npgsql" Version="6.0.7" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.7" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.Design" Version="1.1.0" />
2018-04-27 21:17:55 +00:00
</ItemGroup>
</Project>