- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
27 lines (27 loc) · 696 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "vbnet",
"displayName": "VB.NET Grammars and Snippets",
"description": "A improvement for the original Visual Basic language.",
"version": "1.0.2",
"publisher": "gordonwalkedby",
"license": "MIT",
"repository": "https://github.com/gordonwalkedby/VBNETinCode",
"engines": { "vscode": "*" },
"contributes": {
"languages": [{
"id": "vbnet",
"extensions": [ ".vb" ],
"aliases": [ "Visual Basic .NET", "vbnet" ],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "vbnet",
"scopeName": "source.vbnet",
"path": "./syntaxes/vbnet.json"
}],
"snippets": [{
"language": "vbnet",
"path": "./snippets/vbnet.json"
}]
}
}