File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33# Required tools:
4- # Dotnet Core SDK 6.0
4+ # Dotnet SDK 6.0
55# Golang 1.14+
66# Node.js 14+
77
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ # Required tools:
4+ # Dotnet SDK 6.0
5+ # Golang 1.14+
6+ # Node.js 14+
7+
38ARG1=${1:- osx-x64}
49
510cd ..
611mkdir bin
712
813cd src/lib60870.netcore
9- dotnet publish --runtime $ARG1 -p:PublishReadyToRun=true -c Release -o ../../bin/
14+ dotnet publish --no-self-contained -- runtime $ARG1 -p:PublishReadyToRun=true -c Release -o ../../bin/
1015
1116cd ../OPC-UA-Client
12- dotnet publish --runtime $ARG1 -p:PublishReadyToRun=true -c Release -o ../../bin/
17+ dotnet publish --no-self-contained -- runtime $ARG1 -p:PublishReadyToRun=true -c Release -o ../../bin/
1318
14- # cd ../dnp3/Dnp3Client
19+ # Dnp3Client is Windows-only (must run under Wine on Linux)
20+ cd ../dnp3/Dnp3Client
1521# dotnet publish --runtime $ARG1 -p:PublishReadyToRun=true -c Release -o ../../../bin/ Dnp3Client.csproj
1622
1723export GOBIN=~ /json-scada/bin
@@ -48,7 +54,7 @@ npm install
4854cd ../htdocs-admin
4955npm install
5056npm run build
51- cd ../shell_api
57+ cd ../shell-api
5258npm install
5359cd ../alarm_beep
5460npm install
You can’t perform that action at this time.
0 commit comments