我想使用TFS编程API实现以下命令:
tf history /stopafter:1 /version:W /recursive /format:detailed /noprompt .
我有一些代码,但它会尝试检查本地工作区信息,但没有。所以,我什么也回不了。
怎么做?
答案 0 :(得分:0)
您需要使用VersionControlServer.QueryHistory
:
versionControlServer.QueryHistory(
serverPath,
VersionSpec.Latest,
0,
RecursionType.Full, /* recursive */
null,
null,
new WorkspaceVersionSpec(workspace), /* /version:W */
1, /* /stopafter:1 */
true, /* /format:detailed */
true,
true,
false);