Skip to content

Commit 67cfbca

Browse files
fixed NUKE - can now find all projects in solution (#97)
1 parent c5592d4 commit 67cfbca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/Build.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ partial class Build : NukeBuild
6262
public AbsolutePath DocFxDir => RootDirectory / "docs";
6363
public AbsolutePath DocFxDirJson => DocFxDir / "docfx.json";
6464

65-
readonly Solution[] Solutions = RootDirectory.GlobFiles("*.sln").Select(sln => ProjectModelTasks.ParseSolution(sln)).ToArray();
65+
readonly Solution[] Solutions = RootDirectory.GlobFiles("**/*.sln").Select(sln => ProjectModelTasks.ParseSolution(sln)).ToArray();
6666

6767
static readonly JsonElement? _githubContext = string.IsNullOrWhiteSpace(EnvironmentInfo.GetVariable<string>("GITHUB_CONTEXT")) ?
6868
null

0 commit comments

Comments
 (0)