使用 TFS API 获取最新信息
我正在尝试使用 TFS API 从工作区中的服务器检索最新代码。 我发现了这个问题:
如何使用 Team Foundation Server SDK 获取最新版本的源代码?
这本质上就是我想要做的;但是,我想使用现有的工作区,并且只检索代码的特定部分。这可能吗?
例如(使用上面问题中给出的示例):
workspace.Get(request, GetOptions.GetAll | GetOptions.Overwrite, "$/MyFolder/MyProject");
是否可以在不设置新工作区或其他内容的情况下进行类似的操作?
I am trying to use the TFS API to retrieve the latest code from the server within a workspace.
I found this question:
How do you get the latest version of source code using the Team Foundation Server SDK?
Which is essentially what I want to do; however, I want to use an existing workspace, and only retrieve a certain section of the code. Is this possible?
For example (using the example given in the above question):
workspace.Get(request, GetOptions.GetAll | GetOptions.Overwrite, "$/MyFolder/MyProject");
Is something like this possible without setting up a new workspace or something?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要通过以下方式访问您的工作区:
来获取最新信息
然后您可以通过咨询此。
为了了解您的工作区详细信息,请在 VS 中导航至
You need to gain access to your workspace with something like this:
Then you get latest with a
or refine what you want get by consulting this.
In order to find out about your workspace(s) details navigate in VS to