如何使用C#(Visual Studio)从TFS(Team Foundation Server)获取/复制文件

问题描述 投票:0回答:1

我需要对TFS中的一些文件夹和文件进行托管。我可以在我的本地文件夹之间移动它,但我仍然不知道如何从服务器获取文件。你们中的任何一个人之前做过这个吗?

c# tfs
1个回答
1
投票

如果此文件在TFS版本控制(TFVC)下有一个TFS REST API来获取文件内容:https://www.visualstudio.com/en-us/docs/integrate/api/tfvc/items#getafile如果您的文件在TFS Git版本控制中,还有相应的Git API:https://www.visualstudio.com/en-us/docs/integrate/api/git/items#streamafile最后,有一篇很好的文章,展示了如何从C#应用程序调用REST API:https://docs.microsoft.com/en-us/aspnet/web-api/overview/advanced/calling-a-web-api-from-a-net-client

© www.soinside.com 2019 - 2024. All rights reserved.