Shift to `using` directives outside the namespace

This is a concession from StyleCop defaults, but it's just too hard to paddle upstream with the C# language team, which doesn't consistently test their refactoring features when `using` is inside the namespace.
This commit is contained in:
Andrew Arnott 2022-05-05 21:07:12 -06:00
Родитель 16d65511f7
Коммит 78cba24937
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: A9B9910CDCCDA441
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -10,6 +10,9 @@
},
"fileNamingConvention": "metadata",
"xmlHeader": false
},
"orderingRules": {
"usingDirectivesPlacement": "outsideNamespace"
}
}
}