Skip to content

Commit fa74f27

Browse files
authored
.Net: Adding copilot cli to the codespaces definition (#3479)
* Adding copilot cli to the codespace definition * Update tools * Remove unecessary tools
1 parent 739edc7 commit fa74f27

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

.devcontainer/dotnet/devcontainer.json

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,29 @@
66
"dockerfile": "dotnet.Dockerfile"
77
},
88
"features": {
9-
"ghcr.io/devcontainers/features/dotnet:2.4.2": {},
10-
"ghcr.io/devcontainers/features/powershell:1.5.1": {},
119
"ghcr.io/devcontainers/features/azure-cli:1.2.9": {},
12-
"ghcr.io/devcontainers/features/docker-in-docker:2.14.0": {}
10+
"ghcr.io/devcontainers/features/github-cli:1": {
11+
"version": "2"
12+
},
13+
"ghcr.io/devcontainers/features/powershell:1": {
14+
"version": "latest"
15+
},
16+
"ghcr.io/azure/azure-dev/azd:0": {
17+
"version": "latest"
18+
},
19+
"ghcr.io/devcontainers/features/dotnet:2": {
20+
"version": "none",
21+
"dotnetRuntimeVersions": "10.0",
22+
"aspNetCoreRuntimeVersions": "10.0"
23+
},
24+
"ghcr.io/devcontainers/features/copilot-cli:1": {}
1325
},
1426
"workspaceFolder": "/workspaces/agent-framework/dotnet/",
1527
"customizations": {
1628
"vscode": {
1729
"extensions": [
30+
"GitHub.copilot",
31+
"GitHub.vscode-github-actions",
1832
"ms-dotnettools.csdevkit",
1933
"vscode-icons-team.vscode-icons",
2034
"ms-windows-ai-studio.windows-ai-studio"

.devcontainer/dotnet/dotnet.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/dotnet
1+
FROM mcr.microsoft.com/devcontainers/universal:latest
22

33
# Remove Yarn repository with expired GPG key to prevent apt-get update failures
44
# Tracking issue: https://github.com/devcontainers/images/issues/1752

0 commit comments

Comments
 (0)