2017-06-23 19:31:47 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2017-09-05 18:26:57 +00:00
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2017-06-23 19:31:47 +00:00
|
|
|
|
<RootNamespace>Noikoio.RegexBot</RootNamespace>
|
2018-03-21 21:06:32 +00:00
|
|
|
|
<AssemblyVersion>2.5.1.0</AssemblyVersion>
|
2017-06-23 19:31:47 +00:00
|
|
|
|
<Description>Highly configurable Discord moderation bot</Description>
|
2017-07-22 03:51:00 +00:00
|
|
|
|
<Authors>Noikoio</Authors>
|
|
|
|
|
<Company />
|
2017-06-23 19:31:47 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
2017-10-22 07:04:23 +00:00
|
|
|
|
<DocumentationFile>bin\Release\netcoreapp2.0\RegexBot.xml</DocumentationFile>
|
2017-06-23 19:31:47 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2017-09-24 19:47:29 +00:00
|
|
|
|
<PackageReference Include="Discord.Net" Version="1.0.2" />
|
2018-03-17 21:31:49 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
|
|
|
|
|
<PackageReference Include="Npgsql" Version="3.2.7" />
|
2017-08-09 23:07:42 +00:00
|
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
|
2017-06-23 19:31:47 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-08-11 16:29:52 +00:00
|
|
|
|
</Project>
|