-
Notifications
You must be signed in to change notification settings - Fork 454
Expand file tree
/
Copy pathpackage.json
More file actions
170 lines (170 loc) · 4.91 KB
/
Copy pathpackage.json
File metadata and controls
170 lines (170 loc) · 4.91 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "sample-extension",
"displayName": "Sample",
"description": "A sample extension to show how the vscode-dotnet-runtime extension is used.",
"repository": {
"type": "git",
"url": "https://github.com/dotnet/vscode-dotnet-runtime.git"
},
"license": "MIT",
"version": "3.1.0",
"publisher": "ms-dotnettools",
"engines": {
"vscode": "^1.101.0"
},
"categories": [
"Other"
],
"capabilities": {
"virtualWorkspaces": true
},
"connectionString": "InstrumentationKey=02dc18e0-7494-43b2-b2a3-18ada5fcb522;IngestionEndpoint=https://westus2-0.in.applicationinsights.azure.com/;LiveEndpoint=https://westus2.livediagnostics.monitor.azure.com/;ApplicationId=e8e56970-a18a-4101-b7d1-1c5dd7c29eeb",
"main": "./out/extension.js",
"extensionDependencies": [
"ms-dotnettools.vscode-dotnet-runtime"
],
"contributes": {
"commands": [
{
"command": "sample.helloworld",
"title": "Run a dynamically acquired .NET Hello World App",
"category": "Sample"
},
{
"command": "sample.dotnet.acquire",
"title": "Acquire .NET runtime",
"category": "Sample"
},
{
"command": "sample.dotnet.acquireASPNET",
"title": "Acquire ASPNET runtime",
"category": "Sample"
},
{
"command": "sample.dotnet.acquireStatus",
"title": "Check the status of acquiring the .NET runtime",
"category": "Sample"
},
{
"command": "sample.dotnet.uninstallAll",
"title": "Uninstall all .NET runtimes",
"category": "Sample"
},
{
"command": "sample.dotnet.concurrentTest",
"title": "Concurrently acquire .NET runtimes (8.0, 9.0, 10.0)",
"category": "Sample"
},
{
"command": "sample.dotnet.concurrentASPNETTest",
"title": "Concurrently acquire ASPNET Core runtimes",
"category": "Sample"
},
{
"command": "sample.dotnet.showAcquisitionLog",
"title": "Show .NET runtime acquisition log",
"category": "Sample"
},
{
"command": "sample.dotnet.getAcquisitionLog",
"title": "Get the .NET runtime acquisition log file path",
"category": "Sample"
},
{
"command": "sample.dotnet.ensureDependencies",
"title": "Call ensureDotnetDependencies with custom dotnet arguments",
"category": "Sample"
},
{
"command": "sample.dotnet.acquireGlobalSDK",
"title": "Install .NET SDK Globally via .NET Install Tool (Former Runtime Extension)",
"category": "Sample"
},
{
"command": "sample.dotnet.findPath",
"title": "Find the .NET on the PATH",
"category": "Sample"
},
{
"command": "sample.dotnet.availableInstalls",
"title": "Find the .NET installs on the PATH",
"category": "Sample"
},
{
"command": "sample.dotnet-sdk.acquire",
"title": "Acquire .NET SDK",
"category": "Sample"
},
{
"command": "sample.dotnet-sdk.acquireGlobal",
"title": "Acquire .NET SDK on the machine globally using the SDK Extension. Requires admin.",
"category": "Sample"
},
{
"command": "sample.dotnet-sdk.acquireStatus",
"title": "Check the status of acquiring the .NET SDK",
"category": "Sample"
},
{
"command": "sample.dotnet-sdk.uninstallAll",
"title": "Uninstall all .NET SDKs",
"category": "Sample"
},
{
"command": "sample.dotnet-sdk.showAcquisitionLog",
"title": "Show .NET SDK acquisition log",
"category": "Sample"
},
{
"command": "sample.dotnet-sdk.listVersions",
"title": "Using the SDK Extension, list the newest versions of the .NET SDK or .NET Runtime.",
"category": "Sample"
},
{
"command": "sample.dotnet-sdk.recommendedVersion",
"title": "Show the recommended version of the SDK to install.",
"category": "Sample"
},
{
"command": "sample.dotnet.forceUpdate",
"title": "Force update of .NET runtimes",
"category": "Sample"
},
{
"command": "sample.dotnet.acquireNoForce",
"title": "Acquire .NET runtimes without forcing updates",
"category": "Sample"
},
{
"command": "sample.dotnet.resetUpdateTimer",
"title": "Reset the update timer for .NET",
"category": "Sample"
}
]
},
"scripts": {
"vscode:prepublish": "npm install && npm run compile && dotnet build ../msbuild/signJs --property jsOutputPath=..\\..\\sample\\dist -bl -v:normal",
"compile": "npm run clean && tsc -p ./",
"watch": "npm run clean && tsc -watch -p ./",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"clean": "npx rimraf out"
},
"dependencies": {
"@vscode/vsce": "^2.19.0",
"open": "^8.4.2",
"vscode-dotnet-runtime": "file:../vscode-dotnet-runtime-extension",
"vscode-dotnet-runtime-library": "file:../vscode-dotnet-runtime-library",
"vscode-dotnet-sdk": "file:../vscode-dotnet-sdk-extension",
"webpack": "^5.95.0"
},
"devDependencies": {
"@types/mocha": "9.0.0",
"@types/node": "^22.15.1",
"@types/source-map-support": "^0.5.10",
"@types/vscode": "^1.101.0",
"mocha": "^11.7.0",
"rimraf": "^6.1.3",
"tslint": "5.20.1",
"typescript": "^5.5.4"
}
}