Last active
July 4, 2023 08:59
-
-
Save solrevdev/cd683ee6ab653f436d2b04236499f48e to your computer and use it in GitHub Desktop.
An updated omnisharp.json to try out see #omnisharp tag in raindrop.io for more info
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"RoslynExtensionsOptions": { | |
"EnableAnalyzersSupport": true, | |
"EnableDecompilationSupport": true, | |
"EnableImportCompletion": true | |
}, | |
"FormattingOptions": { | |
"EnableEditorConfigSupport": true, | |
"OrganizeImports": true | |
}, | |
"RenameOptions": { | |
"RenameInComments": true, | |
"RenameOverloads": true, | |
"RenameInStrings": true | |
}, | |
"FileOptions": { | |
"SystemExcludeSearchPatterns": ["**/node_modules/**/*", "**/bin/**/*", "**/obj/**/*"], | |
"ExcludeSearchPatterns": [] | |
} | |
} | |
// cSpell:ignore Decompilation | |
// TODO: test with some projects and see if it works as expected and if so update the SeedFolder project |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cSpell.words": [ | |
"accessibilities", | |
"ASPNET", | |
"Decompilation", | |
"dockerignore", | |
"dotfiles", | |
"editorconfig", | |
"Figgle", | |
"gitattributes", | |
"locproj", | |
"nativeproj", | |
"NOLOGO", | |
"Nuget", | |
"nupkg", | |
"omnisharp", | |
"OPTOUT", | |
"prettierignore", | |
"prettierrc", | |
"repo's", | |
"rohith", | |
"seedfolder", | |
"socio", | |
"solrevdev", | |
"Trello" | |
], | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/Thumbs.db": true, | |
"**/bin": true, | |
"**/obj": true, | |
".vscode": false, | |
".vs": true, | |
".gitignore": false, | |
".gitattributes": false, | |
".prettierrc": false, | |
".editorconfig": false, | |
".dockerignore": false, | |
"omnisharp.json": false, | |
"global.json": false, | |
"**/lcov.info": true | |
}, | |
"dotnet.defaultSolution": "solrevdev.seedfolder.sln" | |
} | |
// cSpell:ignore accessibilities, aspnet, dotfiles, figgle,lcov,locproj,nativeproj, nupkg,optout,rohith,seedfolder,socio,solrevdev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment