File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ARG VARIANT=8.0-jammy
2+ FROM mcr.microsoft.com/devcontainers/dotnet:${VARIANT}
3+
4+ # Install Mono for .NET Framework support
5+ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
6+ && apt-get -y install --no-install-recommends mono-complete \
7+ && apt-get clean -y && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " C# (.NET 6.0 - Ubuntu 22.04)" ,
3+ "build" : {
4+ "dockerfile" : " ../Dockerfile" ,
5+ "context" : " .." ,
6+ "args" : {
7+ "VARIANT" : " 6.0-jammy"
8+ }
9+ },
10+ "features" : {
11+ "ghcr.io/devcontainers/features/common-utils:2" : {},
12+ "ghcr.io/devcontainers/features/git:1" : {}
13+ },
14+ "customizations" : {
15+ "vscode" : {
16+ "extensions" : [
17+ " ms-dotnettools.csharp" ,
18+ " ms-dotnettools.csdevkit"
19+ ]
20+ }
21+ }
22+ }
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " C# (.NET 8.0 - Ubuntu 20.04)" ,
3+ "build" : {
4+ "dockerfile" : " ../Dockerfile" ,
5+ "context" : " .." ,
6+ "args" : {
7+ "VARIANT" : " 8.0-focal"
8+ }
9+ },
10+ "features" : {
11+ "ghcr.io/devcontainers/features/common-utils:2" : {},
12+ "ghcr.io/devcontainers/features/git:1" : {}
13+ },
14+ "customizations" : {
15+ "vscode" : {
16+ "extensions" : [
17+ " ms-dotnettools.csharp" ,
18+ " ms-dotnettools.csdevkit"
19+ ]
20+ }
21+ }
22+ }
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " C# (.NET 8.0 - Ubuntu 22.04)" ,
3+ "build" : {
4+ "dockerfile" : " ../Dockerfile" ,
5+ "context" : " .." ,
6+ "args" : {
7+ "VARIANT" : " 8.0-jammy"
8+ }
9+ },
10+ "features" : {
11+ "ghcr.io/devcontainers/features/common-utils:2" : {},
12+ "ghcr.io/devcontainers/features/git:1" : {}
13+ },
14+ "customizations" : {
15+ "vscode" : {
16+ "extensions" : [
17+ " ms-dotnettools.csdevkit"
18+ ]
19+ }
20+ }
21+ }
You can’t perform that action at this time.
0 commit comments