chore: 初始化合力差速器MES采集程序

This commit is contained in:
yexingqiang
2026-06-08 10:59:21 +08:00
commit 1591062eef
1379 changed files with 181389 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Common/dll/01DoWhatPlc.dll Normal file

Binary file not shown.

BIN
Common/dll/01DoWhatPlc.pdb Normal file

Binary file not shown.

BIN
Common/dll/02WebApiCall.dll Normal file

Binary file not shown.

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
<appSettings>
<add key="Url_WebApi" value="http://localhost:41181"/>
</appSettings>
</configuration>

BIN
Common/dll/02WebApiCall.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Common/dll/BasicData.dll Normal file

Binary file not shown.

BIN
Common/dll/BasicData.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Common/dll/ConLink.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
Common/dll/DoWhatPlc.dll Normal file

Binary file not shown.

BIN
Common/dll/DoWhatPlc.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Common/dll/MQTTnet.dll Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Common/dll/MesWork.PLC.dll Normal file

Binary file not shown.

BIN
Common/dll/MesWork.PLC.pdb Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

BIN
Common/dll/MyLog4Net.dll Normal file

Binary file not shown.

BIN
Common/dll/MyLog4Net.pdb Normal file

Binary file not shown.

BIN
Common/dll/NPOI.OOXML.dll Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Common/dll/NPOI.dll Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Common/dll/Opc.Ua.Core.dll Normal file

Binary file not shown.

BIN
Common/dll/OpcUaHelper.dll Normal file

Binary file not shown.

BIN
Common/dll/OpcUaHelper.pdb Normal file

Binary file not shown.

1281
Common/dll/OpcUaHelper.xml Normal file

File diff suppressed because it is too large Load Diff

35
Common/dll/log4net.config Normal file
View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<log4net>
<!-- 控制台日志配置 -->
<appender name="Console" type="log4net.Appender.ConsoleAppender">
<!-- 日志输出格式 -->
<layout type="log4net.Layout.PatternLayout">
<!--<conversionPattern value="%5level [%thread] (%file:%line) - %message%newline" />-->
<conversionPattern value="%date %-5level %thread %logger - %message%newline" />
</layout>
</appender>
<!-- 文件存储日志配置 -->
<appender name="RollingFile" type="log4net.Appender.RollingFileAppender">
<!-- 保存文件的名称 -->
<file value="./log/log.log" />
<appendToFile value="true" />
<!-- 文件的编码方式 -->
<param name="Encoding" value="UTF-8"/>
<param name="DatePattern" value="'.'yyyy-MM-dd'.log'" />
<!-- 每个文件的大小 -->
<maximumFileSize value="10000KB" />
<!-- 保存文件数量 -->
<maxSizeRollBackups value="2" />
<!-- 日志输出格式 -->
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date %-5level %thread %logger - %message%newline" />
</layout>
</appender>
<root>
<level value="ALL" />
<appender-ref ref="Console" />
<appender-ref ref="RollingFile" />
</root>
</log4net>

BIN
Common/dll/log4net.dll Normal file

Binary file not shown.