-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathUnitTestTcpSocket.csproj
More file actions
29 lines (25 loc) · 1.16 KB
/
UnitTestTcpSocket.csproj
File metadata and controls
29 lines (25 loc) · 1.16 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
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.*" />
<PackageReference Include="xunit" Version="2.*" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="6.*">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\extensions\BootstrapBlazor.TcpSocket\BootstrapBlazor.TcpSocket.csproj" />
</ItemGroup>
<ItemGroup>
<Using Remove="Microsoft.AspNetCore.Components" />
<Using Remove="BootstrapBlazor.Components" />
<Using Include="BootstrapBlazor.Socket.DataAdapters" />
<Using Include="BootstrapBlazor.Socket.DataHandlers" />
<Using Include="BootstrapBlazor.Socket.DataConverters" />
<Using Include="BootstrapBlazor.TcpSocket" />
</ItemGroup>
</Project>