2019-05-07 22:06:27 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2020-12-19 11:01:09 +00:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
2019-05-07 22:06:27 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-08-25 18:36:38 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-05-07 22:06:27 +00:00
|
|
|
|
<ItemGroup>
|
2020-12-22 12:15:26 +00:00
|
|
|
|
<ProjectReference Include="..\Myriad\Myriad.csproj" />
|
2019-05-07 22:06:27 +00:00
|
|
|
|
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-11-15 13:15:30 +00: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-07 22:06:27 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|