-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 948 Bytes
/
package.json
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "abpx",
"displayName": "ABPx",
"description": "Code Snippets that start with an x to speed up your ABP.IO development process",
"icon": "images/abpx-icon.png",
"version": "0.0.860",
"engines": {
"vscode": "^1.49.0"
},
"publisher": "BartVanHoey",
"repository": {
"type": "git",
"url": "https://github.com/bartvanhoey/ABPx.git"
},
"categories": [
"Snippets"
],
"keywords": [
"Blazor",
".NET Core",
"Razor",
"C#",
"ASP.NET Core",
"Snippets",
"abp",
"abp.io"
],
"contributes": {
"snippets": [
{
"language": "aspnetcorerazor",
"path": "./snippets/razor.json"
},
{
"language": "razor",
"path": "./snippets/razor.json"
},
{
"language": "csharp",
"path": "./snippets/csharp.json"
},
{
"language": "jsonc",
"path": "./snippets/jsonc.json"
}
]
}
}