我为3个eclipse项目构建了一个小型外部工具构建器。 如何告诉eclipse使用项目目录的(共享)目录?
我发现eclipse将该设置存储在.project文件中。但似乎无法改变价值:
<buildCommand>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value><project>/.externalToolBuilders/do cleanup.launch</value>
</dictionary>
</arguments>
</buildCommand>
我绑定了值:
<project>/../MyUtils/ExternalToolBuilders/do cleanup.launch
../MyUtils/ExternalToolBuilders/do cleanup.launch
x:/full/path/to/file/do cleanup.launch
答案 0 :(得分:0)
试试这个:
<dictionary>
<key>LaunchConfigHandle</key>
<value><?xml version="1.0" encoding="UTF-8"?><launchConfiguration local="false" path="/MyUtils/ExternalToolBuilders/docleanup.launch"/></value>
</dictionary>