Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"ghcr.io/devcontainers/features/go:1": {},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers-extra/features/uv:1": {},
"ghcr.io/schlich/devcontainer-features/just:0": {}
"ghcr.io/schlich/devcontainer-features/just:0": {},
"ghcr.io/devcontainers/features/dotnet": {}
Copy link

Copilot AI Jan 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The dotnet feature specification is missing a version number. All other features in this configuration explicitly specify versions (e.g., ":1", ":0"). For consistency and to ensure predictable behavior, this should include a version specification. Consider using "ghcr.io/devcontainers/features/dotnet:1" to match the pattern used by other features from the same source.

Suggested change
"ghcr.io/devcontainers/features/dotnet": {}
"ghcr.io/devcontainers/features/dotnet:1": {}

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@aaronpowell Can you comment on this? Is the :1 here the version of https://github.com/devcontainers/features/pkgs/container/features%2Fdotnet or something else?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SteveSandersonMS I believe this should be

  "ghcr.io/devcontainers/features/dotnet:2.4.2": {}

per the link you shared

Comment thread
aaronpowell marked this conversation as resolved.
Outdated
}

// Features to add to the dev container. More info: https://containers.dev/features.
Expand Down
Loading