如何在 vscode 中指定 jar 导出目录。

huangapple go评论65阅读模式
英文:

How to specify jar export directory on vscode

问题

我想知道在Vscode的“导出jar”选项中是否可以指定特定目录。

英文:

I want to know if I can specify a special directory for the "Export jar" option on Vscode

答案1

得分: 1

在最新版本(0.14.0)的Java项目管理器扩展中,引入了一个新的设置 java.project.exportJar.targetPath,用于指定导出JAR文件的输出位置。默认情况下,它是 ${workspaceFolder}/${workspaceFolderBasename}.jar

您还可以将其设置为空,这意味着扩展将提示一个文件资源管理器对话框,要求您选择位置。

英文:

In the latest version (0.14.0) of Project Manager for Java extension, it introduced a new setting java.project.exportJar.targetPath to specify the output location of the export jar. By default, it's ${workspaceFolder}/${workspaceFolderBasename}.jar

You can also set it empty, which means the extension will prompt a file explorer dialog to ask you choose the location.

huangapple
  • 本文由 发表于 2020年10月22日 03:07:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/64470145.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定