Eclipse:如何移动.externalToolBuilders目录?

发布于 2024-12-11 11:22:05 字数 790 浏览 0 评论 0原文

我已经为 3 个 eclipse 项目构建了一个小型外部工具生成器。 我如何告诉 Eclipse 使用项目目录之外的(共享)目录?

我发现 eclipse 将该设置存储在 .project 文件中。但似乎无法更改该值:

<buildCommand>
    <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
    <arguments>
        <dictionary>
            <key>LaunchConfigHandle</key>
            <value>&lt;project&gt;/.externalToolBuilders/do cleanup.launch</value>
        </dictionary>
    </arguments>
</buildCommand>

我绑定了这些值:

  • &lt;project&gt;/../MyUtils/ExternalToolBuilders/do cleanup.launch
  • .. /MyUtils/ExternalToolBuilders/do cleanup.launch
  • x:/full/path/to/file/do cleanup.launch

I have built a small External Tool Builders for 3 eclipse projects.
How can I tell eclipse to use a (shared) directory outsite of the project directory?

I figgerd out that eclipse stores that settings in the .project file. But it seems that it is not possible to change the value:

<buildCommand>
    <name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
    <arguments>
        <dictionary>
            <key>LaunchConfigHandle</key>
            <value><project>/.externalToolBuilders/do cleanup.launch</value>
        </dictionary>
    </arguments>
</buildCommand>

I tied the values:

  • <project>/../MyUtils/ExternalToolBuilders/do cleanup.launch
  • ../MyUtils/ExternalToolBuilders/do cleanup.launch
  • x:/full/path/to/file/do cleanup.launch

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半﹌身腐败 2024-12-18 11:22:05

试试这个:

<dictionary>
    <key>LaunchConfigHandle</key>
    <value><?xml version="1.0" encoding="UTF-8"?><launchConfiguration local="false" path="/MyUtils/ExternalToolBuilders/docleanup.launch"/></value>
</dictionary>

Try this:

<dictionary>
    <key>LaunchConfigHandle</key>
    <value><?xml version="1.0" encoding="UTF-8"?><launchConfiguration local="false" path="/MyUtils/ExternalToolBuilders/docleanup.launch"/></value>
</dictionary>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文