Skip to content

Commit f419d40

Browse files
fix(docs): GetAllProjects method call (#1421)
1 parent 9267436 commit f419d40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/03-common/07-solution-project-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ With an instance of the `Solution` type you can **read and write the solution**
3434
```csharp
3535
// Gather projects
3636
var globalToolProject = Solution.GetProject("Nuke.GlobalTool");
37-
var testProjects = Solution.GetProjects("*.Tests");
37+
var testProjects = Solution.GetAllProjects("*.Tests");
3838

3939
// Gather all solution items
4040
var allItems = Solution.AllSolutionFolders.SelectMany(x => x.Items);

0 commit comments

Comments
 (0)