-
-
Notifications
You must be signed in to change notification settings - Fork 59
Show Build Trees
Roman Kuzmin edited this page Aug 20, 2022
·
6 revisions
The script Show-BuildTree.ps1 visualizes specified build task trees as indented text with brief task details.
Example
This command invoked for the build script of this project
Show-BuildTree NuGet
shows the following task tree
NuGet # Make the NuGet package.
Version # Set $script:Version.
{}
Package # Make the package directory z\tools for NuGet.
ConvertMarkdown # Convert markdown files to HTML files (using MarkdownDeep).
{}
Help # Build the PowerShell help file.
{}
GitStatus # Warn about not empty git status if .git exists.
{}
{}
{}
- 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