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-08-17 07:45:26 +00:00
|
|
|
|
<AssemblyVersion>2.6.2</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 />
|
2018-08-17 07:45:26 +00:00
|
|
|
|
<FileVersion>2.6.2</FileVersion>
|
|
|
|
|
<Version>2.6.2</Version>
|
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-08-17 07:45:26 +00:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
2018-08-17 23:17:58 +00:00
|
|
|
|
<PackageReference Include="Npgsql" Version="3.2.7" />
|
2018-08-17 07:45:26 +00:00
|
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
2017-06-23 19:31:47 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-08-11 16:29:52 +00:00
|
|
|
|
</Project>
|