-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (134 loc) · 3.85 KB
/
package.json
File metadata and controls
135 lines (134 loc) · 3.85 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
133
134
135
{
"name": "dotnet-build-buddy",
"displayName": "DotNET Build Buddy",
"description": "Automatically generates and updates .sln, .csproj, .fsproj, and .vbproj files when .NET ecosystem changes are detected",
"version": "1.0.1",
"publisher": "DotNET-Build-Buddy",
"icon": "images/DotNET_Build_Buddy.png",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"keywords": [
"dotnet",
"csharp",
"fsharp",
"vb.net",
"project",
"solution",
"build"
],
"activationEvents": [
"workspaceContains:**/*.cs",
"workspaceContains:**/*.fs",
"workspaceContains:**/*.vb",
"workspaceContains:**/*.csproj",
"workspaceContains:**/*.fsproj",
"workspaceContains:**/*.vbproj",
"workspaceContains:**/*.sln"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "dotnetBuildBuddy.generateSolution",
"title": "Generate Solution File",
"category": "DotNET Build Buddy"
},
{
"command": "dotnetBuildBuddy.updateProjects",
"title": "Update Project Files",
"category": "DotNET Build Buddy"
},
{
"command": "dotnetBuildBuddy.refreshAll",
"title": "Refresh All .NET Files",
"category": "DotNET Build Buddy"
}
],
"configuration": {
"title": "DotNET Build Buddy",
"properties": {
"dotnetBuildBuddy.autoUpdate": {
"type": "boolean",
"default": true,
"description": "Automatically update project files when changes are detected"
},
"dotnetBuildBuddy.watchPatterns": {
"type": "array",
"default": [
"**/*.cs",
"**/*.fs",
"**/*.vb"
],
"description": "File patterns to watch for changes"
},
"dotnetBuildBuddy.excludePatterns": {
"type": "array",
"default": [
"**/bin/**",
"**/obj/**",
"**/node_modules/**"
],
"description": "Patterns to exclude from watching"
},
"dotnetBuildBuddy.nugetCheckEnabled": {
"type": "boolean",
"default": true,
"description": "Enable NuGet package compatibility checking"
},
"dotnetBuildBuddy.nugetApiEnabled": {
"type": "boolean",
"default": true,
"description": "Enable real-time NuGet API lookups for package information"
},
"dotnetBuildBuddy.nugetCacheEnabled": {
"type": "boolean",
"default": true,
"description": "Enable caching of NuGet compatibility checks"
},
"dotnetBuildBuddy.nugetCacheExpiry": {
"type": "number",
"default": 3600,
"description": "Cache expiry time in seconds (default: 3600 = 1 hour)"
},
"dotnetBuildBuddy.nugetIgnoredPackages": {
"type": "array",
"default": [],
"description": "List of NuGet package names or patterns to ignore during compatibility checks"
},
"dotnetBuildBuddy.nugetApiTimeout": {
"type": "number",
"default": 5000,
"description": "NuGet API request timeout in milliseconds (default: 5000)"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/vscode": "^1.74.0",
"@types/xml2js": "^0.4.14",
"typescript": "^5.5.0"
},
"dependencies": {
"glob": "^11.0.3",
"xml2js": "^0.6.2"
},
"repository": {
"type": "git",
"url": "https://github.com/MilesONerd/DotNET-Build-Buddy.git"
},
"homepage": "https://github.com/MilesONerd/DotNET-Build-Buddy",
"bugs": {
"url": "https://github.com/MilesONerd/DotNET-Build-Buddy/issues"
},
"license": "Apache-2.0"
}