直接从 Visual Studio 强制编码 Visual Studio 解决方案中的所有文件
有什么方法可以直接在 Visual Studio 中转换 VS 解决方案 (*.sln) 中所有文件的编码吗? (我用的是2008)。
有没有插件可以达到这个效果?
Any way to convert the encoding of all the files within a VS solution (*.sln) directly inside Visual Studio? (I am using 2008).
Any Add-in for this effect?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以轻松编写 VS 宏来实现这一点。你必须 迭代所有项目,然后为每个项目迭代所有项目配置(假设更改应适用于所有项目),并为每个配置修改 VCProjectConfigurationProperties.CharacterSet 为您所需的编码。
(该链接来自 VS2010 文档,但也应适用于以前的 VS 版本)。
You can easily write a VS macro to achieve that. You'd have to iterate over all projects, then for each project iterate over all project configurations (assuming the change should apply to all), and for each configuration modify VCProjectConfigurationProperties.CharacterSet to your desired encoding.
(The link is from the VS2010 documentation, but should apply to previous VS versions too).