27 lines
905 B
XML
27 lines
905 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
|||
|
<RootNamespace>Noikoio.RegexBot</RootNamespace>
|
|||
|
<AssemblyVersion>0.14.0.0</AssemblyVersion>
|
|||
|
<Description>Highly configurable Discord moderation bot</Description>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|||
|
<DocumentationFile>bin\Release\netcoreapp1.1\RegexBot.xml</DocumentationFile>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Discord.Net" Version="1.0.0-rc2" />
|
|||
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
|
|||
|
<PackageReference Include="System.ValueTuple" Version="4.3.1" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Update="settings.example.json">
|
|||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|