-
Notifications
You must be signed in to change notification settings - Fork 55
/
Fika-Plugin.code-workspace
61 lines (61 loc) · 1.18 KB
/
Fika-Plugin.code-workspace
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"folders": [
{
"path": "."
}
],
"tasks": {
"version": "2.0.0",
"options": {
"env": {
"DOTNET_NOLOGO": "yes",
"DOTNET_CLI_TELEMETRY_OPTOUT": "yes"
}
},
"tasks": [
{
"label": "dotnet: restore",
"type": "shell",
"command": "dotnet restore --nologo",
},
{
"label": "dotnet: build debug",
"type": "shell",
"command": "dotnet build --nologo --no-restore --configuration Debug",
"dependsOrder": "sequence",
"dependsOn": "dotnet: restore",
"group": {
"kind": "build"
}
},
{
"label": "dotnet: build release",
"type": "shell",
"command": "dotnet build --nologo --no-restore --configuration Release",
"dependsOrder": "sequence",
"dependsOn": "dotnet: restore",
"group": {
"kind": "build"
}
},
{
"label": "dotnet: build gold-master",
"type": "shell",
"command": "dotnet build --nologo --no-restore --configuration GoldMaster",
"dependsOrder": "sequence",
"dependsOn": "dotnet: restore",
"group": {
"kind": "build"
}
}
]
},
"settings": {
"window.title": "Fika.Plugin"
},
"extensions": {
"recommendations": [
"ms-dotnettools.csharp"
]
}
}