Skip to content

Commit 7ba08ab

Browse files
authored
Merge branch 'main' into copilot/improve-unit-test-coverage-yet-again
2 parents f551612 + bbe096a commit 7ba08ab

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.devcontainer/dotnet/devcontainer.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
22
"name": "C# (.NET)",
3-
"image": "mcr.microsoft.com/devcontainers/dotnet:10.0",
3+
//"image": "mcr.microsoft.com/devcontainers/dotnet",
4+
// Workaround for https://github.com/devcontainers/images/issues/1752
5+
"build": {
6+
"dockerfile": "dotnet.Dockerfile"
7+
},
48
"features": {
5-
"ghcr.io/devcontainers/features/dotnet:2.4.0": {},
9+
"ghcr.io/devcontainers/features/dotnet:2.4.2": {},
610
"ghcr.io/devcontainers/features/powershell:1.5.1": {},
7-
"ghcr.io/devcontainers/features/azure-cli:1.2.8": {},
8-
"ghcr.io/devcontainers/features/docker-in-docker:2.12.4": {}
11+
"ghcr.io/devcontainers/features/azure-cli:1.2.9": {},
12+
"ghcr.io/devcontainers/features/docker-in-docker:2.14.0": {}
913
},
1014
"workspaceFolder": "/workspaces/agent-framework/dotnet/",
1115
"customizations": {
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM mcr.microsoft.com/devcontainers/dotnet
2+
3+
# Remove Yarn repository with expired GPG key to prevent apt-get update failures
4+
# Tracking issue: https://github.com/devcontainers/images/issues/1752
5+
RUN rm -f /etc/apt/sources.list.d/yarn.list

0 commit comments

Comments
 (0)