diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3a13a356..f05cd08b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -674,6 +674,9 @@ EgwProxy.Ftp:docfx: APP_NAME: EgwProxy.Ftp only: - SDK/Ftp + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet' script: - docfx $env:APP_NAME/docfx.json - mv $env:APP_NAME/_site "docfx" @@ -688,6 +691,9 @@ EgwProxy.Icoel:docfx: APP_NAME: EgwProxy.Icoel only: - SDK/Icoel + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet' script: - docfx $env:APP_NAME/docfx.json - mv $env:APP_NAME/_site "docfx" @@ -702,6 +708,9 @@ EgwProxy.MultiCncLib:docfx: APP_NAME: EgwProxy.MultiCncLib only: - SDK/MultiCnc + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet' script: - docfx $env:APP_NAME/docfx.json - mv $env:APP_NAME/_site "docfx" @@ -716,6 +725,9 @@ EgwProxy.OsaiCncLib:docfx: APP_NAME: EgwProxy.OsaiCncLib only: - SDK/OsaiCnc + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet' script: - docfx $env:APP_NAME/docfx.json - mv $env:APP_NAME/_site "docfx" @@ -730,6 +742,9 @@ EgwProxy.SqlDb:docfx: APP_NAME: EgwProxy.SqlDb only: - SDK/SqlDb + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet' script: - docfx $env:APP_NAME/docfx.json - mv $env:APP_NAME/_site "docfx" @@ -744,6 +759,9 @@ EgwProxy.Gomba:docfx: APP_NAME: EgwProxy.Gomba only: - SDK/Gomba + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet' script: - docfx $env:APP_NAME/docfx.json - mv $env:APP_NAME/_site "docfx" @@ -758,6 +776,9 @@ IOB-WIN-NEXT:docfx: APP_NAME: IOB-WIN-NEXT only: - master + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet' script: - docfx $env:APP_NAME/docfx.json - mv $env:APP_NAME/_site "docfx" @@ -772,6 +793,9 @@ IOB-MAN:docfx: APP_NAME: IOB-MAN only: - master + before_script: + - *nuget-fix + - '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet' script: - docfx $env:APP_NAME/docfx.json - mv $env:APP_NAME/_site "docfx" diff --git a/IOB-UT-NEXT/ToMapo.cs b/IOB-UT-NEXT/ToMapo.cs index f4984ff4..261ca3c9 100644 --- a/IOB-UT-NEXT/ToMapo.cs +++ b/IOB-UT-NEXT/ToMapo.cs @@ -435,9 +435,9 @@ namespace IOB_UT_NEXT /// public MachineSetupMode SetupMode { get; set; } = MachineSetupMode.ND; - /// Dizionario dei parametri da scrivere quando si rilevano differenze tra i - /// parametri MES/Macchina string (key) --> memoria da scrivere tuple --> valori da scrivere quando uguali o diversi + /// + /// Dizionario dei parametri da scrivere quando si rilevano differenze tra i parametri MES/Macchina + /// public List writeParAction { get; set; } = new List(); #endregion Public Properties diff --git a/IOB-WIN-NEXT/Iob/Generic.cs b/IOB-WIN-NEXT/Iob/Generic.cs index 0e077362..715d1e08 100644 --- a/IOB-WIN-NEXT/Iob/Generic.cs +++ b/IOB-WIN-NEXT/Iob/Generic.cs @@ -4646,10 +4646,14 @@ namespace IOB_WIN_NEXT.Iob /// protected int maxPingRetry { get; set; } = 5; - /// Coda massima ammessa per FLog (se <=0 disattivata...) + /// + /// Coda massima ammessa per FLog (se <=0 disattivata...) + /// protected int maxQueueFLog { get; set; } = utils.CRI("maxQueueFLog"); - /// Coda massima ammessa per FLog (se <=0 disattivata...) + /// + /// Coda massima ammessa per FLog (se <=0 disattivata...) + /// protected int maxQueueRawTransf { get; set; } = utils.CRI("maxQueueRawTransf"); /// diff --git a/IOB-WIN-NEXT/Iob/Kawasaki.cs b/IOB-WIN-NEXT/Iob/Kawasaki.cs index b233dcf1..1dd979b2 100644 --- a/IOB-WIN-NEXT/Iob/Kawasaki.cs +++ b/IOB-WIN-NEXT/Iob/Kawasaki.cs @@ -185,7 +185,10 @@ namespace IOB_WIN_NEXT.Iob return prgName; } - /// Recupero info sistema generiche + /// + /// Recupero info sistema generiche + /// + /// public override Dictionary getSysInfo() { // valore non presente in vers default... se gestito fare override diff --git a/IOB-WIN-NEXT/Iob/Simula.cs b/IOB-WIN-NEXT/Iob/Simula.cs index c7d112c6..32f2e160 100644 --- a/IOB-WIN-NEXT/Iob/Simula.cs +++ b/IOB-WIN-NEXT/Iob/Simula.cs @@ -376,7 +376,10 @@ namespace IOB_WIN_NEXT.Iob return prgName; } - /// Recupero info sistema generiche + /// + /// Recupero info sistema generiche + /// + /// public override Dictionary getSysInfo() { // valore non presente in vers default... se gestito fare override diff --git a/IOB-WIN-NEXT/IobBeckhoff/Beckhoff.cs b/IOB-WIN-NEXT/IobBeckhoff/Beckhoff.cs index f76d6205..c3cfb12b 100644 --- a/IOB-WIN-NEXT/IobBeckhoff/Beckhoff.cs +++ b/IOB-WIN-NEXT/IobBeckhoff/Beckhoff.cs @@ -13,7 +13,11 @@ namespace IOB_WIN_NEXT.IobBeckhoff #region Public Constructors - /// Estende l'init della classe base + /// + /// Estende l'init della classe base + /// + /// + /// public Beckhoff(AdapterForm caller, IobConfiguration IOBConf) : base(caller, IOBConf) { lgInfo("NEW IobBeckhoff Adapter"); diff --git a/IOB-WIN-NEXT/IobBeckhoff/BeckhoffCpa.cs b/IOB-WIN-NEXT/IobBeckhoff/BeckhoffCpa.cs index a406e183..5ee77375 100644 --- a/IOB-WIN-NEXT/IobBeckhoff/BeckhoffCpa.cs +++ b/IOB-WIN-NEXT/IobBeckhoff/BeckhoffCpa.cs @@ -9,7 +9,11 @@ namespace IOB_WIN_NEXT.IobBeckhoff { #region Public Constructors - /// Estende l'init della classe base + /// + /// Estende l'init della classe base + /// + /// + /// public BeckhoffCpa(AdapterForm caller, IobConfiguration IOBConf) : base(caller, IOBConf) { lgInfo("START IobBeckhoffCPA Adapter specifico"); diff --git a/IOB-WIN-NEXT/IobConfiguration.cs b/IOB-WIN-NEXT/IobConfiguration.cs index 22adef50..a6979c52 100644 --- a/IOB-WIN-NEXT/IobConfiguration.cs +++ b/IOB-WIN-NEXT/IobConfiguration.cs @@ -71,7 +71,9 @@ namespace IOB_WIN_NEXT /// public bool disableStateCh { get; set; } = false; - /// Nome del file IOB di avvio (REDIS <--> MAN) + /// + /// Nome del file IOB di avvio (REDIS <--> MAN) + /// public string filenameIOB { get; set; } = "ND"; /// diff --git a/IOB-WIN-NEXT/IobModbusTCP/ModbusTCP.cs b/IOB-WIN-NEXT/IobModbusTCP/ModbusTCP.cs index 40d8bb73..32e547ff 100644 --- a/IOB-WIN-NEXT/IobModbusTCP/ModbusTCP.cs +++ b/IOB-WIN-NEXT/IobModbusTCP/ModbusTCP.cs @@ -23,7 +23,11 @@ namespace IOB_WIN_NEXT.IobModbusTCP { #region Public Constructors - /// Classe base con i metodi x ModBusTCP + /// + /// Classe base con i metodi x ModBusTCP + /// + /// + /// public ModbusTCP(AdapterForm caller, IobConfiguration IOBConf) : base(caller, IOBConf) { lgInfo("NEW IOB ModBus TCP"); diff --git a/IOB-WIN-NEXT/IobModbusTCP/ModbusTCPHam.cs b/IOB-WIN-NEXT/IobModbusTCP/ModbusTCPHam.cs index 28d948c1..70f1a841 100644 --- a/IOB-WIN-NEXT/IobModbusTCP/ModbusTCPHam.cs +++ b/IOB-WIN-NEXT/IobModbusTCP/ModbusTCPHam.cs @@ -18,10 +18,11 @@ namespace IOB_WIN_NEXT.IobModbusTCP { #region Public Constructors + /// /// Classe base con i metodi x ModBusTCP /// /// - /// + /// public ModbusTCPHam(AdapterForm caller, IobConfiguration IOBConf) : base(caller, IOBConf) { lgInfo("NEW IOB ModBus TCP HAM"); diff --git a/IOB-WIN-NEXT/IobNet/Ping.cs b/IOB-WIN-NEXT/IobNet/Ping.cs index 24506c67..a6e1f4b9 100644 --- a/IOB-WIN-NEXT/IobNet/Ping.cs +++ b/IOB-WIN-NEXT/IobNet/Ping.cs @@ -10,7 +10,11 @@ namespace IOB_WIN_NEXT.IobNet { #region Public Constructors - /// Estende l'init della classe base + /// + /// Estende l'init della classe base + /// + /// + /// public Ping(AdapterForm caller, IobConfiguration IOBConf) : base(caller, IOBConf) { lgInfo("NEW IobPing (WatchDog)"); @@ -214,9 +218,13 @@ namespace IOB_WIN_NEXT.IobNet } } - /// calcola status ping: - /// - se ha < 50% coda richiesta --> true - /// - se ha > 50% del max coda --> true se èmaggior parte a 1 (true) + /// + /// calcola status ping: + /// se ha < 50% coda richiesta --> true + /// se ha > 50% del max coda --> true se èmaggior parte a 1 (true) + /// + /// + protected bool pingStatusOk() { bool answ = true; diff --git a/IOB-WIN-NEXT/UAClient.cs b/IOB-WIN-NEXT/UAClient.cs index 65b90515..44bc3b5d 100644 --- a/IOB-WIN-NEXT/UAClient.cs +++ b/IOB-WIN-NEXT/UAClient.cs @@ -688,7 +688,10 @@ namespace IOB_WIN_NEXT return monItList; } - /// Write a list of nodes to the Server + /// + /// Write a list of nodes to the Server + /// + /// public void WriteNodes(List node2Write) { if (node2Write != null)