Visual Studio 2010 中的设置是与解决方案一起存储还是与 IDE 一起存储?
Visual Studio 2010 中的设置是与解决方案一起存储还是与 IDE 一起存储?
有没有办法让设置成为 IDE 的默认设置,然后由项目覆盖?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Visual Studio 2010 中的设置是与解决方案一起存储还是与 IDE 一起存储?
有没有办法让设置成为 IDE 的默认设置,然后由项目覆盖?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
影响用户界面的任何设置(使用“工具”+“选项”设置的设置)不会存储在解决方案或项目文件中。也没有办法获得加载的解决方案来改变它们。它们存储在 CurrentSettings.vssettings 文件、用户文件夹的 Documents/Visual Studio 20xx/Settings 子目录中。
Any settings affecting the user interface, the ones you set with Tools + Options are not stored in solution or project files. Nor is there a way to get a loaded solution to alter them. They are stored in the CurrentSettings.vssettings file, Documents/Visual Studio 20xx/Settings subdirectory of your user folder.
它们可以导出和导入。在
工具
菜单下,查看导入和导出设置...
They can be exported and imported. Under the
Tools
menu, check outImport and Export Settings...
VS2010 IDE 设置与 IDE 一起保存,而不是与项目或解决方案一起保存。 (当然,项目/解决方案设置除外,但我认为我们不是在谈论它)
阅读此内容后 msdn 文章,似乎拥有不同配置集的常见方法是使用导入/导出设置选项,为每个配置集提供一个 xml 文件。
也许某些插件可以完成这项工作,但目前我不知道有任何插件具有此功能。
The VS2010 IDE settings are saved with the IDE, not with the project or solution. (Except, of course the project/solutions settings, but I assume that we're not talking about that)
After reading this msdn article,it seems that the common way to have different sets of configuration is using the import/export setting option having one xml file for each configuration set.
Maybe some addin could do the job, but at this time I don't know any with this features.