我正在尝试创建TFS ANT构建脚本。从 ant 获取 TFS 资源时:"com/teamprise/ant/antlib.xml"。它无法加载罐子。我从搜索中了解到,这个antlib.xml不再受支持。任何机构都可以建议我查找哪个资源来访问我的 ant 脚本中的命令行 tfs 命令。
以下是代码片段:
<path id= "tfsant.classpath" >
<fileset dir= "${env.ANT_HOME}/lib" >
<include name= "*teamprise-ant*.jar" />
</fileset>
</path>`enter code here`
<typedef resource="com/teamprise/ant/antlib.xml" classpathref="tfsant.classpath" />
<exec executable="tf">
<arg value="checkout"/>
<arg value="${tfsroot}/temp/BUILD_${build.number}"/>
<arg value="${workdir}"/>
</exec>
可以在计算机上安装 团队资源管理器 Everywhere。这将安装 TF 命令行实用程序。为 tf.exe 配置环境变量"Path",然后可以直接从 ANT 脚本访问 tf 命令。