{ "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": "0.0.1", "publisher": "ms-dotnettools", "engines": { "vscode": "^1.75.0" }, "categories": [ "Other" ], "capabilities": { "virtualWorkspaces": true }, "main": "./out/extension.js", "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.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 all 2.X .NET Core runtimes", "category": "Sample" }, { "command": "sample.dotnet.showAcquisitionLog", "title": "Show .NET runtime acquisition log", "category": "Sample" }, { "command": "sample.dotnet.acquireGlobalSDK", "title": "Install .NET SDK Globally via .NET Install Tool (Former Runtime Extension)", "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" } ] }, "scripts": { "vscode:prepublish": "npm install && npm run compile", "compile": "npm run clean && tsc -p ./", "watch": "npm run clean && tsc -watch -p ./", "test": "npm run compile && node ./node_modules/vscode/bin/test", "clean": "rimraf out" }, "dependencies": { "@vscode/vsce": "^2.19.0", "graceful-fs": "^4.2.11", "minimatch": "3.0.5", "nanoid": "3.3.1", "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.76.0" }, "devDependencies": { "@types/mocha": "9.0.0", "@types/node": "16.11.7", "@types/rimraf": "3.0.2", "@types/vscode": "1.74.0", "mocha": "^9.2.2", "rimraf": "3.0.2", "tslint": "5.20.1", "typescript": "4.4.4" } }