coc-omnisharp
Version:
OmniSharp integration, supports C# and VisualBasic.
136 lines (135 loc) • 3.69 kB
JSON
{
"name": "coc-omnisharp",
"displayName": "OmniSharp integration for coc.nvim",
"description": "OmniSharp integration, supports C# and VisualBasic.",
"author": "Yatao Li",
"license": "MIT",
"readme": "README.md",
"version": "0.0.28",
"publisher": "yatli",
"repository": {
"type": "git",
"url": "https://github.com/yatli/coc-omnisharp"
},
"engines": {
"coc": ">=0.0.73"
},
"keywords": [
"C#",
"csharp",
"VisualBasic",
"vb",
"coc.nvim",
"dotnet",
".NET Core",
".NET"
],
"categories": [
"Programming Languages",
"Linters",
"coc.nvim"
],
"activationEvents": [
"onLanguage:cs",
"onLanguage:vb"
],
"main": "out/client/extension.js",
"files": [
"out",
"syntaxes",
"snippets",
"README.md",
"LICENSE"
],
"contributes": {
"languages": [
{
"id": "cs",
"aliases": [
"CSharp",
"C#"
],
"extensions": [
".cs",
".csx",
".cake"
]
},
{
"id": "vb",
"aliases": [
"VisualBasic",
"VB"
],
"extensions": [
".vb"
]
}
],
"grammars": [],
"configuration": {
"type": "object",
"title": "OmniSharp Configuration",
"properties": {
"omnisharp.version": {
"type": "string",
"default": "latest",
"description": "Download a specific OmniSharp-Roslyn version"
},
"omnisharp.path": {
"type": "string",
"default": "",
"description": "Use a custom executable instead of the included bundle"
},
"omnisharp.trace.server": {
"type": "string",
"default": "information",
"enum": [
"information",
"verbose"
],
"description": "Trace level of omnisharp server"
},
"omnisharp.debug.server": {
"type": "boolean",
"default": false,
"description": "If set to true, wait for a debugger to attach on startup"
}
}
},
"snippets": [
{
"language": "cs",
"path": "./snippets/csharp.json"
}
],
"rootPatterns": [
{
"filetype": "cs",
"patterns": [
"*.sln"
]
},
{
"filetype": "vb",
"patterns": [
"*.sln"
]
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"extensionDependencies": [],
"dependencies": {
"@types/follow-redirects": "^1.8.0",
"coc-utils": "0.0.12"
},
"devDependencies": {
"@types/node": "^10.3.3",
"typescript": "^3.5.2",
"coc.nvim": "^0.0.73"
}
}