-
-
Notifications
You must be signed in to change notification settings - Fork 59
Show Build Graph
Roman Kuzmin edited this page Apr 8, 2015
·
12 revisions
The script Show-BuildGraph.ps1 which is included in the package visualizes build script task dependencies using dot, the tool from Graphviz.
For example, here is the build task graph created for the build script of this project. Note that tasks with own code are shown as boxes, tasks that simply trigger other tasks are shown as ovals.
This example (Mdbc's build script) shows some more features provided by Show-BuildGraph.ps1:
- Task call numbers can be shown.
- Call edges can go from top to bottom.
- Safe references are shown as dotted edges.
- Concepts
- Script Tutorial
- Incremental Tasks
- Partial Incremental Tasks
- How Build Works
- Special Variables
- Build Failures
- Build Analysis
- Parallel Builds
- Persistent Builds
- Portable Build Scripts
- Using for Test Automation
- Debugging Tips
- VSCode Tips
Helpers
- Invoke Task from VSCode
- Generate VSCode Tasks
- Invoke Task from ISE
- Resolve MSBuild
- Show Build Trees
- Show Build Graph
- Argument Completers
- Invoke-Build.template
Appendix