-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
72 lines (64 loc) · 3.35 KB
/
Copy pathDirectory.Packages.props
File metadata and controls
72 lines (64 loc) · 3.35 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<Project>
<!--
Central Package Management.
All NuGet versions used in this repository are pinned here so that every
project (UAServer, the protocol drivers, UA-WoTGenerator) consumes the same
version of a given package. Adding a new package requires:
1. <PackageVersion Include="..." Version="..." /> below.
2. <PackageReference Include="..." /> (no Version=) in the consuming csproj.
-->
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<ItemGroup>
<!-- OPC UA SDK -->
<PackageVersion Include="OPCFoundation.NetStandard.Opc.Ua" Version="1.5.378.156" />
<PackageVersion Include="OPCFoundation.NetStandard.Opc.Ua.Client.ComplexTypes" Version="1.5.378.156" />
<!-- Logging -->
<PackageVersion Include="Serilog" Version="4.4.0" />
<PackageVersion Include="Serilog.Extensions.Logging" Version="10.0.0" />
<PackageVersion Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageVersion Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageVersion Include="log4net" Version="3.4.0" />
<!-- Serialization -->
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
<!-- Supply chain / signature verification (driver allow-list manifest) -->
<PackageVersion Include="Sigstore" Version="0.5.0" />
<!-- Engineering tool integration -->
<PackageVersion Include="Aml.Engine" Version="4.5.2" />
<!-- Tooling / build -->
<PackageVersion Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
<!-- Protocol drivers -->
<PackageVersion Include="BACnet" Version="4.0.0" />
<PackageVersion Include="Viscon.Communication.Ads" Version="0.2.0" />
<PackageVersion Include="Portable.BouncyCastle" Version="1.9.0" />
<PackageVersion Include="Linux.Bluetooth" Version="5.67.1" />
<PackageVersion Include="Makaretu.Dns.Multicast.New" Version="0.38.0" />
<PackageVersion Include="Tmds.DBus" Version="0.92.0" />
<PackageVersion Include="McProtocol" Version="1.2.5" />
<PackageVersion Include="NModbus" Version="3.0.83" />
<PackageVersion Include="NModbus.Serial" Version="3.0.83" />
<PackageVersion Include="TitaniumAS.Opc.Client.NetCore" Version="1.0.2.1" />
<PackageVersion Include="Quick.OpcNetApi" Version="2.1.108" />
<PackageVersion Include="Quick.OpcNetApi.Com" Version="2.1.108" />
<PackageVersion Include="libplctag" Version="1.5.2" />
<PackageVersion Include="Sharp7" Version="1.1.84" />
<!-- Test infrastructure -->
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.9.0" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="4.0.0" />
<PackageVersion Include="coverlet.collector" Version="10.0.1" />
<!-- Blazor component testing for the diagnostics dashboard pages. -->
<PackageVersion Include="bunit" Version="2.9.0" />
<!--
bUnit 1.40.0 pulls AngleSharp 1.2.0 transitively, which is affected by
GHSA-pgww-w46g-26qg (mXSS via annotation-xml HTML integration point
bypass; affects < 1.5.0). NuGet audit runs as an error here because
TreatWarningsAsErrors is on, so the transitive version is overridden with
a direct reference to a patched release. Remove this pin once a bUnit
release depends on AngleSharp >= 1.5.0 by itself.
-->
<PackageVersion Include="AngleSharp" Version="1.7.0" />
</ItemGroup>
</Project>