-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathrenovate.json5
More file actions
47 lines (47 loc) · 1.86 KB
/
Copy pathrenovate.json5
File metadata and controls
47 lines (47 loc) · 1.86 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
{
'$schema': 'https://docs.renovatebot.com/renovate-schema.json',
extends: [
'github>Lombiq/Open-Source-Orchard-Core-Extensions:renovate-osoce-orchard-core-submodule.json5',
],
packageRules: [
{
groupName: 'Gulp',
matchPackageNames: [
'gulp*',
],
},
{
// Microsoft.CodeAnalysis.CSharp.CodeStyle references Roslyn, and if its version is higher than that of the
// locally installed SDK, it'll emit a "CSC : error CS9057: The analyzer assembly
// '/home/runner/.nuget/packages/microsoft.codeanalysis.csharp.codestyle/4.11.0/analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.CodeStyle.dll'
// references version '4.31.0.0' of the compiler, which is newer than the currently running version
// '4.10.0.0'." error. So, we need to update it manually together with the SDK (and targeted .NET version).
matchPackageNames: [
'Microsoft.CodeAnalysis.CSharp',
],
enabled: false,
},
{
// Moq.AutoMock ships the Moq.AutoMocker.Generators analyzer, which can require a newer Roslyn than the
// NuGet packaging pipeline's compiler, causing the same kind of CS9057 error as Microsoft.CodeAnalysis.CSharp
// above (see OSOE-1311). So, we need to update it manually and verify the "Validate NuGet Publish" workflow
// still passes.
matchPackageNames: [
'Moq.AutoMock',
],
enabled: false,
},
{
groupName: 'Microsoft.Extensions',
matchPackageNames: [
'Microsoft.Extensions.*',
],
},
{
groupName: 'RestEase',
matchPackageNames: [
'RestEase*',
],
},
],
}