forked from tModLoader/tModLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtModLoader.code-workspace
More file actions
65 lines (63 loc) · 1.78 KB
/
Copy pathtModLoader.code-workspace
File metadata and controls
65 lines (63 loc) · 1.78 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
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
{
"folders": [
{
"path": ".",
"name": "tModLoader"
},
],
"settings": {
// Automatically open the solution.
"dotnet.solution.autoOpen": "tModLoader.sln",
// Configure file lists & search navigation.
// Prevent gitignore from making VSC omit the src directory.
"explorer.excludeGitIgnore": false,
"search.useIgnoreFiles": false,
"files.exclude": {
// Include
"src/": false,
// Exclude
"**/bin/": true,
"**/obj/": true,
"**/packages/": true,
"**/.vs/": true,
"**/.idea/": true,
"**/*.suo": true,
"**/*.cache": true,
"**/*.force": true,
"**/*.obj": true,
"**/msbuild.binlog": true,
"artifacts/": true,
"setup/logs/": true,
"solutions/ReleaseExtras/": true,
"solutions/**/*.zip": true,
"solutions/**/*.tar.gz": true,
"test/Terraria.xml": true,
"test/tModLoader.xml": true,
"test/Test Local/": true,
"steam_build/": true,
},
"search.exclude": {
// Workspace-specific
"src/Terraria/": true,
"src/TerrariaNetCore/": true,
"src/decompiled*/": true,
// Include
"src/": false,
// Exclude
"**/*.exe": true,
"**/*.dll": true,
"**/*.pdb": true,
"**/*.so": true,
"**/*.dylib": true,
"**/*.png": true,
"**/*.ogg": true,
"**/*.mp3": true,
"**/*.wav": true,
"**/*.xnb": true,
"patches/": true,
},
// The default sticky scroll (indentation display) model puts too much strain on the LSP.
// Use the Folding model to avoid using the LSP for that entirely.
"editor.stickyScroll.defaultModel": "foldingProviderModel",
}
}