Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/csharp/package.json
3309 views
1
{
2
"name": "csharp",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "0.10.x"
10
},
11
"scripts": {
12
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin dotnet/csharp-tmLanguage grammars/csharp.tmLanguage ./syntaxes/csharp.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"configurationDefaults": {
17
"[csharp]": {
18
"editor.maxTokenizationLineLength": 2500
19
}
20
},
21
"languages": [
22
{
23
"id": "csharp",
24
"extensions": [
25
".cs",
26
".csx",
27
".cake"
28
],
29
"aliases": [
30
"C#",
31
"csharp"
32
],
33
"configuration": "./language-configuration.json"
34
}
35
],
36
"grammars": [
37
{
38
"language": "csharp",
39
"scopeName": "source.cs",
40
"path": "./syntaxes/csharp.tmLanguage.json",
41
"tokenTypes": {
42
"meta.interpolation": "other"
43
},
44
"unbalancedBracketScopes": [
45
"keyword.operator.relational.cs",
46
"keyword.operator.arrow.cs",
47
"punctuation.accessor.pointer.cs",
48
"keyword.operator.bitwise.shift.cs",
49
"keyword.operator.assignment.compound.bitwise.cs"
50
]
51
}
52
],
53
"snippets": [
54
{
55
"language": "csharp",
56
"path": "./snippets/csharp.code-snippets"
57
}
58
]
59
},
60
"repository": {
61
"type": "git",
62
"url": "https://github.com/microsoft/vscode.git"
63
}
64
}
65
66