diff --git a/.gitignore b/.gitignore index 92ab569..81ddf2d 100644 --- a/.gitignore +++ b/.gitignore @@ -53,6 +53,9 @@ deploy/ [Bb]in/ [Oo]bj/ +# Visual Studio 2015/2017 cache/options directory +.vs/ + # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* diff --git a/src/.editorconfig b/src/.editorconfig new file mode 100644 index 0000000..8d8d91c --- /dev/null +++ b/src/.editorconfig @@ -0,0 +1,14 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = crlf +insert_final_newline = true + +[*.cs] +indent_size: 2 +indent_style: space +