vscode 上的 'build' 按钮在哪里?

Where is my 'build' button up on my vscode?

试图在我的应用程序中创建一个新的 .keystore,我意识到我的 vscode 的构建按钮已经不存在了,类似的事情发生在其他人身上,如果是这样,怎么办您设法生成了一个 .keystore?

我的 vscode 上只有“文件编辑选择视图转到 运行 终端帮助”。 Go 和 运行 之间的构建在哪里?

不确定您的构建按钮是如何消失的,但通常在 vscode 中,要构建您的代码,您需要在 .vscode\tasks.json 中为类型定义一个构建任务您要构建的代码数量,例如构建 .net Core:

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "command": "dotnet",
            "type": "shell",
            "args": [
                "build",
                // Ask dotnet build to generate full paths for file names.
                "/property:GenerateFullPaths=true",
                // Do not generate summary otherwise it leads to duplicate errors in Problems panel
                "/consoleloggerparameters:NoSummary"
            ],
            "group": "build",
            "presentation": {
                "reveal": "silent"
            },
            "problemMatcher": "$msCompile"
        }
    ]
}

按 Ctrl+Shift+B 或 运行 运行 从全局终端菜单构建任务

https://code.visualstudio.com/docs/editor/tasks