PowerShell/.devcontainer/devcontainer.json
Tyler James Leonhardt 6cfdbaa6d9
Fix dev container (#14906)
Co-authored-by: Travis Plunk <travis.plunk@microsoft.com>
2021-03-08 10:38:39 -08:00

17 lines
490 B
JSON

// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
"name": ".NET Core 6.0, including pwsh (Ubuntu 18.04)",
"dockerFile": "Dockerfile",
// Uncomment the next line to run commands after the container is created.
"postCreateCommand": "cd src/powershell-unix && dotnet restore",
"extensions": [
"ms-azure-devops.azure-pipelines",
"ms-dotnettools.csharp",
"ms-vscode.powershell",
"DavidAnson.vscode-markdownlint",
"vitaliymaz.vscode-svg-previewer"
]
}