powershell-es/test/PowerShellEditorServices.Test.Shared/SymbolDetails/SymbolDetails.ps1
fwastring baa0056244
Some checks are pending
CI Tests / dotnet (push) Waiting to run
CI Tests / dotnet-1 (push) Waiting to run
CI Tests / dotnet-2 (push) Waiting to run
Emacs End-to-End Tests / ert (push) Waiting to run
Vim End-to-End Tests / themis (push) Waiting to run
initial
2026-02-17 13:06:31 +01:00

39 lines
531 B
PowerShell

Expand-Archive -Path $TEMP
# References Test uses this one
Get-Process -Name 'powershell*'
<#
.Synopsis
Short description
.DESCRIPTION
Long description
.EXAMPLE
Example of how to use this cmdlet
.EXAMPLE
Another example of how to use this cmdlet
#>
function Get-Thing {
[Alias()]
[OutputType([int])]
Param
(
# Param1 help description
[Parameter(Mandatory = $true,
ValueFromPipelineByPropertyName = $true,
Position = 0)]
$Name
)
Begin
{
}
Process
{
return 0;
}
End
{
}
}
Get-Thing -Name "test"