gpt4 book ai didi

c# - 如何在 VSCode 中设置默认发布操作

转载 作者:太空宇宙 更新时间:2023-11-03 12:18:26 25 4
gpt4 key购买 nike

当我使用命令从 VSCode 发布我的 asp 应用程序时

dotnet publish -c release -o Z:\inetpub\wwwroot\Tools

有没有办法让它成为默认的发布命令,这样我就不需要每次都在终端中输入它了?

最佳答案

您可以将其设置为 a VS Code task

像这样:

{
"version": "2.0.0",
"tasks": [
{
"taskName": "publish",
"type": "shell",
"command": "dotnet publish",
"args": [
"-c", "release",
"-o", "Z:\inetpub\wwwroot\Tools"
],
"presentation": {
"reveal": "always",
"panel": "new"
}
},
]
}

关于c# - 如何在 VSCode 中设置默认发布操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48614616/

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