RegexBot/RegexBot.csproj

30 lines
948 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.1</TargetFramework>
<RootNamespace>Noikoio.RegexBot</RootNamespace>
<AssemblyVersion>1.1.3.0</AssemblyVersion>
<Description>Highly configurable Discord moderation bot</Description>
<Authors>Noikoio</Authors>
<Company />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netcoreapp1.1\RegexBot.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
2017-07-22 02:50:28 +00:00
<PackageReference Include="Discord.Net" Version="1.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
2017-08-09 23:07:42 +00:00
<PackageReference Include="System.ValueTuple" Version="4.4.0" />
</ItemGroup>
<ItemGroup>
<None Update="settings.example.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>