-
Notifications
You must be signed in to change notification settings - Fork 8
/
devcontainer-feature.json
69 lines (69 loc) · 2.07 KB
/
devcontainer-feature.json
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
{
"name": "Azure Artifacts Credential Helper",
"id": "artifacts-helper",
"version": "2.0.2",
"description": "Configures Codespace to authenticate with Azure Artifact feeds",
"options": {
"nugetURIPrefixes": {
"type": "string",
"default": "https://pkgs.dev.azure.com/",
"description": "Nuget URI Prefixes"
},
"dotnet6": {
"type": "boolean",
"default": false,
"description": "Use .NET 6 Runtime"
},
"dotnetAlias": {
"type": "boolean",
"default": true,
"description": "Create alias for dotnet"
},
"nugetAlias": {
"type": "boolean",
"default": true,
"description": "Create alias for nuget"
},
"npmAlias": {
"type": "boolean",
"default": true,
"description": "Create alias for npm"
},
"yarnAlias": {
"type": "boolean",
"default": true,
"description": "Create alias for yarn"
},
"npxAlias": {
"type": "boolean",
"default": true,
"description": "Create alias for npx"
},
"rushAlias": {
"type": "boolean",
"default": true,
"description": "Create alias for rush"
},
"targetFiles": {
"type": "string",
"default": "DEFAULT",
"description": "Comma separated list of files to write to. Default is '/etc/bash.bashrc,/etc/zsh/zshrc' for root and '~/.bashrc,~/.zshrc' for non-root"
},
"python": {
"type": "boolean",
"default": false,
"description": "Install Python keyring helper for pip"
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils",
"ghcr.io/devcontainers/features/python"
],
"customizations": {
"vscode": {
"extensions": [
"ms-codespaces-tools.ado-codespaces-auth"
]
}
}
}