omnisharp.json 584 B

123456789101112131415161718192021222324252627
  1. {
  2. "RoslynExtensionsOptions": {
  3. "enableAnalyzersSupport": true
  4. },
  5. "FormattingOptions": {
  6. "enableEditorConfigSupport": true
  7. },
  8. "RenameOptions": {
  9. "RenameInComments": true,
  10. "RenameOverloads": true,
  11. "RenameInStrings": true
  12. },
  13. "msbuild": {
  14. "MSBuildSDKsPath": ".\\.dotnet",
  15. "EnablePackageAutoRestore": true,
  16. "loadProjectsOnDemand": true
  17. },
  18. "fileOptions": {
  19. "systemExcludeSearchPatterns": [
  20. "**/node_modules/**/*",
  21. "**/bin/**/*",
  22. "**/obj/**/*",
  23. "**/node_modules/**/*"
  24. ],
  25. "excludeSearchPatterns": []
  26. }
  27. }