-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathDirectory.Packages.props
More file actions
73 lines (58 loc) · 4 KB
/
Copy pathDirectory.Packages.props
File metadata and controls
73 lines (58 loc) · 4 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
73
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
<RestorePackagesWithLockFile>false</RestorePackagesWithLockFile>
<RestoreLockedMode Condition="'$(ContinuousIntegrationBuild)' == 'true'">false</RestoreLockedMode>
<CentralPackageFloatingVersionsEnabled>false</CentralPackageFloatingVersionsEnabled>
</PropertyGroup>
<PropertyGroup>
<dotnetVersion>10.0.11</dotnetVersion>
</PropertyGroup>
<ItemGroup>
<!-- Test libraries -->
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.8.0" />
<PackageVersion Include="Moq" Version="4.20.72" />
<PackageVersion Include="NUnit" Version="4.6.1" />
<PackageVersion Include="NUnit3TestAdapter" Version="6.2.0" />
<PackageVersion Include="NUnit.Analyzers" Version="4.14.0" />
<PackageVersion Include="WireMock.Net" Version="2.14.0" />
<PackageVersion Include="coverlet.collector" Version="10.0.1" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.Extensions.Logging" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Binder" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.Extensions.Http.Polly" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Proxies" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Relational" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.InMemory" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(dotnetVersion)" />
<PackageVersion Include="Microsoft.EntityFrameworkCore.SqlServer" Version="$(dotnetVersion)" />
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="8.15.0" />
<PackageVersion Include="Microsoft.Identity.Web" Version="4.0.0" />
<PackageVersion Include="Microsoft.Identity.Web.DownstreamApi" Version="4.0.0" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="10.0.400" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.4" />
<PackageVersion Include="Swashbuckle.AspNetCore" Version="10.2.3" />
<PackageVersion Include="Castle.Windsor" Version="6.0.0" />
<!-- Dependencies for drivers and adapters -->
<PackageVersion Include="System.IO.Ports" Version="10.0.0" />
<PackageVersion Include="MQTTnet" Version="5.0.1.1416" />
<PackageVersion Include="OPCFoundation.NetStandard.Opc.Ua.Client" Version="1.5.377.22" />
<PackageVersion Include="InfluxDB.LineProtocol" Version="1.1.0" />
<PackageVersion Include="InfluxDB.Client" Version="4.18.0" />
<PackageVersion Include="CsvHelper" Version="33.1.0" />
<PackageVersion Include="MimeTypeMapOfficial" Version="1.0.17" />
<PackageVersion Include="SixLabors.ImageSharp" Version="3.1.12" />
<!--Dependency for SBOM generation-->
<PackageVersion Include="Microsoft.Sbom.Targets" Version="4.1.5" />
</ItemGroup>
</Project>