|
7 | 7 | * BClient is a bot client |
8 | 8 | * Client is a console client |
9 | 9 |
|
10 | | -### Server build |
| 10 | +### Prepare project environment |
| 11 | +* First, prepare the SQL Server DB |
| 12 | +* To start the server, you need to write SQL Server information in /Server/Server/conf/SqlConnection.properties. |
| 13 | +* There is table information in /Chat/chatTable.sql. Create it in SQL Server DB in advance |
| 14 | + |
| 15 | +### How to use Jenkins to build this project |
| 16 | +* You can make Jenkins pipeline or build job by referring to the contents written in Jenkinsfile. |
| 17 | +* You need to download git and msbuild Jenkins plugins on Windows operating system. |
| 18 | +* msbuild.exe links to C:\Program Files (x86)\Microsoft Visual Studio2019円\Community\MSBuild\Current\Bin\msbuild.exe |
| 19 | + |
| 20 | +### Server build on Visual Studio 2019 |
11 | 21 | * Open the Server project by clicking Server.sln |
12 | | -* Configuration format: application (.exe) |
13 | | -* Windows SDK Version: 10.0.XX |
14 | | -* Platform Toolset: Align with Visual Studio 2019 (v142) |
15 | | -* Server project build |
16 | | - |
17 | | -### BClient, Client build |
18 | | -* BClient.sln and Client.sln respectively |
19 | | -* Configuration format: application (.exe) |
20 | | -* Windows SDK Version: 10.0.XX |
21 | | -* Platform Toolset: Align with Visual Studio 2019 (v142) |
22 | | -* Build the project |
| 22 | +* In Visual Studio 2019 project configuration properties |
| 23 | + |
| 24 | +``` |
| 25 | +Configuration format: application (.exe) |
| 26 | + |
| 27 | +Windows SDK Version: 10.0.XX |
| 28 | + |
| 29 | +Platform Toolset: Align with Visual Studio 2019 (v142) |
| 30 | + |
| 31 | +Configuration: Release |
| 32 | + |
| 33 | +Platform: x64 |
| 34 | + |
| 35 | +Warning level: level 3 (/W3) |
23 | 36 | |
| 37 | +SDL Check: No (/sdl) |
| 38 | +``` |
| 39 | + |
| 40 | +### BClient, Client build on Visual Studio 2019 |
| 41 | +* Open BClient.sln and Client.sln respectively |
24 | 42 | * In Visual Studio 2019 project configuration properties |
25 | | -* Configuration: Release |
26 | | -* Platform: x64 |
27 | | -* Warning level: level 3 (/W3) |
28 | | -* SDL Check: Yes (/sdl) |
| 43 | + |
| 44 | +``` |
| 45 | +Configuration format: application (.exe) |
| 46 | + |
| 47 | +Windows SDK Version: 10.0.XX |
| 48 | + |
| 49 | +Platform Toolset: Align with Visual Studio 2019 (v142) |
| 50 | + |
| 51 | +Configuration: Release |
| 52 | + |
| 53 | +Platform: x64 |
| 54 | + |
| 55 | +Warning level: level 3 (/W3) |
| 56 | + |
| 57 | +SDL Check: No (/sdl) |
| 58 | +``` |
0 commit comments