-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
52 lines (52 loc) · 1.17 KB
/
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
49
50
51
52
{
"name": "vscode-csharp-snippets",
"publisher": "jorgeserrano",
"displayName": "C# Snippets",
"description": "C# Snippets for Visual Studio Code",
"icon": "images/vscode-csharp-snippets.png",
"version": "1.1.0",
"author": "Jorge Serrano",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "https://github.com/J0rgeSerran0/vscode-csharp-snippets.git"
},
"categories": [
"Other",
"Programming Languages",
"Snippets"
],
"keywords": [
".NET",
".NET Core",
".NET 5",
"ASP.NET",
"gRPC",
"Visual Studio",
"C#",
"csharp",
"languages",
"dotnet",
"programming languages",
"snippet",
"snippets",
"Razor"
],
"contributors": [
{
"name": "Jorge Serrano",
"url": "http://geeks.ms/Jorge/"
}
],
"engines": {
"vscode": "^1.5.0"
},
"contributes": {
"snippets": [
{
"language": "csharp",
"path": "./snippets/csharp.json"
}
]
}
}