-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKUBC.DAYZ.CONSOLE.code-workspace
More file actions
131 lines (131 loc) · 3.29 KB
/
Copy pathKUBC.DAYZ.CONSOLE.code-workspace
File metadata and controls
131 lines (131 loc) · 3.29 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"settings": {
//Папочка где лежит конфиг сервера для запуска
"DayZ.Server.Config":"Sample\\serverDZ.cfg",
//Папочка где лежит экземпляр сервера DAYZ
"DayZ.Server.Path": "C:\\Program Files (x86)\\Steam\\steamapps\\common\\DayZServer",
"C_Cpp.configurationWarnings": "disabled",
"C_Cpp.default.browse.path": [
"P:\\scripts",
"./Server"
],
"C_Cpp.default.includePath": [
"P:\\scripts",
"./Server"
],
"C_Cpp.default.systemIncludePath": [
"P:\\scripts",
"./Server"
],
"C_Cpp.errorSquiggles": "disabled",
"C_Cpp.intelliSenseEngine": "Tag Parser",
"C_Cpp.workspaceSymbols": "All",
"git.autoRepositoryDetection": "subFolders",
"enscript.includePaths": [
"P:\\scripts",
],
},
"folders": [
{
"name": "SERVER",
"path": "./Server"
},
{
"name": "PROFILES",
"path": "./Sample/Profiles"
},
{
"name": "Build Logs",
"path": "P:\\Temp"
},
{
"name": "ROOT",
"path": "."
},
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"detail": "Очистить логи сервера",
"label": "Clear Server Logs",
"command": "del ${workspaceFolder:PROFILES}\\*.MDMP;del ${workspaceFolder:PROFILES}\\*.log;del ${workspaceFolder:PROFILES}\\*.RPT;del ${workspaceFolder:PROFILES}\\*.ADM",
"type": "shell",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
}
},
{
"detail": "Запустить тестовый сервер с очисткой логов",
"label": "Start Test Server",
"dependsOrder": "sequence",
"dependsOn": [
"Clear Server Logs",
"Start Debug Server"
],
"group": {
"kind": "test",
"isDefault": false
},
"problemMatcher": []
},
{
"detail": "Создать ссылочную папку на сервере",
"label": "Create Link",
"type": "shell",
"command": "cmd /c mklink /j '${config:DayZ.Server.Path}\\KUBC.DAYZ.CONSOLE' '${workspaceFolder:SERVER}'",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
}
},
{
"detail": "Создать ссылочную папку на диске P",
"label": "Create Dev Link",
"type": "shell",
"command": "cmd /c mklink /j 'P:\\KUBC.DAYZ.CONSOLE' '${workspaceFolder:SERVER}'",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
}
},
{
"detail": "Запустить сервер модом без сборки",
"label": "Start Debug Server",
"type": "shell",
"command": "${config:DayZ.Server.Path}\\DayZServer_x64.exe",
"args": [
"-config=${workspaceFolder:ROOT}\\${config:DayZ.Server.Config}",
"-profiles=${workspaceFolder:PROFILES}",
"-port=2302",
"-doLogs",
"-adminLog",
"-freezeCheck",
"-filePatching",
"-serverMod='KUBC.DAYZ.CONSOLE'"
],
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": false,
"clear": false
}
},
]
}
}