Skip to content

Commit

Permalink
update devcontainer with modern usages
Browse files Browse the repository at this point in the history
  • Loading branch information
baronfel authored and Krzysztof-Cieslak committed Jun 3, 2024
1 parent 610d0ab commit edca0ec
Showing 1 changed file with 24 additions and 14 deletions.
38 changes: 24 additions & 14 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
{
"name": "F# (.NET 7.0)",
"dockerFile": "Dockerfile",
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"FSharp.useSdkScripts":true,
"FSharp.workspacePath": "FsAutoComplete.sln"
},
"onCreateCommand": "dotnet tool restore && dotnet restore",
"extensions": [
"Ionide.Ionide-fsharp",
"Ionide.Ionide-Paket",
"ms-vscode.csharp"
]
}
"name": "F#",
"image": "mcr.microsoft.com/dotnet/sdk:8.0",
"features": {
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/dotnet:2": {
"version": "8.0",
"dotnetRuntimeVersions": "6.0, 7.0",
"aspNetCoreRuntimeVersions": "6.0, 7.0"
}
},
"customizations": {
"vscode": {
"settings": {
"FSharp.workspacePath": "FsAutoComplete.sln"
},
"extensions": [
"Ionide.Ionide-fsharp",
"Ionide.Ionide-Paket",
"ms-vscode.csharp"
]
}
},
"onCreateCommand": "dotnet tool restore && dotnet restore"
}

0 comments on commit edca0ec

Please sign in to comment.