2020-06-14 18:56:53 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-12-23 00:51:58 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2020-06-14 18:56:53 +02:00
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2021-11-26 21:10:56 -05:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2020-06-14 18:56:53 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-08-25 20:36:38 +02:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
2021-11-26 21:10:56 -05:00
|
|
|
<DebugType>full</DebugType>
|
2020-08-25 20:36:38 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-06-14 18:56:53 +02:00
|
|
|
<ItemGroup>
|
2024-12-23 00:51:58 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
|
|
|
|
|
<PackageReference Include="xunit" Version="2.9.2" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.2">
|
2021-11-26 21:10:56 -05:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
2020-11-15 14:15:30 +01:00
|
|
|
</PackageReference>
|
2020-06-14 18:56:53 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-07-08 09:04:20 -04:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-06-14 18:56:53 +02:00
|
|
|
<ItemGroup>
|
2024-12-23 00:51:58 +00:00
|
|
|
<ProjectReference Include="..\PluralKit.API\PluralKit.API.csproj" />
|
|
|
|
|
<ProjectReference Include="..\PluralKit.Bot\PluralKit.Bot.csproj" />
|
|
|
|
|
<ProjectReference Include="..\PluralKit.Core\PluralKit.Core.csproj" />
|
2020-06-14 18:56:53 +02:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-12-19 12:01:09 +01:00
|
|
|
<ItemGroup>
|
2024-12-23 00:51:58 +00:00
|
|
|
<Folder Include="API" />
|
2020-12-19 12:01:09 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-06-14 18:56:53 +02:00
|
|
|
</Project>
|