From 0f24dff28f1730d35d249126f17035269bc6050d Mon Sep 17 00:00:00 2001 From: Jonas Nyrup Date: Sun, 17 Aug 2025 20:24:13 +0200 Subject: [PATCH] Exclude UWP.Specs from dependabot From the dependabot error ``` Dependabot couldn't find a Microsoft.Windows.UI.Xaml.CSharp.targets Dependabot requires a Microsoft.Windows.UI.Xaml.CSharp.targets to evaluate your .NET dependencies. It had expected to find one at the path: /usr/local/dotnet/current/sdk/9.0.302/Microsoft/WindowsXaml/v17.0/Microsoft.Windows.UI.Xaml.CSharp.targets. ``` --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4cff2d053e..4f2460b35f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -26,6 +26,11 @@ updates: - package-ecosystem: "nuget" directory: "/" + exclude-paths: + - "/Tests/UWP.Specs" + - "/Tests/UWP.Specs/" + - "/Tests/UWP.Specs/*" + - "/Tests/UWP.Specs/UWP.Specs.csproj" schedule: interval: "weekly" day: "monday"