-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxperience-status-code-pages.code-workspace
75 lines (72 loc) · 1.76 KB
/
xperience-status-code-pages.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"folders": [{ "name": "{ Xperience Status Code Pages }", "path": "." }],
"settings": {
"cSpell.words": [
"CTE",
"Hsts",
"Kentico",
"Xperience",
"ctes"
],
"cSpell.ignorePaths": [
"**/package-lock.json",
"**/node_modules/**",
"**/vscode-extension/**",
"**/.git/objects/**",
".vscode",
".vscode-insiders",
"*.code-workspace",
"azure-pipelines.yml"
],
"csharp.referencesCodeLens.enabled": false,
"editor.codeLens": false,
"editor.tabSize": 4,
"javascript.validate.enable": false,
"omnisharp.autoStart": true,
"omnisharp.defaultLaunchSolution": "xperience-status-code-pages.sln",
"omnisharp.enableEditorConfigSupport": true,
"omnisharp.enableRoslynAnalyzers": true,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.csproj.user": true,
"**/.vs/": true,
"**/bin/": true,
"**/node_modules/": true,
"**/obj/": true,
"**/TestDatabases/": true,
"CMS/": true,
"Lib/": true,
"packages/": true
},
"razor.format.enable": true,
"razor.trace": "Messages"
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": ["build", "/property:GenerateFullPaths=true"],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
}
]
},
"extensions": {
"recommendations": [
"editorconfig.editorconfig",
"fernandoescolar.vscode-solution-explorer",
"ms-dotnettools.csharp",
"streetsidesoftware.code-spell-checker"
]
}
}