forked from SteeltoeOSS/Steeltoe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.props
77 lines (72 loc) · 3.8 KB
/
versions.props
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
74
75
76
77
<Project>
<PropertyGroup>
<!--
Non-exposed dependencies, only referenced from test projects, benchmarks or build infrastructure.
It's safe to update these at any time, so wildcards are allowed.
-->
<AspNetCoreHealthChecksVersion>8.0.*</AspNetCoreHealthChecksVersion>
<CoverletVersion>6.0.*</CoverletVersion>
<EntityFrameworkCoreTestVersion>8.0.*</EntityFrameworkCoreTestVersion>
<FluentAssertionsJsonVersion>6.1.*</FluentAssertionsJsonVersion>
<FluentAssertionsVersion>6.12.*</FluentAssertionsVersion>
<MicrosoftAzureCosmosVersion>3.41.*</MicrosoftAzureCosmosVersion>
<MicrosoftCodeAnalysisVersion>4.11.0</MicrosoftCodeAnalysisVersion>
<MicrosoftSqlClientVersion>5.2.*</MicrosoftSqlClientVersion>
<MockHttpVersion>7.0.*</MockHttpVersion>
<MongoDbDriverVersion>2.27.*</MongoDbDriverVersion>
<MoqVersion>4.20.69</MoqVersion>
<MySqlConnectorVersion>2.3.*</MySqlConnectorVersion>
<MySqlDataVersion>9.0.*</MySqlDataVersion>
<NerdbankGitVersioningVersion>3.6.*</NerdbankGitVersioningVersion>
<NewtonsoftJsonVersion>13.0.3</NewtonsoftJsonVersion>
<PublicApiAnalyzersVersion>3.3.*</PublicApiAnalyzersVersion>
<RabbitClientTestVersion>6.8.*</RabbitClientTestVersion>
<SerilogEnrichersThreadVersion>4.0.*</SerilogEnrichersThreadVersion>
<SerilogExceptionsVersion>8.4.*</SerilogExceptionsVersion>
<SonarAnalyzerVersion>9.25.*</SonarAnalyzerVersion>
<SourceLinkGitHubVersion>8.0.*</SourceLinkGitHubVersion>
<StyleCopVersion>1.2.0-beta.556</StyleCopVersion>
<SystemCommandLineVersion>2.0.0-beta4.24324.3</SystemCommandLineVersion>
<SystemSqlClientVersion>4.8.*</SystemSqlClientVersion>
<TestSdkVersion>17.10.*</TestSdkVersion>
<XunitAbstractionsVersion>2.0.*</XunitAbstractionsVersion>
<XunitVersion>2.8.*</XunitVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'"></PropertyGroup>
<PropertyGroup>
<!--
Exposed dependencies, observable by Steeltoe consumers.
Be cautious with updates:
- Wildcards are only allowed when starting work on the next major version, until its release.
- Before release of the next major version, pin these down and never change them between minor/patch releases.
-->
<BouncyCastleVersion>2.2.*</BouncyCastleVersion>
<ConsulVersion>1.7.14.*</ConsulVersion>
<DiagnosticsNetCoreClientVersion>0.2.*</DiagnosticsNetCoreClientVersion>
<DiagnosticsTracingVersion>3.1.*</DiagnosticsTracingVersion>
<EntityFrameworkCoreVersion>8.0.*</EntityFrameworkCoreVersion>
<FoundationalVersion>
<!--
Package versions of this category are always safe to update to the latest version, because they multi-target all frameworks.
For example, v6 explicitly targets .NET 6; v7 explicitly targets .NET 6 and 7; v8 explicitly targets .NET 6, 7 and 8.
-->
8.0.*
</FoundationalVersion>
<MicrosoftIdentityModelVersion>7.6.*</MicrosoftIdentityModelVersion>
<OpenTelemetryExporterPrometheusVersion>1.9.*-*</OpenTelemetryExporterPrometheusVersion>
<OpenTelemetryVersion>1.9.*</OpenTelemetryVersion>
<SerilogVersion>8.0.*</SerilogVersion>
<SerilogSinksConsoleVersion>6.0.*</SerilogSinksConsoleVersion>
<WavefrontSdkVersion>1.8.*-*</WavefrontSdkVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">
<MatchTargetFrameworkVersion>
<!--
Package versions of this category are bound to the target framework, so they cannot be updated to the latest version.
For example, v6 targets only .NET 6; v7 targets only .NET 7; v8 targets only .NET 8.
Caution: some packages additionally target netstandard, but result in compile-time/runtime errors or reduced API surface.
-->
8.0.*
</MatchTargetFrameworkVersion>
</PropertyGroup>
</Project>