问题描述
我更喜欢我自己的代码格式风格,而不是 Visual Studio 的默认设置.我在工具→选项中关闭了自动格式化选项.在大多数情况下,它有效.
I prefer my own style of code formatting as opposed to Visual Studio's default settings. I've turned off auto-formatting options in Tools→Options. In most cases, it works.
但是,在使用任何内置重构后,Visual Studio 会使用其默认设置破坏我的设置.我如何阻止 VS 这样做?
However, after using any of the built-in refactorings, Visual Studio clobbers my settings with its default settings. How do I keep VS from doing that?
推荐答案
我在 aspx
页面中编写 VB 时遇到了这个问题.
I had this problem while writing VB in an aspx
page.
解决方案是转到工具>选项>文本编辑器>基本>VB特定"并关闭漂亮列表".
The solution was to go to 'Tools > Options > Text Editor > Basic > VB Specific' and turn 'Pretty Listing' OFF.
注意 - 在 Visual Studio 2015 中,可以在以下位置找到:
Note - in Visual Studio 2015 this can be found at:
工具 > 选项 > 文本编辑器 > 基本 > 高级
Tools > Options > Text Editor > Basic > Advanced
这篇关于在 Visual Studio 中关闭自动格式设置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!