Visual Studio 2003 生产力技巧
我已经使用 Visual Studio 2005 和 2008 很长时间了,但现在我正在咨询某个拥有所有 ASP.NET 1.1 应用程序的地方,所以我需要使用 Visual Studio 2003。
任何人都可以推荐一些好的加载项、设置吗使用 VS2003 时的一般提示等,使其更像...嗯...VS2008?
注意:我听说过 MSBee,但 VS2005/8 不是一个选择。 另请注意,我已经安装了 ReSharper for Vs2003。
更新:我喜欢 2005/2008 年的一些具体内容,但 2003 年没有(至少据我所知):
- Intellisense 不会立即弹出……即我必须输入“this”。 或“某个命名空间”。 在我得到任何智能感知之前,
- 一些小事情,比如当我输入 runat=" 时,然后智能感知给了我服务器,但没有给我结束语。有很多类似的小挫折。
- 我不使用“设计器” “,所以必须输入控件的所有受保护属性是很烦人的。如果能以某种方式自动完成那就太好了。
就像这样的东西,或者我没有想到的任何其他提示/技巧......抱歉,如果这有点模糊。
I have been using Visual Studio 2005 and 2008 for a long time now, but now I'm consulting somewhere that has all ASP.NET 1.1 apps, so I need to use Visual Studio 2003.
Can anyone recommend some good add-ins, settings, general tips, etc when using VS2003 to make it a little more like...well...VS2008?
Note: I've heard about MSBee, but VS2005/8 is not an option. Also note that I have installed ReSharper for Vs2003 already.
Update: Some specifc things I like about 2005/2008 that aren't present in 2003 (at least as far as I can tell):
- Intellisense doesn't popup immediately...i.e. I have to type "this." or "SomeNamespace." before I get any intellisense
- Little things like when I type in runat=" and then intellisense gives me server, but doesn't give me the closing quote. There are a lot of little frustrations like that.
- I don't use the "designer", so it's annoying to have to type in all the protected properties for the controls. It would be nice if that was done automatically somehow.
Just stuff like that, or any other hints/tricks that I haven't thought of...? Sorry if this is a bit vague.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我强烈推荐 Visual Assist 用于任何版本的 VS。
有一些书籍,例如 掌握 Visual Studio .NET 和许多常见的建议
适用于所有版本的 Visual Studio(例如学习键盘快捷键、掌握命令控制台……)。 但如果您已经熟悉了 VS 的新版本,我怀疑它们会对您有多大帮助。
VS 2003 存在许多插件,例如 MZ-Tools 和
Kingstools。 MSDN 杂志有
每个开发人员现在都应该下载的十个必备工具的列表。 我想您已经告诉我们您具体的功能是什么
VS2003 中缺失。 那么我们也许可以推荐一个解决方案
这使得 VS2003 在这方面更像 VS2008。
I highly recommend Visual Assist for any version of VS.
There are some books, e.g. Mastering Visual Studio .NET and many suggestions common
to all versions of Visual Studio (like learning the key board shortcuts, mastering the command console, ...). But if you are already experienced with newer versions of VS, I doubt they will benefit you much.
Many plugins exist for VS 2003, e.g. MZ-Tools and
Kingstools. MSDN Magazine has
a list of Ten Must-Have Tools Every Developer Should Download Now. I think you have tell us which feature specifically you
are missing in VS2003. Then we might be able recommend a solution
which makes VS2003 more like VS2008 in that respect.
我将从这个链接开始 - 掌握键盘快捷键对我来说总是一个很大的生产力提升。
http://www.codinghorror。 com/blog/files/Visual%20Studio%20.NET%202003%20Keyboard%20Shortcuts.htm
I'd start with this link - getting a handle on keyboard shortcuts is always a big productivity boost for me.
http://www.codinghorror.com/blog/files/Visual%20Studio%20.NET%202003%20Keyboard%20Shortcuts.htm
我喜欢将“解决方案命令提示符”和“解决方案资源管理器窗口”绑定到键盘快捷键。 刚刚配置了两个外部工具(工具 -> 外部工具...)
命令: cmd.exe 初始目录: $(ProjectDir)
命令: explorer.exe 参数: - /E,/Root,"$(SolutionDir)"
然后你可以在工具 -> 中绑定这些(我将它们绑定到 Alt-E 和 Alt-C) ; 定制...-> 键盘...菜单。 您想要查找“Tools.ExternalCommand1 - 20”命令。
I like to have "Solution command prompt" and "Solution explorer window" bound to keyboard shortcuts. Just configured two external tools (Tools -> External Tools...)
Command: cmd.exe Initial Directory: $(ProjectDir)
Command: explorer.exe Arguments: - /E,/Root,"$(SolutionDir)"
Then you can bind these (i have them bound to Alt-E and Alt-C) in the Tools -> Customize... -> Keyboard... menu. You want to look for the "Tools.ExternalCommand1 - 20" commands.