File tree 9 files changed +22
-14
lines changed
src/libiec61850/dotnet/core/2.0/iec61850_client
9 files changed +22
-14
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ set SRCPATH=%JSPATH%\src
9
9
set BINPATH = %JSPATH% \bin
10
10
set BINWINPATH = %JSPATH% \demo-docker\bin_win
11
11
set NPM = %JSPATH% \platform-windows\nodejs-runtime\npm
12
+ rem _set NPM="%programfiles%\nodejs\npm"
12
13
13
14
cd %JSPATH%
14
15
mkdir bin
@@ -21,8 +22,11 @@ cd %SRCPATH%\dnp3\Dnp3Client\
21
22
dotnet publish --self-contained --runtime win-x64 -p:PublishReadyToRun=true -c Release -o %BINWINPATH% Dnp3Client.csproj
22
23
23
24
cd %SRCPATH% \libiec61850\build
24
- rem set VCTargetsPath=d:\ProgramFiles\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\
25
- rem set VCTargetsPath=c:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\
25
+ rem set VCTargetsPath=C:\ProgramFiles\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\
26
+ rem set VCTargetsPath=D:\ProgramFiles\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\
27
+ rem set VCToolsInstallDir=D:\ProgramFiles\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.39.33519\
28
+ rem dotnet clean -c Release libiec61850.sln
29
+
26
30
dotnet publish --no-self-contained --runtime win-x64 -c Release libiec61850.sln
27
31
copy %SRCPATH% \libiec61850\build\src\Release\iec61850.dll %BINPATH%
28
32
@@ -61,7 +65,7 @@ set GOBIN=c:\json-scada\bin
61
65
cd %SRCPATH% \calculations
62
66
go mod tidy
63
67
go build
64
- copy /Y calculations %BINPATH%
68
+ copy /Y calculations.exe %BINPATH%
65
69
66
70
rem cd %SRCPATH%\plc4x-client
67
71
rem go get "github.com/icza/bitio"
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ set SRCPATH=%JSPATH%\src
9
9
set BINPATH = %JSPATH% \bin
10
10
set BINWINPATH = %JSPATH% \demo-docker\bin_win
11
11
set NPM = %JSPATH% \platform-windows\nodejs-runtime\npm
12
+ rem _set NPM="%programfiles%\nodejs\npm"
12
13
13
14
cd %JSPATH%
14
15
mkdir bin
@@ -21,8 +22,11 @@ cd %SRCPATH%\dnp3\Dnp3Client\
21
22
dotnet publish --self-contained --runtime win-x64 -p:PublishReadyToRun=true -c Release -o %BINWINPATH% Dnp3Client.csproj
22
23
23
24
cd %SRCPATH% \libiec61850\build
24
- rem set VCTargetsPath=d:\ProgramFiles\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\
25
- rem set VCTargetsPath=c:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\
25
+ rem set VCTargetsPath="C:\ProgramFiles\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\"
26
+ rem set VCTargetsPath="D:\ProgramFiles\Microsoft Visual Studio\2022\Community\MSBuild\Microsoft\VC\v170\"
27
+ rem set VCToolsInstallDir="D:\ProgramFiles\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.39.33519\"
28
+ rem dotnet clean -c Release libiec61850.sln
29
+
26
30
dotnet publish --no-self-contained --runtime win-x64 -c Release libiec61850.sln
27
31
copy %SRCPATH% \libiec61850\build\src\Release\iec61850.dll %BINPATH%
28
32
@@ -61,7 +65,7 @@ set GOBIN=c:\json-scada\bin
61
65
cd %SRCPATH% \calculations
62
66
go mod tidy
63
67
go build
64
- copy /Y calculations %BINPATH%
68
+ copy /Y calculations.exe %BINPATH%
65
69
66
70
rem cd %SRCPATH%\plc4x-client
67
71
rem go get "github.com/icza/bitio"
Original file line number Diff line number Diff line change 1
1
/*
2
2
* This software implements a IEC61850 driver for JSON SCADA.
3
- * Copyright - 2020-2023 - Ricardo Lastra Olsen
3
+ * Copyright - 2020-2024 - Ricardo Lastra Olsen
4
4
*
5
5
* Requires libiec61850 from MZ Automation.
6
6
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* This software implements a IEC61850 driver for JSON SCADA.
3
- * Copyright - 2020-2023 - Ricardo Lastra Olsen
3
+ * Copyright - 2020-2024 - Ricardo Lastra Olsen
4
4
*
5
5
* Requires libiec61850 from MZ Automation.
6
6
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* This software implements a IEC61850 driver for JSON SCADA.
3
- * Copyright - 2020-2023 - Ricardo Lastra Olsen
3
+ * Copyright - 2020-2024 - Ricardo Lastra Olsen
4
4
*
5
5
* Requires libiec61850 from MZ Automation.
6
6
*
@@ -35,7 +35,7 @@ partial class MainClass
35
35
{
36
36
public static String CopyrightMessage = "{json:scada} IEC61850 Client Driver - Copyright 2023 Ricardo Olsen" ;
37
37
public static String ProtocolDriverName = "IEC61850" ;
38
- public static String DriverVersion = "0.1.5 " ;
38
+ public static String DriverVersion = "0.1.6 " ;
39
39
public static bool Active = false ; // indicates this driver instance is the active node in the moment
40
40
public static Int32 DataBufferLimit = 20000 ; // limit to start dequeuing and discarding data from the acquisition buffer
41
41
public static Int32 BulkWriteLimit = 1250 ; // limit of each bulk write to mongodb
Original file line number Diff line number Diff line change 1
1
/*
2
2
* This software implements a IEC61850 driver for JSON SCADA.
3
- * Copyright - 2020-2023 - Ricardo Lastra Olsen
3
+ * Copyright - 2020-2024 - Ricardo Lastra Olsen
4
4
*
5
5
* Requires libiec61850 from MZ Automation.
6
6
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* This software implements a IEC61850 driver for JSON SCADA.
3
- * Copyright - 2020-2023 - Ricardo Lastra Olsen
3
+ * Copyright - 2020-2024 - Ricardo Lastra Olsen
4
4
*
5
5
* Requires libiec61850 from MZ Automation.
6
6
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* This software implements a IEC61850 driver for JSON SCADA.
3
- * Copyright - 2020-2023 - Ricardo Lastra Olsen
3
+ * Copyright - 2020-2024 - Ricardo Lastra Olsen
4
4
*
5
5
* Requires libiec61850 from MZ Automation.
6
6
*
Original file line number Diff line number Diff line change 1
1
/*
2
2
* This software implements a IEC61850 driver for JSON SCADA.
3
- * Copyright - 2020-2023 - Ricardo Lastra Olsen
3
+ * Copyright - 2020-2024 - Ricardo Lastra Olsen
4
4
*
5
5
* Requires libiec61850 from MZ Automation.
6
6
*
You can’t perform that action at this time.
0 commit comments