Merge branch 'develop' into Feature/Giacovelli
This commit is contained in:
@@ -11,6 +11,9 @@
|
||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||
*.userprefs
|
||||
|
||||
#dll di OsaiCncLib...
|
||||
EgwProxy/EgwProxy.dll
|
||||
|
||||
# Build results
|
||||
[Dd]ebug/
|
||||
[Dd]ebugPublic/
|
||||
|
||||
+288
-30
@@ -1,14 +1,25 @@
|
||||
variables:
|
||||
NUGET_PATH: 'C:\Tools\nuget.exe'
|
||||
MSBUILD_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\MSBuild.exe'
|
||||
ASPNET_MERGE_PATH: 'C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools'
|
||||
EXE_RELEASE_FOLDER: 'c:\Projetcs\Compiled\GPW\Release'
|
||||
DEPLOY_FOLDER: 'c:\Projects\Deploy\GPW\Builds'
|
||||
NEXUS_PATH: 'MAPO/IOB-WIN-NEXT'
|
||||
SOL_NAME: 'IOB-WIN-NEXT'
|
||||
APP_NAME: 'IOB-WIN-NEXT'
|
||||
NUM_REL: '0.1.2.3'
|
||||
NUM_DEB: '0.1.2-beta.3'
|
||||
CONFIG: ''
|
||||
VERS_MAIN: '3.6'
|
||||
NEW_REL: ''
|
||||
OUTPUT_DIR: ''
|
||||
NET_SHARE_X: '\\codedoc.egalware.com\library'
|
||||
NET_USER_X: 'gitlab'
|
||||
NEXUS_PATH: 'MAPO/IOB-WIN-NEXT'
|
||||
|
||||
.DocReplica: &DocReplica
|
||||
- |
|
||||
net use X: /delete
|
||||
net use X: $env:NET_SHARE_X /u:$env:NET_USER_X $XDRIVE_PASSWD
|
||||
ROBOCOPY docfx X:\$env:APP_NAME /MIR /XF .git* /XD .git
|
||||
SLEEP 2
|
||||
net use X: /delete
|
||||
|
||||
# helper x fix pacchetti nuget da repo locale nexus.steamware.net
|
||||
.nuget-fix: &nuget-fix
|
||||
@@ -25,10 +36,15 @@ variables:
|
||||
.version-fix: &version-fix
|
||||
- |
|
||||
$env:NEW_REL = $env:VERS_MAIN+"."+(get-date –format yyMM)+"."+(get-date –format ddHH)
|
||||
$env:NUM_DEB = $env:VERS_MAIN+"."+(get-date –format yyMM)+"-beta."+(get-date –format dHH)
|
||||
$env:NEW_COPYRIGHT = "EgalWare @ 2006-" + (get-date -format yyyy)
|
||||
$contenuto = Get-Content -path 'VersGen\VersGen.cs' -Raw
|
||||
$newContenuto = $contenuto -replace '0.0.0.0', $env:NEW_REL
|
||||
$newContenuto | Set-Content -Path 'VersGen\VersGen.cs'
|
||||
echo "Set vers: $env:NEW_REL"
|
||||
$newContenuto = $newContenuto -replace 'EgalWare © 2006', $env:NEW_COPYRIGHT
|
||||
$newContenuto | Set-Content -Path 'VersGen\VersGen.cs'
|
||||
# display versioni generate
|
||||
$resoconto = "Effettuato fix file nuspec | release v: " + $env:NUM_REL + " | debug v: " + $env:NUM_DEB;
|
||||
Write-Output $resoconto;
|
||||
|
||||
# helper pulizia files zip
|
||||
.cleanup-zip: &cleanup-zip
|
||||
@@ -107,9 +123,13 @@ variables:
|
||||
|
||||
stages:
|
||||
- build
|
||||
- deploy
|
||||
- pages
|
||||
|
||||
- staging
|
||||
- release
|
||||
- docfx
|
||||
|
||||
# --------------------------------
|
||||
# BUILD
|
||||
# --------------------------------
|
||||
IOB-MAN:build:
|
||||
stage: build
|
||||
tags:
|
||||
@@ -149,8 +169,120 @@ IOB-WIN-NEXT:build:
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=Release /p:Platform="x86" /p:OutputPath=bin/ /nodeReuse:false /verbosity:minimal /m'
|
||||
|
||||
IOB-MAN:deploy:
|
||||
stage: deploy
|
||||
EgwProxy.Icoel:build:
|
||||
stage: build
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: EgwProxy.Icoel
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=Release /p:Platform="x86" /p:OutputPath=bin/ /nodeReuse:false /verbosity:minimal /m'
|
||||
|
||||
EgwProxy.MultiCncLib:build:
|
||||
stage: build
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: EgwProxy.MultiCncLib
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=Release /p:Platform="x86" /p:OutputPath=bin/ /nodeReuse:false /verbosity:minimal /m'
|
||||
|
||||
EgwProxy.OsaiCncLib:build:
|
||||
stage: build
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: EgwProxy.OsaiCncLib
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=Release /p:Platform="x86" /p:OutputPath=bin/ /nodeReuse:false /verbosity:minimal /m'
|
||||
|
||||
# --------------------------------
|
||||
# STAGING: (nuget beta)
|
||||
# --------------------------------
|
||||
EgwProxy.Icoel:build:staging:
|
||||
stage: staging
|
||||
needs: ["EgwProxy.Icoel:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
CONFIG: Debug
|
||||
APP_NAME: EgwProxy.Icoel
|
||||
except:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m'
|
||||
- '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB'
|
||||
- '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
- '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
|
||||
EgwProxy.MultiCncLib:build:staging:
|
||||
stage: staging
|
||||
needs: ["EgwProxy.MultiCncLib:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
CONFIG: Debug
|
||||
APP_NAME: EgwProxy.MultiCncLib
|
||||
except:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m'
|
||||
- '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.vbproj" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB'
|
||||
- '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
- '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
|
||||
EgwProxy.OsaiCncLib:build:staging:
|
||||
stage: staging
|
||||
needs: ["EgwProxy.OsaiCncLib:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
CONFIG: Debug
|
||||
APP_NAME: EgwProxy.OsaiCncLib
|
||||
except:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m'
|
||||
- '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.vbproj" -properties Configuration=$env:CONFIG -Version $env:NUM_DEB'
|
||||
- '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
- '& "$env:NUGET_PATH" push *$env:NUM_DEB.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
|
||||
# --------------------------------
|
||||
# RELEASE
|
||||
# --------------------------------
|
||||
IOB-MAN:release:
|
||||
stage: release
|
||||
needs: ["IOB-MAN:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
@@ -158,7 +290,7 @@ IOB-MAN:deploy:
|
||||
NEXUS_PATH: MAPO/IOB-MAN
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln"-verbosity quiet'
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
- *cleanup-zip
|
||||
script:
|
||||
@@ -166,10 +298,10 @@ IOB-MAN:deploy:
|
||||
- *zipper
|
||||
- *hashBuild
|
||||
- *nexusUpload
|
||||
needs: ["IOB-MAN:build"]
|
||||
|
||||
IOB-WIN:deploy:
|
||||
stage: deploy
|
||||
IOB-WIN:release:
|
||||
stage: release
|
||||
needs: ["IOB-WIN:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
@@ -177,7 +309,7 @@ IOB-WIN:deploy:
|
||||
NEXUS_PATH: MAPO/IOB-WIN
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln"-verbosity quiet'
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
- *cleanup-zip
|
||||
script:
|
||||
@@ -185,10 +317,10 @@ IOB-WIN:deploy:
|
||||
- *zipper
|
||||
- *hashBuild
|
||||
- *nexusUpload
|
||||
needs: ["IOB-WIN:build"]
|
||||
|
||||
IOB-WIN-NEXT:deploy:
|
||||
stage: deploy
|
||||
IOB-WIN-NEXT:release:
|
||||
stage: release
|
||||
needs: ["IOB-WIN-NEXT:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
@@ -196,7 +328,7 @@ IOB-WIN-NEXT:deploy:
|
||||
NEXUS_PATH: MAPO/IOB-WIN-NEXT
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln"-verbosity quiet'
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
- *cleanup-zip
|
||||
script:
|
||||
@@ -204,16 +336,142 @@ IOB-WIN-NEXT:deploy:
|
||||
- *zipper
|
||||
- *hashBuild
|
||||
- *nexusUpload
|
||||
needs: ["IOB-WIN-NEXT:build"]
|
||||
|
||||
pages:
|
||||
script:
|
||||
- docfx Icoel.Soap/docfx.json
|
||||
- mv Icoel.Soap/_site public
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
EgwProxy.Icoel:build:release:
|
||||
stage: release
|
||||
needs: ["EgwProxy.Icoel:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
CONFIG: Release
|
||||
APP_NAME: EgwProxy.Icoel
|
||||
only:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.csproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m'
|
||||
- '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.csproj" -properties Configuration=$env:CONFIG -Version $env:NUM_REL'
|
||||
- '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
- '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
|
||||
EgwProxy.MultiCncLib:build:release:
|
||||
stage: release
|
||||
needs: ["EgwProxy.MultiCncLib:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
CONFIG: Release
|
||||
APP_NAME: EgwProxy.MultiCncLib
|
||||
only:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m'
|
||||
- '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.vbproj" -properties Configuration=$env:CONFIG -Version $env:NUM_REL'
|
||||
- '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
- '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
|
||||
EgwProxy.OsaiCncLib:build:release:
|
||||
stage: release
|
||||
needs: ["EgwProxy.OsaiCncLib:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
CONFIG: Release
|
||||
APP_NAME: EgwProxy.OsaiCncLib
|
||||
only:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore "$env:APP_NAME.sln" -verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=$env:CONFIG /p:Platform="Any CPU" /p:OutputPath=bin/$env:CONFIG /verbosity:minimal /m'
|
||||
- '& "$env:NUGET_PATH" pack "$env:APP_NAME\$env:APP_NAME.vbproj" -properties Configuration=$env:CONFIG -Version $env:NUM_REL'
|
||||
- '& "$env:NUGET_PATH" setapikey fe387daa-d07c-3207-877e-96c8be1be91b -source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
- '& "$env:NUGET_PATH" push *$env:NUM_REL.nupkg -Source http://nexus.steamware.net/repository/nuget-hosted'
|
||||
|
||||
# --------------------------------
|
||||
# DocFx
|
||||
# --------------------------------
|
||||
EgwProxy.Icoel:docfx:
|
||||
stage: docfx
|
||||
needs: ["EgwProxy.Icoel:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: EgwProxy.Icoel
|
||||
only:
|
||||
- master
|
||||
- develop
|
||||
needs: ["IOB-WIN-NEXT:build"]
|
||||
script:
|
||||
- docfx $env:APP_NAME/docfx.json
|
||||
- mv $env:APP_NAME/_site "docfx"
|
||||
- *DocReplica
|
||||
|
||||
EgwProxy.MultiCncLib:docfx:
|
||||
stage: docfx
|
||||
needs: ["EgwProxy.MultiCncLib:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: EgwProxy.MultiCncLib
|
||||
only:
|
||||
- master
|
||||
script:
|
||||
- docfx $env:APP_NAME/docfx.json
|
||||
- mv $env:APP_NAME/_site "docfx"
|
||||
- *DocReplica
|
||||
|
||||
EgwProxy.OsaiCncLib:docfx:
|
||||
stage: docfx
|
||||
needs: ["EgwProxy.OsaiCncLib:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: EgwProxy.OsaiCncLib
|
||||
only:
|
||||
- master
|
||||
script:
|
||||
- docfx $env:APP_NAME/docfx.json
|
||||
- mv $env:APP_NAME/_site "docfx"
|
||||
- *DocReplica
|
||||
|
||||
IOB-WIN-NEXT:docfx:
|
||||
stage: docfx
|
||||
needs: ["IOB-WIN-NEXT:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: IOB-WIN-NEXT
|
||||
only:
|
||||
- master
|
||||
script:
|
||||
- docfx $env:APP_NAME/docfx.json
|
||||
- mv $env:APP_NAME/_site "docfx"
|
||||
- *DocReplica
|
||||
|
||||
IOB-MAN:docfx:
|
||||
stage: docfx
|
||||
needs: ["IOB-MAN:build"]
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: IOB-MAN
|
||||
only:
|
||||
- master
|
||||
script:
|
||||
- docfx $env:APP_NAME/docfx.json
|
||||
- mv $env:APP_NAME/_site "docfx"
|
||||
- *DocReplica
|
||||
Binary file not shown.
@@ -1,48 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<section name="CVCncLib.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
<system.diagnostics>
|
||||
<sources>
|
||||
<!-- Questa sezione definisce la configurazione di registrazione per My.Application.Log -->
|
||||
<source name="DefaultSource" switchName="DefaultSwitch">
|
||||
<listeners>
|
||||
<add name="FileLog"/>
|
||||
<!-- Per scrivere nel log eventi dell'applicazione, rimuovere il commento dalla sezione sottostante -->
|
||||
<!--<add name="EventLog"/>-->
|
||||
</listeners>
|
||||
</source>
|
||||
</sources>
|
||||
<switches>
|
||||
<add name="DefaultSwitch" value="Information"/>
|
||||
</switches>
|
||||
<sharedListeners>
|
||||
<add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter"/>
|
||||
<!-- Per scrivere nel log eventi dell'applicazione, rimuovere il commento dalla sezione sottostante e sostituire APPLICATION_NAME con il nome dell'applicazione -->
|
||||
<!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
|
||||
</sharedListeners>
|
||||
</system.diagnostics>
|
||||
<system.serviceModel>
|
||||
<bindings>
|
||||
<basicHttpBinding>
|
||||
<binding name="OPENcontrol"/>
|
||||
</basicHttpBinding>
|
||||
</bindings>
|
||||
<client>
|
||||
<endpoint address="http://192.168.20.2:8080" binding="basicHttpBinding" bindingConfiguration="OPENcontrol" contract="OpenControl.OPENcontrolPortType" name="OPENcontrol"/>
|
||||
</client>
|
||||
</system.serviceModel>
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup><applicationSettings>
|
||||
<CVCncLib.My.MySettings>
|
||||
<setting name="door_pro_WebReference_OPENcontrol" serializeAs="String">
|
||||
<value>http://192.168.20.2:8080</value>
|
||||
</setting>
|
||||
<setting name="d_prod_WebReference_OPENcontrol" serializeAs="String">
|
||||
<value>http://192.168.20.2:8080</value>
|
||||
</setting>
|
||||
</CVCncLib.My.MySettings>
|
||||
</applicationSettings>
|
||||
</configuration>
|
||||
-11418
File diff suppressed because it is too large
Load Diff
@@ -6,8 +6,8 @@
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{A655A6AC-5997-46F9-9752-8C621B80516C}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Icoel.Test</RootNamespace>
|
||||
<AssemblyName>Icoel.Test</AssemblyName>
|
||||
<RootNamespace>EgwProxy.Icoel.Test</RootNamespace>
|
||||
<AssemblyName>EgwProxy.Icoel.Test</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
@@ -50,9 +50,9 @@
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Icoel.Soap\Icoel.Soap.csproj">
|
||||
<ProjectReference Include="..\EgwProxy.Icoel\EgwProxy.Icoel.csproj">
|
||||
<Project>{c45f5e6e-866b-4a34-a598-29aab2d178ad}</Project>
|
||||
<Name>Icoel.Soap</Name>
|
||||
<Name>EgwProxy.Icoel</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
@@ -3,9 +3,9 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using Icoel.Soap;
|
||||
using EgwProxy.Icoel;
|
||||
|
||||
namespace Icoel.Test
|
||||
namespace EgwProxy.Icoel.Test
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
+2
-2
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Icoel.Test")]
|
||||
[assembly: AssemblyTitle("EgwProxy.Icoel.Test")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Icoel.Test")]
|
||||
[assembly: AssemblyProduct("EgwProxy.Icoel.Test")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2022")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.1.32421.90
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Icoel.Soap", "Icoel.Soap\Icoel.Soap.csproj", "{C45F5E6E-866B-4A34-A598-29AAB2D178AD}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EgwProxy.Icoel", "EgwProxy.Icoel\EgwProxy.Icoel.csproj", "{C45F5E6E-866B-4A34-A598-29AAB2D178AD}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Icoel.Test", "Icoel.Test\Icoel.Test.csproj", "{A655A6AC-5997-46F9-9752-8C621B80516C}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EgwProxy.Icoel.Test", "EgwProxy.Icoel.Test\EgwProxy.Icoel.Test.csproj", "{A655A6AC-5997-46F9-9752-8C621B80516C}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
@@ -1,9 +1,9 @@
|
||||
using Icoel.Soap.SizerService;
|
||||
using EgwProxy.Icoel.SizerService;
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
using System.ServiceModel;
|
||||
|
||||
namespace Icoel.Soap.Compac
|
||||
namespace EgwProxy.Icoel.Compac
|
||||
{
|
||||
public class ComClient
|
||||
{
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="AbstractSamplingConfiguration" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.AbstractSamplingConfiguration, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.AbstractSamplingConfiguration, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Batch" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.Batch, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.Batch, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="GetVersionResponse" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.GetVersionResponse, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.GetVersionResponse, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Grower" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.Grower, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.Grower, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Label" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.Label, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.Label, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="LaneGroup" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.LaneGroup, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.LaneGroup, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Layout" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.Layout, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.Layout, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Outlet" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.Outlet, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.Outlet, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Pack" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.Pack, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.Pack, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Product" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.Product, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.Product, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="SamplingProgress" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.SamplingProgress, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.SamplingProgress, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="ServiceVersion" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.ServiceVersion, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.ServiceVersion, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="Variety" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>Icoel.Soap.SizerService.Variety, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>EgwProxy.Icoel.SizerService.Variety, Connected Services.SizerService.Reference.cs.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+351
-351
File diff suppressed because it is too large
Load Diff
@@ -1,10 +1,10 @@
|
||||
using BinsTracker.INI;
|
||||
using Icoel.Soap.Compac;
|
||||
using Icoel.Soap.INI;
|
||||
using Icoel.Soap.SizerService;
|
||||
using EgwProxy.Icoel.Compac;
|
||||
using EgwProxy.Icoel.INI;
|
||||
using EgwProxy.Icoel.SizerService;
|
||||
using System;
|
||||
|
||||
namespace Icoel.Soap
|
||||
namespace EgwProxy.Icoel
|
||||
{
|
||||
public static class Connector
|
||||
{
|
||||
@@ -6,8 +6,8 @@
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{C45F5E6E-866B-4A34-A598-29AAB2D178AD}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Icoel.Soap</RootNamespace>
|
||||
<AssemblyName>Icoel.Soap</AssemblyName>
|
||||
<RootNamespace>EgwProxy.Icoel</RootNamespace>
|
||||
<AssemblyName>EgwProxy.Icoel</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
@@ -93,43 +93,43 @@
|
||||
<None Include="Connected Services\SizerService\Compac.Services.Sizer.Service1.xsd">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.AbstractSamplingConfiguration.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.AbstractSamplingConfiguration.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.Batch.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.Batch.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.GetVersionResponse.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.GetVersionResponse.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.Grower.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.Grower.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.Label.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.Label.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.LaneGroup.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.LaneGroup.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.Layout.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.Layout.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.Outlet.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.Outlet.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.Pack.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.Pack.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.Product.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.Product.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.SamplingProgress.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.SamplingProgress.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.ServiceVersion.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.ServiceVersion.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\Icoel.Soap.SizerService.Variety.datasource">
|
||||
<None Include="Connected Services\SizerService\EgwProxy.Icoel.SizerService.Variety.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\SizerService\service.wsdl" />
|
||||
@@ -5,7 +5,7 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Icoel.Soap.INI
|
||||
namespace EgwProxy.Icoel.INI
|
||||
{
|
||||
class BatchDetails
|
||||
{
|
||||
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
|
||||
// Le informazioni generali relative a un assembly sono controllate dal seguente
|
||||
// set di attributi. Modificare i valori di questi attributi per modificare le informazioni
|
||||
// associate a un assembly.
|
||||
[assembly: AssemblyTitle("Icoel.Soap")]
|
||||
[assembly: AssemblyTitle("EgwProxy.Icoel")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Icoel.Soap")]
|
||||
[assembly: AssemblyProduct("EgwProxy.Icoel")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2021")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
@@ -1,4 +1,4 @@
|
||||
|
||||
# Icoel.Soap
|
||||
# EgwProxy.Icoel
|
||||
|
||||
Impiegare il menù laterale per navigare nel codice del progetto.
|
||||
@@ -19,4 +19,4 @@ La libreria va chiamata inizializzando un oggetto Connector, e poi invocando i s
|
||||
|
||||
## Demo funzionamento
|
||||
|
||||
Per un esempio di funzionamento si rimanda all'applicativo console Icoel.Test
|
||||
Per un esempio di funzionamento si rimanda all'applicativo console EgwProxy.Icoel.Test
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
# Icoel.Soap Library
|
||||
# EgwProxy.Icoel Library
|
||||
|
||||
Documentazione relativa alla libreria di interfaccia con il Sizer di ICOEL per le operazioni di R/W dei dati di batch di produzione.
|
||||
|
||||
@@ -8,7 +8,6 @@ Vedere la sezione Articles per maggiori informazioni sulle definizioni, l'impieg
|
||||
## Articles
|
||||
|
||||
Per maggiori dettagli, definizioni e demo funzionamento si rimanda alla sezione Articles
|
||||
@intro
|
||||
|
||||
## Api
|
||||
|
||||
Binary file not shown.
@@ -0,0 +1,66 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.2.32505.173
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VersGen", "VersGen\VersGen.csproj", "{58E399F3-9D4E-49D3-AB35-9ED536543D50}"
|
||||
EndProject
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "EgwProxy.MultiCncLib", "EgwProxy.MultiCncLib\EgwProxy.MultiCncLib.vbproj", "{2D769FFD-1122-4276-A115-29246E6D23C5}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B52E3E86-1B82-4F4D-982C-0C8909CD2A28}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.editorconfig = .editorconfig
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Debug|x86 = Debug|x86
|
||||
FANUC|Any CPU = FANUC|Any CPU
|
||||
FANUC|x86 = FANUC|x86
|
||||
Release|Any CPU = Release|Any CPU
|
||||
Release|x86 = Release|x86
|
||||
SIEMENS|Any CPU = SIEMENS|Any CPU
|
||||
SIEMENS|x86 = SIEMENS|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.FANUC|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.FANUC|Any CPU.Build.0 = Release|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.FANUC|x86.ActiveCfg = Debug|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.FANUC|x86.Build.0 = Debug|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.Release|x86.ActiveCfg = Release|x86
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.Release|x86.Build.0 = Release|x86
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.SIEMENS|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.SIEMENS|Any CPU.Build.0 = Release|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.SIEMENS|x86.ActiveCfg = Debug|Any CPU
|
||||
{58E399F3-9D4E-49D3-AB35-9ED536543D50}.SIEMENS|x86.Build.0 = Debug|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.FANUC|Any CPU.ActiveCfg = FANUC|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.FANUC|Any CPU.Build.0 = FANUC|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.FANUC|x86.ActiveCfg = FANUC|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.FANUC|x86.Build.0 = FANUC|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.Release|x86.ActiveCfg = Release|x86
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.Release|x86.Build.0 = Release|x86
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.SIEMENS|Any CPU.ActiveCfg = SIEMENS|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.SIEMENS|Any CPU.Build.0 = SIEMENS|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.SIEMENS|x86.ActiveCfg = SIEMENS|Any CPU
|
||||
{2D769FFD-1122-4276-A115-29246E6D23C5}.SIEMENS|x86.Build.0 = SIEMENS|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {801DCDC5-B7D3-4EA5-B543-783D2C91765F}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
+33
-33
@@ -1,4 +1,4 @@
|
||||
Imports CncLib.Config.Settings
|
||||
Imports EgwProxy.MultiCncLib.Config.Settings
|
||||
|
||||
Namespace CNC
|
||||
|
||||
@@ -433,7 +433,7 @@ Namespace CNC
|
||||
Throw New NcException("ERR pmc_wrpmcrng CNC.FANUC")
|
||||
Return False
|
||||
ElseIf nReturn <> Focas1.EW_OK Then
|
||||
'CncLib.App.Runtime.Log.WW("ERR pmc_wrpmcrng on F_RW_Boolean CNC.FANUC", "Return=" & nReturn, True)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR pmc_wrpmcrng on F_RW_Boolean CNC.FANUC", "Return=" & nReturn, True)
|
||||
Return False
|
||||
End If
|
||||
|
||||
@@ -928,7 +928,7 @@ Namespace CNC
|
||||
iodbto_1_3 = New Focas1.IODBTO_1_3
|
||||
ofs_3 = New Focas1.OFS_3
|
||||
|
||||
nMaxUt = CncLib.CNC.Runtime.NC.MaxIdUtensile
|
||||
nMaxUt = EgwProxy.MultiCncLib.CNC.Runtime.NC.MaxIdUtensile
|
||||
|
||||
Dim n As Integer
|
||||
n = nMaxUt \ 100
|
||||
@@ -1439,7 +1439,7 @@ Namespace CNC
|
||||
' impostato a true x mostrare errore
|
||||
If False Then
|
||||
'If nReturn <> Focas1.EW_SOCKET Then 'tranne su errore di connessione
|
||||
'CncLib.App.Runtime..Log.WW("ERR pmc_wrpmcrng on F_RW_DWord CNC.FANUC", "Return=" & nReturn, True)
|
||||
'EgwProxy.MultiCncLib.App.Runtime..Log.WW("ERR pmc_wrpmcrng on F_RW_DWord CNC.FANUC", "Return=" & nReturn, True)
|
||||
MsgBox(szErrorDesc & vbLf & "Occurred in: " & Position, MsgBoxStyle.Exclamation + MsgBoxStyle.ApplicationModal, "Error on Fanuc CNC Data Window")
|
||||
'End If
|
||||
End If
|
||||
@@ -1483,7 +1483,7 @@ Namespace CNC
|
||||
''Stampo il messaggio
|
||||
'If (Config.Settings.Settings.Debug > 0) Then
|
||||
' 'If nReturn <> Focas1.EW_SOCKET Then 'tranne su errore di connessione
|
||||
' 'CncLib.App.Runtime..Log.WW("ERR pmc_wrpmcrng on F_RW_DWord CNC.FANUC", "Return=" & nReturn, True)
|
||||
' 'EgwProxy.MultiCncLib.App.Runtime..Log.WW("ERR pmc_wrpmcrng on F_RW_DWord CNC.FANUC", "Return=" & nReturn, True)
|
||||
' MsgBox(szErrorDesc & vbLf & "Occurred in: " & Position, MsgBoxStyle.Exclamation + MsgBoxStyle.ApplicationModal, "Error on Fanuc CNC Data Window")
|
||||
' 'End If
|
||||
'End If
|
||||
@@ -1515,8 +1515,8 @@ Namespace CNC
|
||||
' leggo tutto!!!
|
||||
nReturn = Focas1.cnc_sysinfo(nLibHandle(nPathIdx), sysInfo)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_sysinfo CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_sysinfo CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_sysinfo CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_sysinfo CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1553,8 +1553,8 @@ Namespace CNC
|
||||
' leggo tutto!!!
|
||||
nReturn = Focas1.cnc_pdf_rdmain(nLibHandle(nPathIdx), prgName)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_pdf_rdmain CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_pdf_rdmain CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_pdf_rdmain CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_pdf_rdmain CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
ElseIf Is16Series Then
|
||||
' leggo tutto!!!
|
||||
@@ -1562,8 +1562,8 @@ Namespace CNC
|
||||
prgName = "O" & prgNum.mdata.ToString()
|
||||
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_pdf_rdmain CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_pdf_rdmain CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_pdf_rdmain CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_pdf_rdmain CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
|
||||
End If
|
||||
@@ -1597,8 +1597,8 @@ Namespace CNC
|
||||
nReturn = Focas1.cnc_exeprgname(nLibHandle(nPathIdx), prgName)
|
||||
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_exeprgname CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_exeprgname CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_exeprgname CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_exeprgname CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1626,8 +1626,8 @@ Namespace CNC
|
||||
' leggo tutto!!!
|
||||
nReturn = Focas1.cnc_rdposition(nLibHandle(nPathIdx), -1, nNumAxisRead, posizAssi)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdposition RefreshAxisPosition CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rdposition RefreshAxisPosition CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdposition RefreshAxisPosition CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rdposition RefreshAxisPosition CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1655,8 +1655,8 @@ Namespace CNC
|
||||
' leggo tutto!!!
|
||||
nReturn = Focas1.cnc_rdsvmeter(nLibHandle(nPathIdx), nNumAxisRead, caricoAssi)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdsvmeter RefreshAxisMeter CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rdsvmeter RefreshAxisMeter CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdsvmeter RefreshAxisMeter CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rdsvmeter RefreshAxisMeter CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1686,8 +1686,8 @@ Namespace CNC
|
||||
' leggo feed globale
|
||||
nReturn = Focas1.cnc_actf(nLibHandle(nPathIdx), feedData)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_actf RefreshActFeedRate CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_actf RefreshActFeedRate CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_actf RefreshActFeedRate CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_actf RefreshActFeedRate CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1718,8 +1718,8 @@ Namespace CNC
|
||||
' leggo feed globale
|
||||
nReturn = Focas1.cnc_rdspload(nLibHandle(nPathIdx), -1, allData)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdspload RefreshAllSpindleLoad CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rdspload RefreshAllSpindleLoad CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdspload RefreshAllSpindleLoad CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rdspload RefreshAllSpindleLoad CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1750,8 +1750,8 @@ Namespace CNC
|
||||
'!!! non funziona: con -1 LEGGE 1 SOLO ASSE!!!
|
||||
'nReturn = Focas1.cnc_rddynamic2(nLibHandle(nPathIdx), -1, 28 + 4 * (4 * nNumAxisRead), allData)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rddynamic2 RefreshAllData CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rddynamic2 RefreshAllData CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rddynamic2 RefreshAllData CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rddynamic2 RefreshAllData CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1787,8 +1787,8 @@ Namespace CNC
|
||||
' leggo tutto!!!
|
||||
nReturn = Focas1.cnc_rdalmmsg2(nLibHandle(nPathIdx), -1, numAllarmi, allData)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdalmmsg2 GetCncAlarm CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rdalmmsg2 GetCncAlarm CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdalmmsg2 GetCncAlarm CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rdalmmsg2 GetCncAlarm CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
Return New Focas1.ODBALMMSG2
|
||||
End If
|
||||
Catch ex As Exception
|
||||
@@ -1823,8 +1823,8 @@ Namespace CNC
|
||||
' leggo tutto!!! 0-27 (28 elementi)
|
||||
nReturn = Focas1.cnc_rdgcode(nLibHandle(nPathIdx), -1, 1, 37, actGCode)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdgcode RefreshPathGCode CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rdgcode RefreshPathGCode CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdgcode RefreshPathGCode CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rdgcode RefreshPathGCode CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1854,8 +1854,8 @@ Namespace CNC
|
||||
' leggo tutto!!! 0-27 (28 elementi)
|
||||
nReturn = Focas1.cnc_rdgcode(nLibHandle(nPathIdx), -2, 1, 4, actGCode)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdgcode RefreshPathGCode CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rdgcode RefreshPathGCode CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdgcode RefreshPathGCode CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rdgcode RefreshPathGCode CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1885,8 +1885,8 @@ Namespace CNC
|
||||
' leggo tutto!!!
|
||||
nReturn = Focas1.cnc_rd5axmandt(nLibHandle(nPathIdx), ttCoord)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rd3dtooltip RefreshPathTTCoord CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rd3dtooltip RefreshPathTTCoord CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rd3dtooltip RefreshPathTTCoord CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rd3dtooltip RefreshPathTTCoord CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1914,8 +1914,8 @@ Namespace CNC
|
||||
' leggo tutto!!!
|
||||
nReturn = Focas1.cnc_rdspeed(nLibHandle(nPathIdx), -1, speedAssi)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdspeed RefreshAxisSpeed CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rdspeed RefreshAxisSpeed CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdspeed RefreshAxisSpeed CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rdspeed RefreshAxisSpeed CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
Imports T_memType = System.Collections.Generic.Dictionary(Of System.Int32, System.Collections.Generic.Dictionary(Of System.Int32, System.Object))
|
||||
Imports T_memDim = System.Collections.Generic.Dictionary(Of System.Int32, System.Object)
|
||||
Imports CncLib.Config.Settings
|
||||
Imports EgwProxy.MultiCncLib.Config.Settings
|
||||
|
||||
Namespace CNC
|
||||
|
||||
@@ -95,12 +95,12 @@ Namespace CNC
|
||||
Dim sValue(0) As Short
|
||||
Dim TimeStart As Date
|
||||
|
||||
'CncLib.App.Runtime.Log.WI("TRY OpenSession CNC.OSAI", "RemoteName=" & _szRemoteName, CLog.Lev.Secondary)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WI("TRY OpenSession CNC.OSAI", "RemoteName=" & _szRemoteName, CLog.Lev.Secondary)
|
||||
nReturn = Cndex.OpenSession_C(_szRemoteName, _UserSession, _ErrClass, _ErrNum)
|
||||
If O_CheckRetError(nReturn, _ErrClass, _ErrNum, String.Format("OpenSession_C({0},{1}) Connect CNC.OSAI", _szRemoteName, _UserSession), szReturn) Then
|
||||
Throw New NcException(szReturn)
|
||||
Else
|
||||
'CncLib.App.Runtime.Log.WI("OK OpenSession CNC.OSAI", , CLog.Lev.Secondary)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WI("OK OpenSession CNC.OSAI", , CLog.Lev.Secondary)
|
||||
'leggo in che fase di boot mi trovo
|
||||
nReturn = Cndex.BootPhaseEnquiry_C(_UserSession, pPhase, _ErrClass, _ErrNum)
|
||||
If O_CheckRetError(nReturn, _ErrClass, _ErrNum, String.Format("BootPhaseEnquiry_C({0},{1}) Connect CNC.OSAI", _UserSession, pPhase), szReturn) Then
|
||||
@@ -108,7 +108,7 @@ Namespace CNC
|
||||
Throw New NcException(szReturn)
|
||||
Else
|
||||
'verifico che il sistema si trovi in una fase operativa "stabile"
|
||||
'CncLib.App.Runtime.Log.WI("OK BootPhaseEnquiry CNC.OSAI", "Phase=" & pPhase, CLog.Lev.Secondary)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WI("OK BootPhaseEnquiry CNC.OSAI", "Phase=" & pPhase, CLog.Lev.Secondary)
|
||||
If pPhase = 4 Then 'SYSTEM_UP_PHASE
|
||||
|
||||
'leggo matricola e verifico che sia diversa da zero
|
||||
@@ -137,17 +137,17 @@ Namespace CNC
|
||||
Case MsgBoxResult.Cancel : Exit Do
|
||||
End Select
|
||||
End If
|
||||
'CncLib.App.Runtime.Log.WI("OK Connect CNC.OSAI but SERIAL NUMBER NOT YET INITIALIZED", , CLog.Lev.Secondary)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WI("OK Connect CNC.OSAI but SERIAL NUMBER NOT YET INITIALIZED", , CLog.Lev.Secondary)
|
||||
'Application.DoEvents()
|
||||
Threading.Thread.Sleep(500) 'aspetto 500ms prima di ritentare
|
||||
'Application.DoEvents()
|
||||
Loop
|
||||
|
||||
_bConnected = True
|
||||
'CncLib.App.Runtime.Log.WI("OK Connect CNC.OSAI", "Connected=" & _bConnected, CLog.Lev.Secondary)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WI("OK Connect CNC.OSAI", "Connected=" & _bConnected, CLog.Lev.Secondary)
|
||||
Else
|
||||
_bConnected = False
|
||||
'CncLib.App.Runtime.Log.WI("OK Connect CNC.OSAI but PHASE NOT OK", "Phase=" & pPhase & " Connected=" & _bConnected, CLog.Lev.Secondary)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WI("OK Connect CNC.OSAI but PHASE NOT OK", "Phase=" & pPhase & " Connected=" & _bConnected, CLog.Lev.Secondary)
|
||||
Throw New NcException("ERR BootPhase NOT OK CNC.OSAI")
|
||||
End If
|
||||
End If
|
||||
@@ -187,21 +187,21 @@ Namespace CNC
|
||||
'Matricola
|
||||
nReturn = Cndex.ReadVarWord_C(_UserSession, Cndex.MW_CODE, 0, 3187, 1, sValue, _ErrClass, _ErrNum)
|
||||
If nReturn = ERRORE Then
|
||||
'CncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
Else
|
||||
Me._Matricola = sValue(0)
|
||||
End If
|
||||
'Teste
|
||||
nReturn = Cndex.ReadVarWord_C(_UserSession, Cndex.MW_CODE, 0, 3161, 1, sValue, _ErrClass, _ErrNum)
|
||||
If nReturn = ERRORE Then
|
||||
'CncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
Else
|
||||
Me._Teste = sValue(0)
|
||||
End If
|
||||
'Magazzini
|
||||
nReturn = Cndex.ReadVarWord_C(_UserSession, Cndex.MW_CODE, 0, 3163, 1, sValue, _ErrClass, _ErrNum)
|
||||
If nReturn = ERRORE Then
|
||||
'CncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
Else
|
||||
Me._Magazzini = sValue(0)
|
||||
End If
|
||||
@@ -211,14 +211,14 @@ Namespace CNC
|
||||
If i <= 8 Then
|
||||
nReturn = Cndex.ReadVarWord_C(_UserSession, Cndex.MW_CODE, 0, 3164 + (i - 1), 1, sValue, _ErrClass, _ErrNum)
|
||||
If nReturn = ERRORE Then
|
||||
'CncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
Else
|
||||
Me._ManineMagazzino(i - 1) = sValue(0)
|
||||
End If
|
||||
Else '8-20
|
||||
nReturn = Cndex.ReadVarWord_C(_UserSession, Cndex.MW_CODE, 0, 3188 + (i - 1), 1, sValue, _ErrClass, _ErrNum)
|
||||
If nReturn = ERRORE Then
|
||||
'CncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
Else
|
||||
Me._ManineMagazzino(i - 1) = sValue(0)
|
||||
End If
|
||||
@@ -231,21 +231,21 @@ Namespace CNC
|
||||
'Matricola
|
||||
nReturn = Cndex.ReadVarWord_C(_UserSession, Cndex.MW_CODE, 0, 3403, 1, sValue, _ErrClass, _ErrNum)
|
||||
If nReturn = ERRORE Then
|
||||
'CncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
Else
|
||||
Me._Matricola = sValue(0)
|
||||
End If
|
||||
'Teste
|
||||
nReturn = Cndex.ReadVarWord_C(_UserSession, Cndex.MW_CODE, 0, 3405, 1, sValue, _ErrClass, _ErrNum)
|
||||
If nReturn = ERRORE Then
|
||||
'CncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
Else
|
||||
Me._Teste = sValue(0)
|
||||
End If
|
||||
'Magazzini
|
||||
nReturn = Cndex.ReadVarWord_C(_UserSession, Cndex.MW_CODE, 0, 3407, 1, sValue, _ErrClass, _ErrNum)
|
||||
If nReturn = ERRORE Then
|
||||
'CncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR GetStaticData CNC.OSAI", "Return=" & nReturn & " ErrClass=" & _ErrClass & " ErrNum=0x" & Hex(_ErrNum))
|
||||
Else
|
||||
Me._Magazzini = sValue(0)
|
||||
End If
|
||||
+5
-5
@@ -1,4 +1,4 @@
|
||||
Imports CncLib.Config.Settings
|
||||
Imports EgwProxy.MultiCncLib.Config.Settings
|
||||
|
||||
Namespace CNC
|
||||
|
||||
@@ -1101,8 +1101,8 @@ Retry: nRetry += 1
|
||||
' leggo tutto!!!
|
||||
nReturn = Focas1.cnc_rdalmmsg2(nLibHandle(nPathIdx), -1, numAllarmi, allData)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdalmmsg2 GetCncAlarm CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rdalmmsg2 GetCncAlarm CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rdalmmsg2 GetCncAlarm CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rdalmmsg2 GetCncAlarm CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1134,8 +1134,8 @@ Retry: nRetry += 1
|
||||
' leggo tutto!!!
|
||||
nReturn = Focas1.cnc_rd5axmandt(nLibHandle(nPathIdx), ttCoord)
|
||||
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rd3dtooltip RefreshPathTTCoord CNC.FANUC.CncLib") Then
|
||||
Throw New NcException("ERR cnc_rd3dtooltip RefreshPathTTCoord CNC.FANUC.CncLib")
|
||||
If F_CheckRetError_Cnc(nReturn, "cnc_rd3dtooltip RefreshPathTTCoord CNC.FANUC.EgwProxy.MultiCncLib") Then
|
||||
Throw New NcException("ERR cnc_rd3dtooltip RefreshPathTTCoord CNC.FANUC.EgwProxy.MultiCncLib")
|
||||
End If
|
||||
End If
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Namespace CNC
|
||||
|
||||
Public Class Runtime
|
||||
Public Shared NC As CncLib.CNC.CNC
|
||||
Public Shared NC As EgwProxy.MultiCncLib.CNC.CNC
|
||||
|
||||
|
||||
Public Shared Sub CreateNC(tipoNC As CNC.NcType, ipTarget As String, ipPort As String)
|
||||
@@ -41,11 +41,11 @@
|
||||
'End Try
|
||||
End Select
|
||||
|
||||
'CncLib.App.Runtime.Log.WI("OK crating NC CNC.NC", , CLog.Lev.Principal)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WI("OK crating NC CNC.NC", , CLog.Lev.Principal)
|
||||
Catch ex As Exception
|
||||
Dim exStr As String
|
||||
exStr = ex.Message
|
||||
'CncLib.App.Runtime.Log.WE("ERR crating NC CNC.NC", ex.Message, True)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WE("ERR crating NC CNC.NC", ex.Message, True)
|
||||
End Try
|
||||
|
||||
|
||||
@@ -277,7 +277,7 @@
|
||||
Me._ToolTable_SharedDB = Ini.GetBoolean("OPTIONS", "TOOLTABLE_SHAREDDB", 0)
|
||||
End If
|
||||
Else
|
||||
'CncLib.App.Runtime.Log.WW("ERR LoadOptions", String.Format("File {0} not found", szFileIni), True)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR LoadOptions", String.Format("File {0} not found", szFileIni), True)
|
||||
End If
|
||||
|
||||
End Sub
|
||||
@@ -133,7 +133,7 @@ Namespace Config
|
||||
End If
|
||||
End With
|
||||
Else
|
||||
'CncLib.App.Runtime.Log.WW("ERR LoadFromFile", String.Format("File {0} not found", szFileIni), True)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR LoadFromFile", String.Format("File {0} not found", szFileIni), True)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
@@ -173,9 +173,9 @@ Namespace Config
|
||||
Next
|
||||
End With
|
||||
|
||||
'CncLib.App.Runtime.Log.WI("END SaveToFile", , CCncLib.App.Runtime.Log.Lev.Secondary)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WI("END SaveToFile", , CEgwProxy.MultiCncLib.App.Runtime.Log.Lev.Secondary)
|
||||
Else
|
||||
'CncLib.App.Runtime.Log.WW("ERR SaveToFile", String.Format("File {0} not found", szFileIni), True)
|
||||
'EgwProxy.MultiCncLib.App.Runtime.Log.WW("ERR SaveToFile", String.Format("File {0} not found", szFileIni), True)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{2D769FFD-1122-4276-A115-29246E6D23C5}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>CncLib</RootNamespace>
|
||||
<AssemblyName>CncLib</AssemblyName>
|
||||
<RootNamespace>EgwProxy.MultiCncLib</RootNamespace>
|
||||
<AssemblyName>EgwProxy.MultiCncLib</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<MyType>Windows</MyType>
|
||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||
@@ -20,7 +20,7 @@
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<UseVSHostingProcess>true</UseVSHostingProcess>
|
||||
@@ -33,7 +33,7 @@
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
@@ -54,7 +54,7 @@
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'FANUC|AnyCPU' ">
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\FANUC\</OutputPath>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -66,7 +66,7 @@
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ESA|AnyCPU' ">
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\ESA\</OutputPath>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -79,7 +79,7 @@
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\SIEMENS\</OutputPath>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -91,7 +91,7 @@
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\OSAI\</OutputPath>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -105,7 +105,7 @@
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\x86\Debug\</OutputPath>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
@@ -116,7 +116,7 @@
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\x86\Release\</OutputPath>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -128,7 +128,7 @@
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\x86\FANUC\</OutputPath>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -140,7 +140,7 @@
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\x86\ESA\</OutputPath>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -152,7 +152,7 @@
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\x86\SIEMENS\</OutputPath>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -164,7 +164,7 @@
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\x86\OSAI\</OutputPath>
|
||||
<DefineConstants>FS30D=1,SIEMENS=1</DefineConstants>
|
||||
<DocumentationFile>CncLib.xml</DocumentationFile>
|
||||
<DocumentationFile>EgwProxy.MultiCncLib.xml</DocumentationFile>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
@@ -204,6 +204,9 @@
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\VersGen\VersGen.vb">
|
||||
<Link>VersGen.vb</Link>
|
||||
</Compile>
|
||||
<Compile Include="App\App.Native.Ini.vb" />
|
||||
<Compile Include="CNC\CNC.FANUC\CNC.FANUC.vb" />
|
||||
<Compile Include="CNC\CNC.FANUC\_\CNC.FANUC.Err.vb" />
|
||||
@@ -256,436 +259,436 @@
|
||||
<CustomToolNamespace>My</CustomToolNamespace>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.AxesRefR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.AxesRefR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.BootModeR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.BootModeR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.BootPhaseEnquiryR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.BootPhaseEnquiryR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.BootRebootR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.BootRebootR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.BootShutDownR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.BootShutDownR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.CheckHistoryR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.CheckHistoryR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.CycleR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.CycleR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.DncDataR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.DncDataR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.DncEofR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.DncEofR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.DncInitR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.DncInitR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.DncStopR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.DncStopR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.EseExR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.EseExR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.EseR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.EseR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ExeR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ExeR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetActivePartProgramR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetActivePartProgramR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetAvailableCustomEventsR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetAvailableCustomEventsR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetAxesInfo3R.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetAxesInfo3R.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetAxesPositionR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetAxesPositionR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetAxOriginNumR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetAxOriginNumR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetBinaryFileR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetBinaryFileR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetBlkNumR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetBlkNumR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetCNCRegKeyR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetCNCRegKeyR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetCodeNumberR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetCodeNumberR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetDateTimeR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetDateTimeR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetFileR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetFileR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetGCodeR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetGCodeR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetHWKeyR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetHWKeyR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetMarkerInfoR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetMarkerInfoR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetMCodeR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetMCodeR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetNcInfo1R.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetNcInfo1R.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetNcInfo2R.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetNcInfo2R.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetOffsetTabRecordIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetOffsetTabRecordIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetOptionsR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetOptionsR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetOriginTabRecordIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetOriginTabRecordIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetPartProgramLinesR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetPartProgramLinesR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetProcessConfNumR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetProcessConfNumR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetProcessStatusR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetProcessStatusR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetProcInInputR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetProcInInputR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetProcVarDoubleR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetProcVarDoubleR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetProcVarWordR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetProcVarWordR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetPTechSizesR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetPTechSizesR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetSelectedProcessR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetSelectedProcessR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetSerialNumberR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetSerialNumberR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetServoParR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetServoParR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetSysTickR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetSysTickR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetToolNamesR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetToolNamesR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetToolTabRecordIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetToolTabRecordIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetUserTabRecordIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetUserTabRecordIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetVarJOGR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetVarJOGR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.GetVarRCMR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.GetVarRCMR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.HoldR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.HoldR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LoadPTechR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LoadPTechR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LockTableIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LockTableIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSAddDriveR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSAddDriveR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSChangeFileAttribR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSChangeFileAttribR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSCloseFileR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSCloseFileR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSCopyFileR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSCopyFileR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSCreateDirR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSCreateDirR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSCreateFileR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSCreateFileR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSFindCloseR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSFindCloseR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSFindFirstR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSFindFirstR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSFindNextR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSFindNextR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSGetDriveListR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSGetDriveListR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSGetDrivePathR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSGetDrivePathR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSGetFileAttribR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSGetFileAttribR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSGetFileSizeR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSGetFileSizeR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSGetHiddenDriveListR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSGetHiddenDriveListR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSGetInfoR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSGetInfoR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSGetNumDriveR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSGetNumDriveR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSGetSecurityLevelR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSGetSecurityLevelR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSLongFileNamesR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSLongFileNamesR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSOpenFileR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSOpenFileR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSReadRecordR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSReadRecordR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSReloadDriveListR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSReloadDriveListR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSRemoveDirR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSRemoveDirR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSRemoveDriveR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSRemoveDriveR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSRemoveFileR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSRemoveFileR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSRenameR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSRenameR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSSetFileAttribR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSSetFileAttribR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSSetSecurityLevelR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSSetSecurityLevelR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.LogFSWriteRecordR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.LogFSWriteRecordR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ManagePartProgramR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ManagePartProgramR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.MonAddVariableR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.MonAddVariableR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.MonCloseChannelR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.MonCloseChannelR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.MonDeleteVariableR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.MonDeleteVariableR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.MonGetVariableR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.MonGetVariableR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.MonOpenChannelR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.MonOpenChannelR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.MonStartSamplingR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.MonStartSamplingR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.MonStopSamplingR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.MonStopSamplingR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.PutBinaryFileR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.PutBinaryFileR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.PutFileR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.PutFileR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadCurrentAnomalyMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadCurrentAnomalyMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadCurrentEmergMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadCurrentEmergMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadCurrentErrorMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadCurrentErrorMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadErrMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadErrMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadHistoryAnomalyMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadHistoryAnomalyMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadHistoryEmergMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadHistoryEmergMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadHistoryErrorMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadHistoryErrorMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadHistoryLogMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadHistoryLogMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadPartProgramMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadPartProgramMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadRemapDefinitionsR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadRemapDefinitionsR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadVarDoubleR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadVarDoubleR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadVarTextR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadVarTextR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadVarWordR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadVarWordR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ReadWarningMsgR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ReadWarningMsgR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ResetR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ResetR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.ResetSingleTableIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.ResetSingleTableIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.RestoreBackupMemoryR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.RestoreBackupMemoryR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.RestoreSingleTableR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.RestoreSingleTableR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SaveBackupMemoryR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SaveBackupMemoryR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SaveSingleTableR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SaveSingleTableR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SaveTablesR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SaveTablesR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SelectPartProgramFromDriveR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SelectPartProgramFromDriveR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SelectPartProgramR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SelectPartProgramR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SelectProcAxisR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SelectProcAxisR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SelectProcessR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SelectProcessR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetDateTimeR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetDateTimeR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetFeedManOverR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetFeedManOverR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetFeedRapidOverR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetFeedRapidOverR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetFeedRateOverR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetFeedRateOverR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetIpAddressR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetIpAddressR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetManMovDirectionR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetManMovDirectionR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetMdiStringR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetMdiStringR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetOffsetTabRecordIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetOffsetTabRecordIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetOriginTabRecordIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetOriginTabRecordIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetProcessModeR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetProcessModeR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetProcVarDoubleR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetProcVarDoubleR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetProcVarWordR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetProcVarWordR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetServoParR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetServoParR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetSpeedRateOverR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetSpeedRateOverR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetToolTabRecordIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetToolTabRecordIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetUserTabRecordIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetUserTabRecordIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetVarJOGR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetVarJOGR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetVarRCMR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetVarRCMR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SetVarUASR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SetVarUASR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SkipPProgBlockR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SkipPProgBlockR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SndProcInpDataR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SndProcInpDataR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.SyncroCycleR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.SyncroCycleR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.UnLockTableIIR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.UnLockTableIIR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.WriteRemapDefinitionsR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.WriteRemapDefinitionsR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.WriteVarDoubleR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.WriteVarDoubleR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.WriteVarTextR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.WriteVarTextR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.WriteVarWordBitR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.WriteVarWordBitR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\CncLib.OPENcontrol.WriteVarWordR.datasource">
|
||||
<None Include="Service References\OPENcontrol\EgwProxy.MultiCncLib.OPENcontrol.WriteVarWordR.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Service References\OPENcontrol\OPENcontrol.wsdl" />
|
||||
@@ -8,11 +8,11 @@ Imports System.Runtime.InteropServices
|
||||
|
||||
' Review the values of the assembly attributes
|
||||
|
||||
<Assembly: AssemblyTitle("CncLib")>
|
||||
<Assembly: AssemblyDescription("")>
|
||||
<Assembly: AssemblyCompany("SteamWare")>
|
||||
<Assembly: AssemblyProduct("CncLib")>
|
||||
<Assembly: AssemblyCopyright("Copyright ©2007-2017")>
|
||||
<Assembly: AssemblyTitle("EgwProxy.MultiCncLib")>
|
||||
<Assembly: AssemblyDescription("Proxy class for accessing multiple CNC (FANUC, SIEMENS, ...)")>
|
||||
'<Assembly: AssemblyCompany("EgalWare")>
|
||||
<Assembly: AssemblyProduct("EgwProxy.MultiCncLib")>
|
||||
'<Assembly: AssemblyCopyright("Copyright © 2006 EgalWare")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' by using the '*' as shown below:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.0.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
'<Assembly: AssemblyVersion("1.0.0.0")>
|
||||
'<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
Generated
+1
-1
@@ -39,7 +39,7 @@ Namespace My.Resources
|
||||
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||
Get
|
||||
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("CncLib.Resources", GetType(Resources).Assembly)
|
||||
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("EgwProxy.MultiCncLib.Resources", GetType(Resources).Assembly)
|
||||
resourceMan = temp
|
||||
End If
|
||||
Return resourceMan
|
||||
Generated
+2
-2
@@ -64,9 +64,9 @@ Namespace My
|
||||
Friend Module MySettingsProperty
|
||||
|
||||
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||
Friend ReadOnly Property Settings() As Global.CncLib.My.MySettings
|
||||
Friend ReadOnly Property Settings() As Global.EgwProxy.MultiCncLib.My.MySettings
|
||||
Get
|
||||
Return Global.CncLib.My.MySettings.Default
|
||||
Return Global.EgwProxy.MultiCncLib.My.MySettings.Default
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="AxesRefR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.AxesRefR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.AxesRefR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="BootModeR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.BootModeR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.BootModeR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="BootPhaseEnquiryR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.BootPhaseEnquiryR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.BootPhaseEnquiryR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="BootRebootR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.BootRebootR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.BootRebootR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="BootShutDownR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.BootShutDownR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.BootShutDownR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="CheckHistoryR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.CheckHistoryR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.CheckHistoryR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="CycleR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.CycleR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.CycleR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="DncDataR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.DncDataR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.DncDataR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="DncEofR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.DncEofR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.DncEofR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="DncInitR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.DncInitR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.DncInitR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="DncStopR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.DncStopR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.DncStopR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="EseExR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.EseExR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.EseExR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="EseR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.EseR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.EseR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="ExeR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.ExeR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.ExeR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="GetActivePartProgramR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.GetActivePartProgramR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.GetActivePartProgramR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="GetAvailableCustomEventsR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.GetAvailableCustomEventsR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.GetAvailableCustomEventsR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="GetAxOriginNumR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.GetAxOriginNumR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.GetAxOriginNumR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="GetAxesInfo3R" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.GetAxesInfo3R, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.GetAxesInfo3R, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
+1
-1
@@ -6,5 +6,5 @@
|
||||
cause the file to be unrecognizable by the program.
|
||||
-->
|
||||
<GenericObjectDataSource DisplayName="GetAxesPositionR" Version="1.0" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
|
||||
<TypeInfo>CMSCncLib.OPENcontrol.GetAxesPositionR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
<TypeInfo>CMSEgwProxy.MultiCncLib.OPENcontrol.GetAxesPositionR, Service References.OPENcontrol.Reference.vb.dll, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null</TypeInfo>
|
||||
</GenericObjectDataSource>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user