Skip to content

Commit 4283ef2

Browse files
authored
Downgrade "Microsoft.*" and "System.*" packages to v8 (#805)
* Downgrade "Microsoft.*" and "System.*" packages to v8 * Tweak
1 parent 9547179 commit 4283ef2

File tree

3 files changed

+20
-17
lines changed

3 files changed

+20
-17
lines changed

.github/dependabot.yml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,37 +5,40 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: 'github-actions'
9-
directory: '/'
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
1010
schedule:
1111
interval: weekly
1212
rebase-strategy: auto
1313
open-pull-requests-limit: 20
1414
groups:
1515
github-actions:
1616
patterns:
17-
- '*'
17+
- "*"
1818

19-
- package-ecosystem: 'nuget'
20-
directory: '/'
19+
- package-ecosystem: "nuget"
20+
directory: "/"
2121
schedule:
2222
interval: weekly
23+
ignore:
24+
- dependency-name: "Microsoft.Bcl.AsyncInterfaces"
25+
- dependency-name: "System.Text.Json"
2326
rebase-strategy: auto
2427
open-pull-requests-limit: 20
2528
groups:
2629
code-analyzers:
2730
patterns:
28-
- '*Analyzer*'
31+
- "*Analyzer*"
2932
ms-dependencies:
3033
patterns:
31-
- 'Microsoft.*'
32-
- 'System.*'
34+
- "Microsoft.*"
35+
- "System.*"
3336
exclude-patterns:
34-
- 'Microsoft.Playwright'
37+
- "Microsoft.Playwright"
3538
test-dependencies:
3639
patterns:
37-
- 'coverlet.collector'
38-
- 'FluentAssertions'
39-
- 'Microsoft.Playwright'
40-
- 'NSubstitute'
41-
- '*NUnit*'
40+
- "coverlet.collector"
41+
- "FluentAssertions"
42+
- "Microsoft.Playwright"
43+
- "NSubstitute"
44+
- "*NUnit*"

NGitLab.Tests/NGitLab.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
2626
<PackageReference Include="NSubstitute" Version="5.3.0" />
2727
<PackageReference Include="Polly" Version="8.5.0" />
28-
<PackageReference Include="System.Text.Json" Version="9.0.0" />
28+
<PackageReference Include="System.Text.Json" Version="8.0.5" />
2929
<PackageReference Include="coverlet.collector" Version="6.0.2">
3030
<PrivateAssets>all</PrivateAssets>
3131
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>

NGitLab/NGitLab.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
</ItemGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
11+
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
1212
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4">
1313
<PrivateAssets>all</PrivateAssets>
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
</PackageReference>
16-
<PackageReference Include="System.Text.Json" Version="9.0.0" />
16+
<PackageReference Include="System.Text.Json" Version="8.0.5" />
1717
</ItemGroup>
1818
</Project>

0 commit comments

Comments
 (0)