如何使 Visual Studio 起始页显示我签出的文件?
我们使用 Visual Source Safe。有没有办法让“所有文件签出给我”报告显示在 Visual Studio 的起始页上?这样,当我打开 VS 时,我会看到我从 VSS 中签出的所有内容的报告,按项目分类。
We use Visual Source Safe. Is there a way to have the all-files-checked-out-to-me report display on the Start Page in Visual Studio? So that when I opened VS, I'd see a report of everything I have checked out from VSS, categorized by project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能是一种比您感兴趣的更复杂的方法,但由于起始页可以显示 RSS 提要,因此您可以编写一个 Web 应用程序,通过 COM 接口查询 VSS、列出您的签出并将其发布为提要。
如果您不想自己动手,我进行了快速搜索并发现了 VssRssSvc,一个从 VSS 数据库生成 RSS 源的应用程序。它包含源代码,因此您只需做一点工作就可以非常接近地得到您想要的东西。
如果您决定构建它,请告诉我。 :)
This is probably a more complicated approach than you're interested in, but since the start page can show RSS feeds, you could write a web app that would query VSS via the COM interface, list your checkouts, and publish that as a feed.
If you're not looking to roll your own, I did a quick search and came across VssRssSvc, an application that generates RSS feeds from a VSS database. It includes source, so you'd be pretty close to getting what you're after with a little bit of work.
If you decide to build it, let me know. :)
Visual Studio 2010 允许自定义启动页,虽然我不知道这是否可以解决您的问题。
Visual Studio 2010 allows customization of the start page, altough I don't know if this could solve your problem.
我认为没有办法自定义起始页。您应该能够在“待更改”窗口中看到所有签出(和修改)的文件。除此之外,您可能必须使用插件或包来自定义 VS。
I don't think there is a way to customize the Start Page. You should be able to see all your checked-out (and modified) files in the Pending Changes window. Beyond that you'd probably have to customize VS with an Addin or Package.