-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathWaher.Networking.CoAP.Test.csproj
More file actions
47 lines (37 loc) · 2.27 KB
/
Waher.Networking.CoAP.Test.csproj
File metadata and controls
47 lines (37 loc) · 2.27 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<Description>Contains CoAP-based unit tests.</Description>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<Copyright>Copyright © Waher Data AB 2017-2026. All rights reserved.</Copyright>
<Authors>Peter Waher</Authors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="MSTest.TestAdapter" Version="4.2.1" />
<PackageReference Include="MSTest.TestFramework" Version="4.2.1" />
<PackageReference Include="coverlet.collector" Version="10.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Content\Waher.Content.Xml\Waher.Content.Xml.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content\Waher.Content.csproj" />
<ProjectReference Include="..\..\Events\Waher.Events.Console\Waher.Events.Console.csproj" />
<ProjectReference Include="..\..\Events\Waher.Events\Waher.Events.csproj" />
<ProjectReference Include="..\..\Persistence\Waher.Persistence.FilesLW\Waher.Persistence.FilesLW.csproj" />
<ProjectReference Include="..\..\Persistence\Waher.Persistence.Serialization\Waher.Persistence.Serialization.csproj" />
<ProjectReference Include="..\..\Persistence\Waher.Persistence\Waher.Persistence.csproj" />
<ProjectReference Include="..\..\Runtime\Waher.Runtime.Inventory\Waher.Runtime.Inventory.csproj" />
<ProjectReference Include="..\..\Security\Waher.Security.DTLS\Waher.Security.DTLS.csproj" />
<ProjectReference Include="..\..\Security\Waher.Security\Waher.Security.csproj" />
<ProjectReference Include="..\Waher.Networking.CoAP\Waher.Networking.CoAP.csproj" />
<ProjectReference Include="..\Waher.Networking.LWM2M\Waher.Networking.LWM2M.csproj" />
<ProjectReference Include="..\Waher.Networking\Waher.Networking.csproj" />
</ItemGroup>
</Project>