-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathHowToBuild.txt
48 lines (38 loc) · 1.57 KB
/
HowToBuild.txt
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
Build with Visual Studio
------------------------
1. Download and install Microsoft Visual Studio 2022. Visual Studio Community is OK.
2. Download the source code of Rapid SCADA from the repository:
https://github.com/RapidScada/scada-v6
3. Build the solutions using Visual Studio in the sequence below.
Switch to the Release configuration so that the references are correct.
ScadaCommon,
ScadaAgent,
ScadaComm,
ScadaServer,
ScadaWeb,
ScadaAdmin,
ScadaReport,
OpenDrivers,
OpenDrivers2,
OpenModules,
OpenPlugins,
OpenExtensions.
Build from Command Line
-----------------------
1. Download and install .NET SDK 8.0 for your operating system.
2. Download the source code of Rapid SCADA from the repository:
https://github.com/RapidScada/scada-v6
3. Change directory to the source code root.
4. Execute the following commands:
dotnet build ScadaCommon/ScadaCommon.sln -c Release
dotnet build ScadaAgent/ScadaAgent/ScadaAgent.sln -c Release
dotnet build ScadaComm/ScadaComm/ScadaComm.sln -c Release
dotnet build ScadaServer/ScadaServer/ScadaServer.sln -c Release
dotnet build ScadaWeb/ScadaWeb/ScadaWeb.sln -c Release
dotnet build ScadaAdmin/ScadaAdmin/ScadaAdmin.sln -c Release
dotnet build ScadaReport/ScadaReport.sln -c Release
dotnet build ScadaComm/OpenDrivers/OpenDrivers.sln -c Release
dotnet build ScadaComm/OpenDrivers2/OpenDrivers2.sln -c Release
dotnet build ScadaServer/OpenModules/OpenModules.sln -c Release
dotnet build ScadaWeb/OpenPlugins/OpenPlugins.sln -c Release
dotnet build ScadaAdmin/OpenExtensions/OpenExtensions.sln -c Release