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
| function New-NamedPipeServer { | |
| param( | |
| [Parameter(Mandatory)] | |
| [string] $PipeName, | |
| [Parameter(Mandatory)] | |
| [scriptblock] $ScriptBlock | |
| ) | |
| Start-Job -Name $PipeName -ScriptBlock { |
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
| [ | |
| { | |
| "S": [ | |
| { | |
| "N": "G0", | |
| "T": 1, | |
| "DN": "D0" | |
| }, | |
| { | |
| "N": "G1", |
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
| #Import-Module "$PSScriptRoot\..\Module\WindowsPresentationFramework" -Force | |
| . "$PSScriptRoot\WindowsPresentationFramework.ps1" | |
| #Region ThreadSafe | |
| # Bind Variables | |
| [WindowsPresentationFrameworkThreadSafe()] | |
| [PSObject] $Variable = "Herro World from Proxy Scope" | |
| [WindowsPresentationFrameworkThreadSafe()] | |
| $Sync = [hashtable]::Synchronized(@{}) |
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
| class ConstrainedVariableInterpolation : System.Management.Automation.Language.AstVisitor { | |
| hidden [Hashtable] $Property | |
| [System.Collections.Generic.List[PSCustomObject]] $Result | |
| hidden [System.Management.Automation.Language.Ast] $Ast | |
| [System.Management.Automation.Language.AstVisitAction] CheckForPostAction([System.Management.Automation.Language.Ast] $ast, [System.Management.Automation.Language.AstVisitAction] $action) | |
| { | |
| throw 'CheckForPostAction not supported' | |
| } | |
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
| class ConstrainedVariableInterpolation : System.Management.Automation.Language.AstVisitor { | |
| hidden [Hashtable] $Property | |
| [System.Collections.Generic.List[PSCustomObject]] $Result | |
| hidden [System.Management.Automation.Language.Ast] $Ast | |
| [System.Management.Automation.Language.AstVisitAction] CheckForPostAction([System.Management.Automation.Language.Ast] $ast, [System.Management.Automation.Language.AstVisitAction] $action) | |
| { | |
| throw 'CheckForPostAction not supported' | |
| } | |
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
| function Get-WTSettingsPath { | |
| # Determine if we are in WT | |
| $Profile = $env:WT_PROFILE_ID | |
| if (!$Profile) | |
| { | |
| throw "WT Not available" | |
| } | |
| $SettingsPath = Get-Item "$env:LOCALAPPDATA\Packages\Microsoft.WindowsTerminal*\LocalState\" | Select-Object -ExpandProperty FullName | |
| $SettingsPath |
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
| function Convert-ToCSharp | |
| { | |
| param( | |
| [Parameter(Mandatory)] | |
| [System.String]$Path, | |
| [Parameter(Mandatory)] | |
| [System.String]$OutFile |
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
| class foo { | |
| private _bar:boolean = false; | |
| get bar():boolean { | |
| return this._bar; | |
| } | |
| set bar(theBar:boolean) { | |
| this._bar = theBar; | |
| } | |
| } |
NewerOlder