mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-12-05 01:27:45 +00:00
45 lines
2.1 KiB
XML
45 lines
2.1 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-00565" />
|
|
<PackageReference Include="DSharpPlus.CommandsNext" Version="4.0.0-nightly-00565" />
|
|
<PackageReference Include="DSharpPlus.Interactivity" Version="4.0.0-nightly-00565" />
|
|
<PackageReference Include="DuoVia.FuzzyStrings" Version="2.0.1" />
|
|
<PackageReference Include="MathParser.org-mXparser" Version="4.3.3" />
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.7" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.2.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.1" />
|
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="2.2.0" />
|
|
<PackageReference Include="NLog" Version="4.5.11" />
|
|
<PackageReference Include="NReco.Text.AhoCorasickDoubleArrayTrie" Version="1.0.1" />
|
|
<PackageReference Include="SharpCompress" Version="0.22.0" />
|
|
<PackageReference Include="System.IO.Pipelines" Version="4.5.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Clients\AppveyorClient\AppveyorClient.csproj" />
|
|
<ProjectReference Include="..\Clients\CompatApiClient\CompatApiClient.csproj" />
|
|
<ProjectReference Include="..\Clients\GithubClient\GithubClient.csproj" />
|
|
<ProjectReference Include="..\HomoglyphConverter\HomoglyphConverter.csproj" />
|
|
<ProjectReference Include="..\Clients\IrdLibraryClient\IrdLibraryClient.csproj" />
|
|
<ProjectReference Include="..\Clients\PsnClient\PsnClient.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|