Skip to content
This repository has been archived by the owner on Oct 26, 2023. It is now read-only.

Commit

Permalink
extension list updated (#4)
Browse files Browse the repository at this point in the history
* extension list updated

* csharp extension name fixed
  • Loading branch information
polatengin authored Nov 9, 2020
1 parent 875d89a commit 063ef69
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 26 deletions.
50 changes: 25 additions & 25 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
{
"name": "Azure Functions & C# (.NET Core 3.1)",
"dockerFile": "Dockerfile",
"forwardPorts": [ 7071 ],

// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},

// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-azuretools.vscode-azurefunctions",
"ms-dotnettools.csharp",
"mauve.terraform",
"ms-vscode.azurecli",
"ms-azuretools.vscode-docker"
],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "dotnet restore ./src",

// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "vscode"

{
"name": "Azure Functions & C# (.NET Core 3.1)",
"dockerFile": "Dockerfile",
"forwardPorts": [ 7071 ],

// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},

// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"ms-azuretools.vscode-azurefunctions",
"ms-dotnettools.csharp",
"hashicorp.terraform",
"ms-vscode.azurecli",
"ms-azuretools.vscode-docker"
],

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "dotnet restore ./src",

// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "vscode"

}
4 changes: 3 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"recommendations": [
"ms-azuretools.vscode-azurefunctions",
"ms-dotnettools.csharp"
"ms-azuretools.vscode-docker",
"ms-dotnettools.csharp",
"hashicorp.terraform"
]
}

0 comments on commit 063ef69

Please sign in to comment.