-
Notifications
You must be signed in to change notification settings - Fork 469
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dotnet:main' into validate-arguments-of-public-methods#…
…part-2
- Loading branch information
Showing
391 changed files
with
4,815 additions
and
7,138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/dotnet | ||
{ | ||
"name": "C# (.NET)", | ||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
"image": "mcr.microsoft.com/devcontainers/dotnet:1-9.0-bookworm", | ||
"features": { | ||
"ghcr.io/devcontainers/features/azure-cli:1": {}, | ||
"ghcr.io/azure/azure-dev/azd:0": {}, | ||
"ghcr.io/devcontainers/features/docker-in-docker:2": {}, | ||
"ghcr.io/devcontainers/features/powershell:1": {}, | ||
"ghcr.io/devcontainers/features/dotnet": { | ||
"additionalVersions": [ | ||
"8.0.403" | ||
] | ||
}, | ||
"ghcr.io/dapr/cli/dapr-cli": { | ||
"version": "1.12.0" | ||
} | ||
}, | ||
"hostRequirements": { | ||
"cpus": 8, | ||
"memory": "32gb", | ||
"storage": "64gb" | ||
}, | ||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
// "features": {}, | ||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
"forwardPorts": [ | ||
15887, | ||
5180, | ||
7024, | ||
15551, | ||
33803, | ||
5350, | ||
41567, | ||
15306 | ||
], | ||
"portsAttributes": { | ||
"5180": { | ||
"label": "WaitFor Playground: ApiService", | ||
"protocol": "http" | ||
}, | ||
"5350": { | ||
"label": "Redis Playground: Api Service" | ||
}, | ||
"7024": { | ||
"label": "WaitFor Playground: Frontend", | ||
"protocol": "https" | ||
}, | ||
"15306": { | ||
"label": "Redis Playground: App Host" | ||
}, | ||
"15551": { | ||
"label": "WaitFor Playground: PGAdmin", | ||
"protocol": "http" | ||
}, | ||
"15887": { | ||
"label": "WaitFor Playground: AppHost", | ||
"protocol": "https" | ||
}, | ||
"33803": { | ||
"label": "Redis Playground: Redis Commander" | ||
}, | ||
"41567": { | ||
"label": "Redis Playground: Redis Insight" | ||
} | ||
}, | ||
"otherPortsAttributes": { | ||
"onAutoForward": "ignore" | ||
}, | ||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-dotnettools.vscodeintellicode-csharp", | ||
"ms-azuretools.vscode-bicep", | ||
"EditorConfig.EditorConfig", | ||
"ms-azuretools.azure-dev", | ||
"GitHub.copilot", | ||
"GitHub.copilot-chat" | ||
], | ||
"settings": { | ||
"remote.autoForwardPorts": false, | ||
"dotnet.defaultSolution": "Aspire.sln" | ||
} | ||
} | ||
}, | ||
"onCreateCommand": "dotnet restore", | ||
"postStartCommand": "dotnet dev-certs https --trust" | ||
// Configure tool-specific properties. | ||
// "customizations": {}, | ||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"request": "launch", | ||
"name": "C#: WaitFor (Debug)", | ||
"type": "dotnet", | ||
"projectPath": "${workspaceFolder}/playground/waitfor/WaitForSandbox.AppHost/WaitForSandbox.AppHost.csproj" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.