From 4dfd49e776c6301b892b03360b11a4d1c790af15 Mon Sep 17 00:00:00 2001 From: meorphis Date: Wed, 3 Dec 2025 20:03:29 -0500 Subject: [PATCH] fix glob --- src/strategies/csharp.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategies/csharp.ts b/src/strategies/csharp.ts index 61aea7b21..b28892859 100644 --- a/src/strategies/csharp.ts +++ b/src/strategies/csharp.ts @@ -53,7 +53,7 @@ export class CSharp extends BaseStrategy { private async getCsprojName(): Promise { // First, try to find .csproj files in the path const files = await this.github.findFilesByGlobAndRef( - '*.csproj', + '**/*.csproj', this.changesBranch, this.path === '.' ? undefined : this.path );