VS2010解决方案资源管理器中的自定义文件排序
有没有办法强制 Visual Studio 2010 中的解决方案资源管理器按字母顺序对文件进行排序但按 *.h、*.inl 和 *.cpp 的顺序?
我想要
Dummy.h
Dummy.inl
Dummy.cpp
Emmy.h
Emmy.cpp
Grammy.h
Grammy.cpp
而不是
Dummy.cpp
Dummy.h
Dummy.inl
Emmy.cpp
Emmy.h
Grammy.cpp
Grammy.h
Is there any way to force Solution Explorer in Visual Studio 2010 to sort files alphabetically but in order *.h, *.inl and *.cpp?
I want to have
Dummy.h
Dummy.inl
Dummy.cpp
Emmy.h
Emmy.cpp
Grammy.h
Grammy.cpp
instead of
Dummy.cpp
Dummy.h
Dummy.inl
Emmy.cpp
Emmy.h
Grammy.cpp
Grammy.h
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有内置这样的功能。
我也不知道有任何扩展或加载项支持此功能,但我想您可以创建一个。开始使用 Visual Studio SDK,或浏览 Visual Studio Gallery 具有类似目的。
但是,解决方案资源管理器确实支持将相关文件(例如标头、资源和代码文件)分组到虚拟文件夹中。通过取消选择“解决方案资源管理器”窗口顶部左侧标有“显示所有文件”的第二个按钮来打开该功能。
No, there is no such feature built in.
I don't know of any extension or add-in that supports this, either, but I imagine that you could create one. Get started with the Visual Studio SDK, or browse the Visual Studio Gallery for something that serves a similar purpose.
However, the Solution Explorer does support grouping related files (such as headers, resources, and code files) into virtual folders. Turn that feature on by deselecting the second button to the left at the top of the Solution Explorer window labeled "Show All Files".