mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Sample extension packs
This commit is contained in:
13
extension-deps-sample/test-extension-pack-1/.vscode/launch.json
vendored
Normal file
13
extension-deps-sample/test-extension-pack-1/.vscode/launch.json
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
// A launch configuration that launches the extension inside a new window
|
||||
{
|
||||
"version": "0.1.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch Extension",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -2,7 +2,7 @@
|
||||
"name": "test-extension-pack-1",
|
||||
"displayName": "test-extension-pack-1",
|
||||
"description": "Test extension pack",
|
||||
"version": "0.0.1",
|
||||
"version": "1.1.0",
|
||||
"publisher": "sandy081",
|
||||
"engines": {
|
||||
"vscode": "^1.0.0"
|
||||
@ -25,6 +25,11 @@
|
||||
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
||||
},
|
||||
"extensionDependencies": [
|
||||
"sandy081.todotasks"
|
||||
"lukehoban.Go",
|
||||
"msjsdiag.debugger-for-chrome",
|
||||
"vsmobile.vscode-react-native",
|
||||
"be5invis.vscode-icontheme-nomo-dark",
|
||||
"eg2.tslint",
|
||||
"sandy081.test-extension-pack-3"
|
||||
]
|
||||
}
|
||||
13
extension-deps-sample/test-extension-pack-2/.vscode/launch.json
vendored
Normal file
13
extension-deps-sample/test-extension-pack-2/.vscode/launch.json
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
// A launch configuration that launches the extension inside a new window
|
||||
{
|
||||
"version": "0.1.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch Extension",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
|
||||
}
|
||||
]
|
||||
}
|
||||
1
extension-deps-sample/test-extension-pack-2/README.md
Normal file
1
extension-deps-sample/test-extension-pack-2/README.md
Normal file
@ -0,0 +1 @@
|
||||
# Testing Install Extension Pack 2
|
||||
32
extension-deps-sample/test-extension-pack-2/package.json
Normal file
32
extension-deps-sample/test-extension-pack-2/package.json
Normal file
@ -0,0 +1,32 @@
|
||||
{
|
||||
"name": "test-extension-pack-2",
|
||||
"displayName": "test-extension-pack-2",
|
||||
"description": "Test extension pack 2",
|
||||
"version": "0.1.0",
|
||||
"publisher": "sandy081",
|
||||
"engines": {
|
||||
"vscode": "^1.0.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"galleryBanner": {
|
||||
"color": "#f0efe7",
|
||||
"theme": "light"
|
||||
},
|
||||
"icon": "",
|
||||
"homepage": "https://github.com/Microsoft/vscode-extension-samples/blob/master/README.md",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Microsoft/vscode-extension-samples/issues"
|
||||
},
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
||||
},
|
||||
"extensionDependencies": [
|
||||
"sandy081.test-extension-pack-1",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"sandy081.todotasks"
|
||||
]
|
||||
}
|
||||
13
extension-deps-sample/test-extension-pack-3/.vscode/launch.json
vendored
Normal file
13
extension-deps-sample/test-extension-pack-3/.vscode/launch.json
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
// A launch configuration that launches the extension inside a new window
|
||||
{
|
||||
"version": "0.1.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Launch Extension",
|
||||
"type": "extensionHost",
|
||||
"request": "launch",
|
||||
"runtimeExecutable": "${execPath}",
|
||||
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ]
|
||||
}
|
||||
]
|
||||
}
|
||||
1
extension-deps-sample/test-extension-pack-3/README.md
Normal file
1
extension-deps-sample/test-extension-pack-3/README.md
Normal file
@ -0,0 +1 @@
|
||||
# Testing Install Extension Pack 2
|
||||
33
extension-deps-sample/test-extension-pack-3/package.json
Normal file
33
extension-deps-sample/test-extension-pack-3/package.json
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "test-extension-pack-3",
|
||||
"displayName": "test-extension-pack-3",
|
||||
"description": "Test extension pack 3",
|
||||
"version": "0.1.0",
|
||||
"publisher": "sandy081",
|
||||
"engines": {
|
||||
"vscode": "^1.0.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"galleryBanner": {
|
||||
"color": "#f0efe7",
|
||||
"theme": "light"
|
||||
},
|
||||
"icon": "",
|
||||
"homepage": "https://github.com/Microsoft/vscode-extension-samples/blob/master/README.md",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Microsoft/vscode-extension-samples/issues"
|
||||
},
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
||||
},
|
||||
"extensionDependencies": [
|
||||
"sandy081.test-extension-pack-2",
|
||||
"dbaeumer.vscode-eslint",
|
||||
"sandy081.todotasks",
|
||||
"be5invis.vscode-icontheme-nomo-dark"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user