This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
Wrap commands with DebuggerNonUserCode attribute to prevent the PowerShell debugger stepping into them | |
.DESCRIPTION | |
Generates proxy functions that wrap the original commands, and put an attribute on the proxy to prevent the debugger stopping. | |
.EXAMPLE | |
Get-Command -Module Pester | Hide-FromDebugger | |
Hides all pester functions from the debugger, so you can debug in your code without stepping into Pester functions. | |
#> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[ | |
], | |
[ | |
], | |
[ | |
[ | |
"System.Xml.XmlElement", |
NewerOlder