Files

24 lines
662 B
XML
Raw Permalink Normal View History

2020-03-03 12:32:09 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-07-17 02:38:58 +03:00
<TargetFramework>net8.0</TargetFramework>
2020-03-03 12:32:09 +04:00
<IsPackable>false</IsPackable>
<AssemblyName>TelegramBot.Test</AssemblyName>
<RootNamespace>Kruzya.TelegramBot.Core.Tests</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="nunit" Version="3.13.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0-preview-20211130-02" />
2020-03-03 12:32:09 +04:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
</Project>