We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb3a0b6 commit 8033f76Copy full SHA for 8033f76
packages/utils/src/lib/utility-functions/workspace.ts
@@ -102,7 +102,8 @@ export async function getNxDotnetProjects(
102
103
let isNetProject = false;
104
for (const pattern of ['*.csproj', '*.fsproj', '*.vbproj'] as const) {
105
- if (await glob(pattern, p?.root)) {
+ const matches = await glob(pattern, p?.root);
106
+ if (matches?.length) {
107
isNetProject = true;
108
break;
109
}
0 commit comments