-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSocketLabs.Tests.csproj
More file actions
31 lines (31 loc) · 1.39 KB
/
SocketLabs.Tests.csproj
File metadata and controls
31 lines (31 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>SocketLabs.Tests</RootNamespace>
<AssemblyName>SocketLabs.Tests</AssemblyName>
<TargetFramework>net9.0</TargetFramework>
<AssemblyTitle>SocketLabs.Tests</AssemblyTitle>
<IsPackable>false</IsPackable>
<Product>SocketLabs.Tests</Product>
<Copyright>Copyright © 2018-2025 SocketLabs Acquisition LLC</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Castle.Core" Version="5.2.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.6.2" />
<PackageReference Include="System.ValueTuple" Version="4.6.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="MSTest.TestFramework" Version="3.8.3" />
<PackageReference Include="MSTest.TestAdapter" Version="3.8.3" />
<PackageReference Include="coverlet.collector" Version="6.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\SocketLabs\SocketLabs.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="ClientTests\" />
</ItemGroup>
</Project>