This repository was archived by the owner on Apr 11, 2025. It is now read-only.
forked from azz/vscode-csproj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.6 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.6 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "vscode-vsproj",
"displayName": "VS Code .*proj",
"description": "Add/remove files in .*proj file to maintain compatibility with Visual Studio",
"version": "1.2.0",
"publisher": "jRichardeau",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"keywords": [
"njsproj",
"csproj",
"Visual Studio",
"multi-root ready"
],
"icon": "img/icon.png",
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.vsproj.add",
"title": "vsproj: Include in Project"
},
{
"command": "extension.vsproj.remove",
"title": "vsproj: Remove from Project"
},
{
"command": "extension.vsproj.output",
"title": "vsproj: Show Output"
}
],
"configuration": {
"type": "object",
"title": "vsproj configuration",
"properties": {
"vsproj.enabled": {
"type": "boolean",
"default": true,
"description": "Turn this extension on or off."
},
"vsproj.projExtension": {
"type": "string",
"default": "njsproj",
"description": "VS project file to watch and update"
},
"vsproj.encoding": {
"type": "string",
"default": "ascii",
"description": "VS project file encoding"
},
"vsproj.itemType": {
"type": [
"string",
"object"
],
"default": {
"*": "Content",
".js": "Compile",
".ts": "TypeScriptCompile"
},
"description": "Type of XML element to put in the vsproj file."
},
"vsproj.includeRegex": {
"type": [
"string",
"null"
],
"default": ".*",
"description": "A regular expression to include file paths by."
},
"vsproj.excludeRegex": {
"type": [
"string",
"null"
],
"default": "node_modules",
"description": "A regular expression to exclude file paths by."
}
}
},
"menus": {
"explorer/context": [
{
"command": "extension.vsproj.add",
"group": "1_modification"
},
{
"command": "extension.vsproj.remove",
"group": "1_modification"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "vsce package"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"@types/mock-fs": "^3.6.30",
"@types/mz": "0.0.30",
"@types/node": "^6.0.40",
"@types/sinon": "^1.16.31",
"chai": "^3.5.0",
"mocha": "^2.3.3",
"mock-fs": "^4.5.0",
"sinon": "^1.17.6",
"typescript": "^2.0.6",
"vscode": "^1.1.27"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jRichardeau/vscode-vsproj.git"
},
"dependencies": {
"@azz/elementtree": "^0.1.6",
"lodash.debounce": "^4.0.8",
"mz": "^2.4.0",
"strip-bom": "^3.0.0"
}
}