-
Notifications
You must be signed in to change notification settings - Fork 12
/
.devcontainer.json
32 lines (32 loc) · 968 Bytes
/
.devcontainer.json
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
{
"name": "F# Dotnet",
"image": "mcr.microsoft.com/devcontainers/dotnet:9.0",
"onCreateCommand": "dotnet build",
"customizations": {
"github.com/rradczewski/kata-bootstraps": {
"failingTestVerification": "dotnet test | tee /dev/stderr | grep -q 'Failed! - Failed: 1, Passed: 1, Skipped: 0, Total: 2'",
"testCommand": "dotnet test",
"languageLogo": "./fsharp-original.svg",
"resources": [
{
"name": "F# Reference",
"url": "https://learn.microsoft.com/en-us/dotnet/fsharp/language-reference/"
},
{
"name": "Dotnet Reference",
"url": "https://learn.microsoft.com/en-us/dotnet/api/"
},
{
"name": "Fluent Assertions",
"url": "https://fluentassertions.com/introduction"
}
]
},
"vscode": {
"extensions": [
"Ionide.Ionide-fsharp",
"MS-vsliveshare.vsliveshare"
]
}
}
}