2019-05-08 00:06:27 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2020-12-19 12:01:09 +01:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2019-05-08 00:06:27 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-08-25 20:36:38 +02:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-05-08 00:06:27 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-11-21 00:02:05 +01:00
|
|
|
|
<PackageReference Include="DSharpPlus" Version="4.0.0-nightly-00755" />
|
|
|
|
|
<PackageReference Include="DSharpPlus.Rest" Version="4.0.0-nightly-00755" />
|
2020-11-15 14:15:30 +01:00
|
|
|
|
<PackageReference Include="Humanizer.Core" Version="2.8.26" />
|
|
|
|
|
<PackageReference Include="Sentry" Version="2.1.6" />
|
|
|
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.2" />
|
2019-05-08 00:06:27 +02:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|