gpt4 book ai didi

msbuild - 我可以从 Visual Studio Code 命令面板运行 MSBuild 脚本吗?

转载 作者:行者123 更新时间:2023-12-01 05:04:47 25 4
gpt4 key购买 nike

我可以直接在 Visual Studio Code 命令面板中运行 MSBuild 脚本还是需要打开外部命令提示符?

我还没有直接看到任何关于 Visual Studio Code 和 MSBuild 的文档。到目前为止,我所看到的展示了 Grunt 任务。

最佳答案

在tasks.json中,您可以找到:

{
"version": "0.1.0",
"command": "msbuild",
"args": [
// Ask msbuild to generate full paths for file names.
"/property:GenerateFullPaths=true"
],
"taskSelector": "/t:",
"showOutput": "silent",
"tasks": [
{
"taskName": "build",
// Show the output window only if unrecognized errors occur.
"showOutput": "silent",
// Use the standard MS compiler pattern to detect errors, warnings
// and infos in the output.
"problemMatcher": "$msCompile"
}
]
}

这对于构建 C# 项目非常有用。我还没有找到运行 exe 的方法文件。我想这与“测试”命令有关...

关于msbuild - 我可以从 Visual Studio Code 命令面板运行 MSBuild 脚本吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30003600/

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