You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: containers/dotnetcore-2.1/README.md
+19-4
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,26 @@
12
12
13
13
## Using this definition with an existing folder
14
14
15
-
Note that only the integrated terminal is supported by the Remote - Containers extension. You may need to modify `launch.json` configurations to include the following value if an external console is used.
15
+
A few notes on this definition:
16
16
17
-
```json
18
-
"console": "integratedTerminal"
19
-
```
17
+
1. Only the integrated terminal is supported by the Remote - Containers extension. You may need to modify `launch.json` configurations to include the following value if an external console is used.
18
+
19
+
```json
20
+
"console": "integratedTerminal"
21
+
```
22
+
23
+
2. Given how frequently ASP.NET applications use Node.js for front end code, this container also includes Node.js. You can change the version of Node.js installed or disable its installation by updating these lines in `.devcontainer/Dockerfile`.
24
+
25
+
```Dockerfile
26
+
ARG INSTALL_NODE="true"
27
+
ARG NODE_MAJOR_VERSION="10"
28
+
```
29
+
30
+
3. If you would like to install the Azure CLI update this line in `.devcontainer/Dockerfile`:
31
+
32
+
```Dockerfile
33
+
ARG INSTALL_AZURE_CLI="true"
34
+
```
20
35
21
36
Beyond that, just follow these steps to use the definition:
Copy file name to clipboardExpand all lines: containers/dotnetcore-2.2/README.md
+19-4
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,26 @@
12
12
13
13
## Using this definition with an existing folder
14
14
15
-
Note that only the integrated terminal is supported by the Remote - Containers extension. You may need to modify `launch.json` configurations to include the following value if an external console is used.
15
+
A few notes on this definition:
16
16
17
-
```json
18
-
"console": "integratedTerminal"
19
-
```
17
+
1. Only the integrated terminal is supported by the Remote - Containers extension. You may need to modify `launch.json` configurations to include the following value if an external console is used.
18
+
19
+
```json
20
+
"console": "integratedTerminal"
21
+
```
22
+
23
+
2. Given how frequently ASP.NET applications use Node.js for front end code, this container also includes Node.js. You can change the version of Node.js installed or disable its installation by updating these lines in `.devcontainer/Dockerfile`.
24
+
25
+
```Dockerfile
26
+
ARG INSTALL_NODE="true"
27
+
ARG NODE_MAJOR_VERSION="10"
28
+
```
29
+
30
+
3. If you would like to install the Azure CLI update this line in `.devcontainer/Dockerfile`:
31
+
32
+
```Dockerfile
33
+
ARG INSTALL_AZURE_CLI="true"
34
+
```
20
35
21
36
Beyond that, just follow these steps to use the definition:
Copy file name to clipboardExpand all lines: containers/dotnetcore-latest/README.md
+19-4
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,26 @@
12
12
13
13
## Using this definition with an existing folder
14
14
15
-
Note that only the integrated terminal is supported by the Remote - Containers extension. You may need to modify `launch.json` configurations to include the following value if an external console is used.
15
+
A few notes on this definition:
16
16
17
-
```json
18
-
"console": "integratedTerminal"
19
-
```
17
+
1. Only the integrated terminal is supported by the Remote - Containers extension. You may need to modify `launch.json` configurations to include the following value if an external console is used.
18
+
19
+
```json
20
+
"console": "integratedTerminal"
21
+
```
22
+
23
+
2. Given how frequently ASP.NET applications use Node.js for front end code, this container also includes Node.js. You can change the version of Node.js installed or disable its installation by updating these lines in `.devcontainer/Dockerfile`.
24
+
25
+
```Dockerfile
26
+
ARG INSTALL_NODE="true"
27
+
ARG NODE_MAJOR_VERSION="10"
28
+
```
29
+
30
+
3. If you would like to install the Azure CLI update this line in `.devcontainer/Dockerfile`:
31
+
32
+
```Dockerfile
33
+
ARG INSTALL_AZURE_CLI="true"
34
+
```
20
35
21
36
Beyond that, just follow these steps to use the definition:
0 commit comments