mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
1e0580ec23
* support grouping of extensions * remove grouping * reuse categories parsing * cleanup * fix tests
54 lines
1.2 KiB
JSON
54 lines
1.2 KiB
JSON
{
|
|
"name": "csharp",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "0.10.x"
|
|
},
|
|
"scripts": {
|
|
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin dotnet/csharp-tmLanguage grammars/csharp.tmLanguage ./syntaxes/csharp.tmLanguage.json"
|
|
},
|
|
"categories": ["Programming Languages"],
|
|
"contributes": {
|
|
"configurationDefaults": {
|
|
"[csharp]": {
|
|
"editor.maxTokenizationLineLength": 2500
|
|
}
|
|
},
|
|
"languages": [
|
|
{
|
|
"id": "csharp",
|
|
"extensions": [
|
|
".cs",
|
|
".csx",
|
|
".cake"
|
|
],
|
|
"aliases": [
|
|
"C#",
|
|
"csharp"
|
|
],
|
|
"configuration": "./language-configuration.json"
|
|
}
|
|
],
|
|
"grammars": [
|
|
{
|
|
"language": "csharp",
|
|
"scopeName": "source.cs",
|
|
"path": "./syntaxes/csharp.tmLanguage.json"
|
|
}
|
|
],
|
|
"snippets": [
|
|
{
|
|
"language": "csharp",
|
|
"path": "./snippets/csharp.code-snippets"
|
|
}
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|