-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
renovate.json5
42 lines (42 loc) · 1.67 KB
/
renovate.json5
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
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>meziantou/renovate-config"
],
"packageRules": [
{
"matchPackageNames": [ "Microsoft.CodeAnalysis" ],
"matchFileNames": [
"src/Meziantou.Framework.FastEnumToStringGenerator/Meziantou.Framework.FastEnumToStringGenerator.csproj",
"src/Meziantou.Framework.ResxSourceGenerator/Meziantou.Framework.ResxSourceGenerator.csproj",
"src/Meziantou.Framework.StronglyTypedId/Meziantou.Framework.StronglyTypedId.csproj"
],
"groupName": "roslyn-analyzers",
"enabled": false
},
{
"matchPackageNames": [
"Microsoft.AspNetCore.Components",
"Microsoft.AspNetCore.Components.Web",
"Microsoft.AspNetCore.Components.WebAssembly",
"Microsoft.AspNetCore.Mvc.Testing",
"Microsoft.AspNetCore.TestHost"
],
"matchFileNames": [
"src/Meziantou.AspNetCore.Components.LogViewer/Meziantou.AspNetCore.Components.LogViewer.csproj",
"src/Meziantou.AspNetCore.Components.WebAssembly/Meziantou.AspNetCore.Components.WebAssembly.csproj",
"src/Meziantou.AspNetCore.Components/Meziantou.AspNetCore.Components.csproj",
"src/Meziantou.Framework.HttpClientMock/Meziantou.Framework.HttpClientMock.csproj",
"tests/Meziantou.Framework.HttpClientMock.Tests/Meziantou.Framework.HttpClientMock.Tests.csproj"
],
"matchUpdateTypes": [ "major", "minor" ], // Only allow patch updates
"groupName": "all dependencies",
"enabled": false
},
{
"matchPackageNames": [ "Microsoft.Windows.CsWin32" ],
"groupName": "cswin32",
"enabled": true
}
]
}