Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Nowak <nowakra@gmail.com>2019-02-28 21:36:07 +0300
committerGitHub <noreply@github.com>2019-02-28 21:36:07 +0300
commitcb21edc5009b254388fc6da93d212f679087c326 (patch)
treecbb7e51a28347e84b1dfa12cf1413b3f007a0b08 /.editorconfig
parentf168835c0ad95a0dc5963c5023285aa8a3b0b387 (diff)
Fix #7258 - remove components.server dependencies on blazor-specific plumbing (#7934)
* Removes a bunch of trivial usage of Blazor ... in names and comments where we don't specifically mean Blazor. * Remove obsolete Startup from Components app * Move UseBlazor into Blazor.Server Moves UseBlazor and the related features in Blazor.Server - along with some other general cleanup of misc shared files. Now Components.Server has a much slimmer set of dependencies (MVC is gone) and doesn't contain the "double startup" pattern that we introduced (sorry). We'll revisit UseBlazor and the dependencies there once the new MapFallbackToFile support is available from static files. * minor PR feedback * Update reference assemblies * fix broken test
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig10
1 files changed, 9 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig
index 35147d7db8..00aaa787e7 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -1,6 +1,14 @@
; EditorConfig to support per-solution formatting.
; Use the EditorConfig VS add-in to make this work.
; http://editorconfig.org/
+;
+; Here are some resources for what's supported for .NET/C#
+; https://kent-boogaart.com/blog/editorconfig-reference-for-c-developers
+; https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference?view=vs-2017
+;
+; Be **careful** editing this because some of the rules don't support adding a severity level
+; For instance if you change to `dotnet_sort_system_directives_first = true:warning` (adding `:warning`)
+; then the rule will be silently ignored.
; This is the default for the codeline.
root = true
@@ -13,7 +21,7 @@ insert_final_newline = true
[*.cs]
indent_size = 4
-dotnet_sort_system_directives_first = true:warning
+dotnet_sort_system_directives_first = true
[*.{xml,config,*proj,nuspec,props,resx,targets,yml,tasks}]
indent_size = 2