2020-06-14 16:56:53 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-11-27 02:10:56 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2020-06-14 16:56:53 +00:00
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2021-11-27 02:10:56 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2020-06-14 16:56:53 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-08-25 18:36:38 +00:00
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
2021-11-27 02:10:56 +00:00
|
|
|
<DebugType>full</DebugType>
|
2020-08-25 18:36:38 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-06-14 16:56:53 +00:00
|
|
|
<ItemGroup>
|
2021-11-27 02:10:56 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0"/>
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1"/>
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0"/>
|
2020-11-15 13:15:30 +00:00
|
|
|
<PackageReference Include="coverlet.collector" Version="1.3.0">
|
2021-11-27 02:10:56 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
2020-11-15 13:15:30 +00:00
|
|
|
</PackageReference>
|
2020-06-14 16:56:53 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-07-08 13:04:20 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-06-14 16:56:53 +00:00
|
|
|
<ItemGroup>
|
2021-11-27 02:10:56 +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 16:56:53 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2020-12-19 11:01:09 +00:00
|
|
|
<ItemGroup>
|
2021-11-27 02:10:56 +00:00
|
|
|
<Folder Include="API"/>
|
2020-12-19 11:01:09 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2020-06-14 16:56:53 +00:00
|
|
|
</Project>
|