microsoft/teams.net

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat/msal-agentic

Branches

Tags

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

Clone

HTTPS

Download ZIP

.devcontainer/devcontainer.json

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