Skip to content

Instantly share code, notes, and snippets.

@xpepper
Created April 2, 2025 15:39
Show Gist options
  • Save xpepper/3080a485bc313fa703a19c45311c17e8 to your computer and use it in GitHub Desktop.
Save xpepper/3080a485bc313fa703a19c45311c17e8 to your computer and use it in GitHub Desktop.
A devcontainer setup for practicing F# with code kata
{
"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