microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
.devcontainer/devcontainer.json
38lines · modecode
| 1 | // For format details, see https://aka.ms/devcontainer.json. For config options, see the |
| 2 | // README at: https://github.com/devcontainers/templates/tree/main/src/dotnet |
| 3 | { |
| 4 | "name": "C# (.NET)", |
| 5 | // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile |
| 6 | "image": "mcr.microsoft.com/devcontainers/dotnet:1-8.0", |
| 7 | "features": { |
| 8 | "ghcr.io/devcontainers/features/azure-cli:1": { |
| 9 | "installBicep": true, |
| 10 | "installUsingPython": true, |
| 11 | "version": "latest", |
| 12 | "bicepVersion": "latest" |
| 13 | }, |
| 14 | "ghcr.io/dotnet/aspire-devcontainer-feature/dotnetaspire:1": { |
| 15 | "version": "9.0" |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | // Features to add to the dev container. More info: https://containers.dev/features. |
| 20 | // "features": {}, |
| 21 | |
| 22 | // Use 'forwardPorts' to make a list of ports inside the container available locally. |
| 23 | // "forwardPorts": [5000, 5001], |
| 24 | // "portsAttributes": { |
| 25 | // "5001": { |
| 26 | // "protocol": "https" |
| 27 | // } |
| 28 | // } |
| 29 | |
| 30 | // Use 'postCreateCommand' to run commands after the container is created. |
| 31 | // "postCreateCommand": "dotnet restore", |
| 32 | |
| 33 | // Configure tool-specific properties. |
| 34 | // "customizations": {}, |
| 35 | |
| 36 | // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. |
| 37 | // "remoteUser": "root" |
| 38 | } |
| 39 | |