2020-06-14 16:56:53 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-08-25 18:36:38 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-06-14 16:56:53 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
|
|
|
|
<PackageReference Include="xunit" Version="2.4.0" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
|
|
|
|
<PackageReference Include="coverlet.collector" Version="1.2.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\PluralKit.API\PluralKit.API.csproj" />
|
|
|
|
<ProjectReference Include="..\PluralKit.Bot\PluralKit.Bot.csproj" />
|
|
|
|
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|