File size: 702 Bytes
8c763fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
  "name": ".NET Core 6.0, including pwsh (Ubuntu 18.04)",
  "dockerFile": "Dockerfile",

  "workspaceMount": "source=${localWorkspaceFolder},target=/PowerShell,type=bind",
  "workspaceFolder": "/PowerShell",

  // Uncomment the next line to run commands after the container is created.
  "postCreateCommand": "cd src/powershell-unix && dotnet restore",

  "customizations": {
    "vscode": {
      "extensions": [
        "ms-azure-devops.azure-pipelines",
        "ms-dotnettools.csharp",
        "ms-vscode.powershell",
        "DavidAnson.vscode-markdownlint",
        "vitaliymaz.vscode-svg-previewer"
      ]
    }
  }
}