microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1ed9636ef8bc1a6a74e3de106baeaabde09cee24

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

49lines · 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": "latest"
16 },
17 "ghcr.io/devcontainers/features/dotnet:2": {
18 "version": "10.0"
19 },
20 "ghcr.io/devcontainers/features/docker-in-docker:2": {
21 "moby": true,
22 "azureDnsAutoDetection": true,
23 "installDockerBuildx": true,
24 "installDockerComposeSwitch": true,
25 "version": "latest",
26 "dockerDashComposeVersion": "v2"
27 }
28 }
29
30 // Features to add to the dev container. More info: https://containers.dev/features.
31 // "features": {},
32
33 // Use 'forwardPorts' to make a list of ports inside the container available locally.
34 // "forwardPorts": [5000, 5001],
35 // "portsAttributes": {
36 // "5001": {
37 // "protocol": "https"
38 // }
39 // }
40
41 // Use 'postCreateCommand' to run commands after the container is created.
42 // "postCreateCommand": "dotnet restore",
43
44 // Configure tool-specific properties.
45 // "customizations": {},
46
47 // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
48 // "remoteUser": "root"
49}
50