gpt4 book ai didi

powershell - 使用 Visual Studio Code 查看我的函数的文档字符串

转载 作者:行者123 更新时间:2023-12-03 00:59:03 25 4
gpt4 key购买 nike

我是 Visual Studio Code 新手,我开始使用它来开发 PowerShell 脚本。

Function declaration

我发现,当我将光标放在函数名称上时,我可以获得该函数参数的概述,但是当我使用自己的自定义函数执行此操作时,它不会执行此操作。

如何声明可以通过 Visual Studio Code 在概述中显示的 PowerShell 函数的文档?

我尝试这样做:

<#
.Description
Get-Function displays the name and syntax of all functions in the session.
#>
function test([string]$print){}


<# Setup the working directories if they do not exist #>
If(!(Test-Path $WORKING_DIRECTORY)) {test}

但这似乎不起作用。

非常感谢

最佳答案

.PARAMETER 添加到描述中对我有用。另请注意,我相信您必须保存并运行脚本一次才能显示它。

<#
.Description
Get-Function displays the name and syntax of all functions in the session.
.PARAMETER
#>

function test([string]$print){Write-Host $print}

If(Test-Path $env:userprofile) {test -print "Test123"}

enter image description here

https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help?view=powershell-6

关于powershell - 使用 Visual Studio Code 查看我的函数的文档字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58769826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com