setup-dotnet/.devcontainer/devcontainer.json
2022-10-18 05:21:36 +00:00

27 lines
654 B
JSON

// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/dotnet
{
"name": "C# (.NET)",
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "6.0",
"NODE_VERSION": "16"
}
},
"customizations": {
"vscode": {
"extensions": [
"esbenp.prettier-vscode",
"ms-dotnettools.csharp",
"ms-vscode.powershell"
]
}
},
"features": {
"powershell": "latest"
},
"remoteUser": "vscode",
"postCreateCommand": "dotnet restore ./__tests__/sample-csproj"
}