Created
April 2, 2025 15:39
-
-
Save xpepper/3080a485bc313fa703a19c45311c17e8 to your computer and use it in GitHub Desktop.
A devcontainer setup for practicing F# with code kata
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
Show hidden characters
{ | |
"name": "F# (.NET)", | |
"image": "mcr.microsoft.com/devcontainers/dotnet:9.0-bookworm", | |
"customizations": { | |
"vscode": { | |
"extensions": [ | |
"Ionide.Ionide-fsharp", | |
"ms-dotnettools.csharp", | |
"ms-dotnettools.vscode-dotnet-runtime" | |
], | |
"settings": { | |
"editor.formatOnSave": true, | |
"FSharp.inlayHints.enabled": true | |
} | |
} | |
}, | |
"postCreateCommand": "dotnet restore" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment