We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5592d4 commit 67cfbcaCopy full SHA for 67cfbca
build/Build.cs
@@ -62,7 +62,7 @@ partial class Build : NukeBuild
62
public AbsolutePath DocFxDir => RootDirectory / "docs";
63
public AbsolutePath DocFxDirJson => DocFxDir / "docfx.json";
64
65
- readonly Solution[] Solutions = RootDirectory.GlobFiles("*.sln").Select(sln => ProjectModelTasks.ParseSolution(sln)).ToArray();
+ readonly Solution[] Solutions = RootDirectory.GlobFiles("**/*.sln").Select(sln => ProjectModelTasks.ParseSolution(sln)).ToArray();
66
67
static readonly JsonElement? _githubContext = string.IsNullOrWhiteSpace(EnvironmentInfo.GetVariable<string>("GITHUB_CONTEXT")) ?
68
null
0 commit comments