mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-08-18 22:55:08 +00:00
27 lines
654 B
JSON
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"
|
|
}
|