You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
724 B
23 lines
724 B
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FluentAssertions" Version="6.11.0" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
|
<PackageReference Include="NUnit" Version="3.13.3" />
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.3.0" />
|
|
<PackageReference Include="NUnit.Analyzers" Version="3.5.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MultiTerm.Protocols\MultiTerm.Protocols.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|