-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update devcontainer with modern usages
- Loading branch information
1 parent
610d0ab
commit edca0ec
Showing
1 changed file
with
24 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |