forked from dotnet/fsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
34 lines (29 loc) · 1.21 KB
/
Copy pathdevcontainer.json
File metadata and controls
34 lines (29 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or this file's README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.108.0/containers/dotnetcore-3.1-fsharp
{
"name": "F# (.NET Core 3.1)",
"dockerFile": "Dockerfile",
// Set *default* container specific settings.json values on container create.
//
// .NET Core is now the default for F# in .NET Core 3.0+
// However, .NET Core scripting is not the default yet. Set that to true.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"FSharp.useSdkScripts":true,
"editor.trimAutoWhitespace": false,
"files.trimTrailingWhitespace": false,
"FSharp.suggestGitignore": false,
"FSharp.workspacePath": "FSharp.sln"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"Ionide.Ionide-fsharp",
"ms-dotnettools.csharp"
],
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "./build.sh",
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "vscode"
}