-
Notifications
You must be signed in to change notification settings - Fork 141
/
make-release.bat
47 lines (37 loc) · 2.31 KB
/
make-release.bat
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
mkdir Release\Packed
mkdir Release\Packed\Tools
copy x64\Release\*.dll Release\Packed\Tools\
copy x64\Release\*.exe Release\Packed\Tools\
copy RconClient\bin\Release\net8.0\*.config Release\Packed\Tools\
copy RconClient\bin\Release\net8.0\*.runtimeconfig.json Release\Packed\Tools\
copy RconClient\bin\Release\net8.0\*.dll Release\Packed\Tools\
copy RconClient\bin\Release\net8.0\*.exe Release\Packed\Tools\
copy StoryCompiler\bin\Release\net8.0\*.config Release\Packed\Tools\
copy StoryCompiler\bin\Release\net8.0\*.runtimeconfig.json Release\Packed\Tools\
copy StoryCompiler\bin\Release\net8.0\*.dll Release\Packed\Tools\
copy StoryCompiler\bin\Release\net8.0\*.exe Release\Packed\Tools\
copy VTexTool\bin\Release\net8.0\*.config Release\Packed\Tools\
copy VTexTool\bin\Release\net8.0\*.runtimeconfig.json Release\Packed\Tools\
copy VTexTool\bin\Release\net8.0\*.dll Release\Packed\Tools\
copy VTexTool\bin\Release\net8.0\*.exe Release\Packed\Tools\
copy StoryDecompiler\bin\Release\net8.0\*.config Release\Packed\Tools\
copy StoryDecompiler\bin\Release\net8.0\*.runtimeconfig.json Release\Packed\Tools\
copy StoryDecompiler\bin\Release\net8.0\*.dll Release\Packed\Tools\
copy StoryDecompiler\bin\Release\net8.0\*.exe Release\Packed\Tools\
copy DebuggerFrontend\bin\Release\net8.0\*.config Release\Packed\Tools\
copy DebuggerFrontend\bin\Release\net8.0\*.runtimeconfig.json Release\Packed\Tools\
copy DebuggerFrontend\bin\Release\net8.0\*.dll Release\Packed\Tools\
copy DebuggerFrontend\bin\Release\net8.0\*.exe Release\Packed\Tools\
copy StatParser\bin\Release\net8.0\*.config Release\Packed\Tools\
copy StatParser\bin\Release\net8.0\*.runtimeconfig.json Release\Packed\Tools\
copy StatParser\bin\Release\net8.0\*.dll Release\Packed\Tools\
copy StatParser\bin\Release\net8.0\*.exe Release\Packed\Tools\
copy Divine\bin\Release\net8.0\*.config Release\Packed\Tools\
copy Divine\bin\Release\net8.0\*.runtimeconfig.json Release\Packed\Tools\
copy Divine\bin\Release\net8.0\*.dll Release\Packed\Tools\
copy Divine\bin\Release\net8.0\*.exe Release\Packed\Tools\
copy ConverterApp\bin\Release\net8.0-windows\*.config Release\Packed\
copy ConverterApp\bin\Release\net8.0-windows\*.runtimeconfig.json Release\Packed\
copy ConverterApp\bin\Release\net8.0-windows\*.dll Release\Packed\
copy ConverterApp\bin\Release\net8.0-windows\*.exe Release\Packed\
pause