2018-01-19 00:59:21 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
2021-03-19 00:21:35 +01:00
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-03-19 01:10:22 +01:00
|
|
|
|
<RuntimeIdentifiers>win10-x64;linux-x64;linux-musl-x64</RuntimeIdentifiers>
|
2018-01-19 00:59:21 +01:00
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<NoWarn>NU1701</NoWarn>
|
2019-05-12 01:38:56 +02:00
|
|
|
|
<NoWarn>xUnit1026</NoWarn>
|
2018-01-19 00:59:21 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2021-03-19 00:21:35 +01:00
|
|
|
|
<PackageReference Include="FluentAssertions" Version="6.0.0-alpha0002" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0-preview-20210219-03" />
|
2020-06-01 02:16:29 +02:00
|
|
|
|
<PackageReference Include="Moq" Version="4.14.1" />
|
2019-03-02 06:48:16 +01:00
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
|
2018-01-19 00:59:21 +01:00
|
|
|
|
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2020-08-08 22:24:01 +02:00
|
|
|
|
<ProjectReference Include="..\src\Bot\Bot.csproj" />
|
2018-01-19 00:59:21 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|