From 08915b953c90f132bdbfc46706bccae13cfa5825 Mon Sep 17 00:00:00 2001 From: heqianwang <158102624+heqianwang@users.noreply.github.com> Date: Wed, 16 Oct 2024 16:19:59 -0400 Subject: [PATCH] [IDP-2271] Add ignored nuget dependencies to renovate (#115) * [IDP-2271] Add ignored nuget dependencies to renovate * Remove redundancy * Scope CodeAnalysis to src --- renovate.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/renovate.json b/renovate.json index 7ec5a30..4eb7438 100644 --- a/renovate.json +++ b/renovate.json @@ -26,6 +26,16 @@ "src/Workleap.Extensions.Mongo.Analyzers/**/*" ], "enabled": false + }, + { + "matchManagers": ["nuget"], + "matchPackagePatterns": [ + "^Microsoft\\.Extensions\\.", + "^System\\." + ], + "groupName": "Ignored NuGet dependencies", + "description": "These packages are usually set to a user-defined minimal supported version such as 6.0.0 for .NET 6, and they are overriden by consuming applications", + "enabled": false } ] }