我有以下版本的视觉工作室:
Microsoft Visual Studio Community 2017 版本 15.1 (26403.7) 发布 VisualStudio.15.Release/15.1.0+26403.7
我创建了一个新项目并.editorconfig
在我的解决方案基础文件夹中添加了一个文件。其内容如下:
root = true
[*.cs]
indent_style = space:warning
indent_size = 12:warning
# CSharp and VisualBasic code style settings:
[{*.cs,*.vb}]
dotnet_style_qualification_for_field = false:warning
文件位置应该是正确的:
.editorconfig <-- Here it is
ApplicationInsights.config
App_Data
App_Start
bin
Content
Controllers
favicon.ico
fonts
Global.asax
Global.asax.cs
Models
obj
packages.config
Properties
Scripts
Startup.cs
Views
Web.config
Web.config.backup.1
Web.Debug.config
Web.Release.config
WebApplication8.csproj
WebApplication8.csproj.user
但是每当我编辑一个 .cs 文件时,没有什么特别的事情发生(尽管缩进不遵循规则),我期望警告(例如在构建之后)出现,但没有。
我的配置是否有问题,或者是否有什么可能阻碍配置的应用?