Skip to content

Commit b445cde

Browse files
committed
Include azure-account extension
1 parent abea60d commit b445cde

10 files changed

Lines changed: 709 additions & 0 deletions

File tree

build/npm/postinstall.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ npmInstall('extensions'); // node modules shared by all extensions
2424
const extensions = [
2525
'vscode-api-tests',
2626
'vscode-colorize-tests',
27+
'azure-account',
2728
'json',
2829
'configuration-editing',
2930
'extension-editing',
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
test/**
2+
src/**
3+
tsconfig.json
4+
npm-shrinkwrap.json
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"name": "azure-account",
3+
"version": "0.1.0",
4+
"publisher": "vscode",
5+
"engines": {
6+
"vscode": "*"
7+
},
8+
"enableProposedApi": true,
9+
"activationEvents": [
10+
"*"
11+
],
12+
"main": "./out/extension",
13+
"contributes": {
14+
"commands": [
15+
{
16+
"command": "azure-account.login",
17+
"title": "%azure-account.commands.login%",
18+
"category": "%azure-account.commands.azure%"
19+
},
20+
{
21+
"command": "azure-account.logout",
22+
"title": "%azure-account.commands.logout%",
23+
"category": "%azure-account.commands.azure%"
24+
},
25+
{
26+
"command": "azure-account.addFilter",
27+
"title": "%azure-account.commands.addResourceFilter%",
28+
"category": "%azure-account.commands.azure%"
29+
},
30+
{
31+
"command": "azure-account.removeFilter",
32+
"title": "%azure-account.commands.removeResourceFilter%",
33+
"category": "%azure-account.commands.azure%"
34+
},
35+
{
36+
"command": "azure-account.createAccount",
37+
"title": "%azure-account.commands.createAccount%",
38+
"category": "%azure-account.commands.azure%"
39+
}
40+
],
41+
"configuration": {
42+
"type": "object",
43+
"title": "Azure configuration",
44+
"properties": {
45+
"azure.resourceFilter": {
46+
"type": "array",
47+
"default": null,
48+
"description": "The resource filter, each element is either a subscription id or a subscription id and a resource group name separated by a slash."
49+
}
50+
}
51+
}
52+
},
53+
"scripts": {
54+
"compile": "gulp compile-extension:azure-account",
55+
"watch": "gulp watch-extension:azure-account"
56+
},
57+
"devDependencies": {
58+
"@types/copy-paste": "^1.1.30",
59+
"@types/node": "^6.0.40",
60+
"@types/opn": "^3.0.28"
61+
},
62+
"dependencies": {
63+
"adal-node": "^0.1.22",
64+
"azure-arm-resource": "^2.0.0-preview",
65+
"copy-paste": "^1.3.0",
66+
"ms-rest-azure": "^2.2.3",
67+
"vscode-nls": "^2.0.2",
68+
"opn": "^5.1.0"
69+
}
70+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"azure-account.commands.azure": "Azure",
3+
"azure-account.commands.login": "Login",
4+
"azure-account.commands.logout": "Logout",
5+
"azure-account.commands.addResourceFilter": "Add Resource Filter",
6+
"azure-account.commands.removeResourceFilter": "Remove Resource Filter",
7+
"azure-account.commands.createAccount": "Create an Account"
8+
}

0 commit comments

Comments
 (0)