有人知道我在哪里可以通过 .net 获取有关 VSS 2005 集成的文档或教程
我知道我可以将 SourceSafeTypeLib 添加到项目中,并可以在对象浏览器中探索它并找到明显的东西(GetLatest 等),但我正在寻找一些更全面的文档或特定教程,例如“撤消其他用户的结帐”或“确定谁签出了文件。
如果有人知道在哪里可以找到此材料,如何使用 VSS 执行高级或非显而易见的任务,或者知道如何反汇编 COM api(这样我就可以设计自己的 api),那么非常感激。
I know that I can add the SourceSafeTypeLib to a project and can explore it in object browser and find obvious things (GetLatest, etc), but I am looking for some more thorough documentation or specific tutorials on things like "undo another user's checkout" or"determine who has a file checked out.
If anyone knows where to find this material, how to do advanced or non-obvious tasks with VSS, or knows how to disassemble a COM api (so I can engineer my own api) it would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以查看 Microsoft 的文档< /a> 在 Microsoft.VisualStudio.SourceSafe.Interop 命名空间上(我假设这就是您所看到的)。 我用它创建了一个 VB.NET 实用程序,可以根据 VSS 2005 数据库获取最新信息、签出和签入。
快速浏览后发现了 IVSSItem.UndoCheckout 方法和 IVSSCheckouts 类型,它是给定文件的签出集合。
You might check out Microsoft's documentation on the Microsoft.VisualStudio.SourceSafe.Interop namespace (I assume that's what you've looked at). I used it to create a VB.NET utility that does get latest, check-outs, and check-ins against a VSS 2005 database.
A quick perusal revealed the IVSSItem.UndoCheckout method, and the IVSSCheckouts type, which is a collection of checkouts for a given file.
您还可以查看 Visual SourceSafe 自动化 MSDN 上的文章。
You can also have a look at Visual SourceSafe Automation article at MSDN.