mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-12-13 05:35:58 +00:00
0bc1e641d2
by default config parameter `LogPath` is set to `logs/bot.log`
38 lines
1.6 KiB
XML
38 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<TieredCompilation>true</TieredCompilation>
|
|
<RootNamespace>CompatBot</RootNamespace>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DSharpPlus" Version="4.0.0-nightly-00539" />
|
|
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.0.0-nightly-00539" />
|
|
<PackageReference Include="MathParser.org-mXparser" Version="4.2.1" />
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.6" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.4" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.1.4" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
|
|
<PackageReference Include="NLog" Version="4.5.10" />
|
|
<PackageReference Include="NReco.Text.AhoCorasickDoubleArrayTrie" Version="1.0.1" />
|
|
<PackageReference Include="System.IO.Pipelines" Version="4.5.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CompatApiClient\CompatApiClient.csproj" />
|
|
<ProjectReference Include="..\HomoglyphConverter\HomoglyphConverter.csproj" />
|
|
<ProjectReference Include="..\PsnClient\PsnClient.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|