Commit a4d691be authored by wangjunqiang's avatar wangjunqiang

修改部分文件

parent 50119a0f
## Ignore Visual Studio temporary files, build results, and ## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons. ## files generated by popular Visual Studio add-ons.
GcDevicePc/obj */obj/
GcDevicePc/bin */bin/
*.exe *.exe
# User-specific files # User-specific files
*.suo *.suo
......
...@@ -31,8 +31,6 @@ namespace GcDevicePc ...@@ -31,8 +31,6 @@ namespace GcDevicePc
} }
// 把十六进制字符串转换成字节型 // 把十六进制字符串转换成字节型
private byte[] strToToHexByte(string hexString) private byte[] strToToHexByte(string hexString)
{ {
hexString = hexString.Replace(" ", ""); hexString = hexString.Replace(" ", "");
......
...@@ -27,7 +27,7 @@ namespace GcDevicePc ...@@ -27,7 +27,7 @@ namespace GcDevicePc
this.Controls.Add(adjust); this.Controls.Add(adjust);
} }
public void Show() public new void Show()
{ {
base.Show(); base.Show();
if (adjust != null) if (adjust != null)
......
...@@ -27,7 +27,7 @@ namespace GcDevicePc ...@@ -27,7 +27,7 @@ namespace GcDevicePc
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.Controls.Add(adjust); this.Controls.Add(adjust);
} }
public void Show() public new void Show()
{ {
base.Show(); base.Show();
if (adjust != null) if (adjust != null)
......
...@@ -28,7 +28,7 @@ namespace GcDevicePc ...@@ -28,7 +28,7 @@ namespace GcDevicePc
} }
public void Show() public new void Show()
{ {
base.Show(); base.Show();
if (total != null) if (total != null)
......
...@@ -42,13 +42,10 @@ namespace GcDevicePc.Common ...@@ -42,13 +42,10 @@ namespace GcDevicePc.Common
public GCModbus() public GCModbus()
{ {
this.hModbusHandle = fnLibModbus(); this.hModbusHandle = fnLibModbus();
// Console.WriteLine("GCModbus() is" + this.hModbusHandle.ToString());
} }
~GCModbus() ~GCModbus()
{ {
// Console.WriteLine("GCModbusClose() is" + this.hModbusHandle.ToString());
fnLibModbusClose(hModbusHandle); fnLibModbusClose(hModbusHandle);
} }
......
...@@ -94,8 +94,8 @@ namespace GcDevicePc.ConfigDlg ...@@ -94,8 +94,8 @@ namespace GcDevicePc.ConfigDlg
aidheatcheck2.CheckState = CheckState.Unchecked; aidheatcheck2.CheckState = CheckState.Unchecked;
} }
aidheatset1.Text = CProfileDevice.m_DevParam.aux.fSetTemp_HeatArea1.ToString(); //aidheatset1.Text = CProfileDevice.m_DevParam.aux.fSetTemp_HeatArea1.ToString();
aidheatset2.Text = CProfileDevice.m_DevParam.aux.fSetTemp_HeatArea2.ToString(); //aidheatset2.Text = CProfileDevice.m_DevParam.aux.fSetTemp_HeatArea2.ToString();
this.aidheatgroup.Enabled = false; this.aidheatgroup.Enabled = false;
} }
...@@ -116,9 +116,16 @@ namespace GcDevicePc.ConfigDlg ...@@ -116,9 +116,16 @@ namespace GcDevicePc.ConfigDlg
public void recordCurData() public void recordCurData()
{ {
if (aidheatset1.Text != "")
{
CProfileDevice.m_DevParam.aux.fSetTemp_HeatArea1 = float.Parse(aidheatset1.Text); CProfileDevice.m_DevParam.aux.fSetTemp_HeatArea1 = float.Parse(aidheatset1.Text);
CProfileDevice.m_DevParam.aux.fSetTemp_HeatArea2 = float.Parse(aidheatset2.Text); }
if (aidheatset2.Text != "")
{
CProfileDevice.m_DevParam.aux.fSetTemp_HeatArea2 = float.Parse(aidheatset2.Text);
}
CProfileDevice.m_DevParam.aux.fTemp_Enable1 = (aidheatcheck1.CheckState == CheckState.Checked) ? true : false; CProfileDevice.m_DevParam.aux.fTemp_Enable1 = (aidheatcheck1.CheckState == CheckState.Checked) ? true : false;
CProfileDevice.m_DevParam.aux.fTemp_Enable2 = (aidheatcheck2.CheckState == CheckState.Checked) ? true : false; CProfileDevice.m_DevParam.aux.fTemp_Enable2 = (aidheatcheck2.CheckState == CheckState.Checked) ? true : false;
} }
......
...@@ -15,7 +15,6 @@ namespace GcDevicePc.ConfigDlg ...@@ -15,7 +15,6 @@ namespace GcDevicePc.ConfigDlg
public partial class FIDDlg : Form public partial class FIDDlg : Form
{ {
public FIDDlg() public FIDDlg()
{ {
InitializeComponent(); InitializeComponent();
......
...@@ -70,8 +70,8 @@ namespace GcDevicePc ...@@ -70,8 +70,8 @@ namespace GcDevicePc
{ {
int i; int i;
double fDetvalue = 0; double fDetvalue = 0;
double iDetvalue = 0; //double iDetvalue = 0;
double bDetvalue = 0; //double bDetvalue = 0;
string errinfo; string errinfo;
string gasno=""; string gasno="";
......
...@@ -9,7 +9,7 @@ namespace GcDevicePc ...@@ -9,7 +9,7 @@ namespace GcDevicePc
{ {
class FileServerClient class FileServerClient
{ {
//////////////////////////////////////////////////////////////////////////////////////
[DllImport(@"WtFileSender.dll", EntryPoint = "fnWtClientInit", CharSet = CharSet.Unicode)] [DllImport(@"WtFileSender.dll", EntryPoint = "fnWtClientInit", CharSet = CharSet.Unicode)]
public static extern uint fnWtClientInit(byte[] Ip, ushort wTcpPort); public static extern uint fnWtClientInit(byte[] Ip, ushort wTcpPort);
[DllImport(@"WtFileSender.dll", EntryPoint = "fnWtFileSeverInit")] [DllImport(@"WtFileSender.dll", EntryPoint = "fnWtFileSeverInit")]
...@@ -28,19 +28,33 @@ namespace GcDevicePc ...@@ -28,19 +28,33 @@ namespace GcDevicePc
[DllImport(@"WtFileSender.dll", EntryPoint = "fnWtRunPro")] [DllImport(@"WtFileSender.dll", EntryPoint = "fnWtRunPro")]
public static extern int fnWtRunPro(uint handle, byte[] lpszFileName, byte[] lpszRemoteFilePath); public static extern int fnWtRunPro(uint handle, byte[] lpszFileName, byte[] lpszRemoteFilePath);
/////////////////////////////////////////////////////////////////////////////////
private uint hFileServerHandle; private uint hFileServerHandle;
public void WtClientClose() public void WtClientClose()
{ {
fnWtClientClose(this.hFileServerHandle); try
{
fnWtClientClose(this.hFileServerHandle);
}
catch
{
}
} }
public void WtClientInit(String RemoteIP, ushort wport) public void WtClientInit(String RemoteIP, ushort wport)
{ {
byte[] fIP = Encoding.Unicode.GetBytes(RemoteIP); try
this.hFileServerHandle = fnWtClientInit(fIP, wport); {
byte[] fIP = Encoding.Unicode.GetBytes(RemoteIP);
this.hFileServerHandle = fnWtClientInit(fIP, wport);
}
catch
{
}
} }
public int WtClientCopytoServer(String filename, String filepath, String RemoteFilePath) public int WtClientCopytoServer(String filename, String filepath, String RemoteFilePath)
......
...@@ -138,7 +138,6 @@ ...@@ -138,7 +138,6 @@
</Reference> </Reference>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="AESfile.cs" />
<Compile Include="auxtool.cs"> <Compile Include="auxtool.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
......
...@@ -2144,7 +2144,7 @@ namespace GcDevicePc ...@@ -2144,7 +2144,7 @@ namespace GcDevicePc
string twfilename = null; string twfilename = null;
public void startbtn() public void startbtn()
{ {
bool ret;
string tmpFileName; string tmpFileName;
tmpFileName = globaldata.m_pcbuffer.gcpcinfo.pcfileinfo.cur_MethodName; tmpFileName = globaldata.m_pcbuffer.gcpcinfo.pcfileinfo.cur_MethodName;
...@@ -2163,10 +2163,10 @@ namespace GcDevicePc ...@@ -2163,10 +2163,10 @@ namespace GcDevicePc
twfilename += "default_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".tw"; twfilename += "default_" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".tw";
} }
AESfile savefile = new AESfile(twfilename); // AESfile savefile = new AESfile(twfilename);
ret = savefile.Create_filetw(); // ret = savefile.Create_filetw();
if (ret) // if (ret)
{ {
globaldata.startflag = true; globaldata.startflag = true;
globaldata.stopflag = false; globaldata.stopflag = false;
...@@ -2178,10 +2178,10 @@ namespace GcDevicePc ...@@ -2178,10 +2178,10 @@ namespace GcDevicePc
globaldata.m_pcbuffer.gcpcinfo.pcworkinfo.work_Statue = 1; globaldata.m_pcbuffer.gcpcinfo.pcworkinfo.work_Statue = 1;
//globaldata.work_Statue = 1; //globaldata.work_Statue = 1;
} // }
else // else
{ // {
MessageBox.Show("创建失败!"); // MessageBox.Show("创建失败!");
} }
} }
......
...@@ -61,8 +61,8 @@ namespace GcDevicePc.ProThread ...@@ -61,8 +61,8 @@ namespace GcDevicePc.ProThread
if (globaldata.startflag && globaldata.m_pcbuffer.gcpcinfo.pcfileinfo.cur_DataName != null) if (globaldata.startflag && globaldata.m_pcbuffer.gcpcinfo.pcfileinfo.cur_DataName != null)
{ {
AESfile savefile = new AESfile(globaldata.m_pcbuffer.gcpcinfo.pcfileinfo.cur_DataName); // AESfile savefile = new AESfile(globaldata.m_pcbuffer.gcpcinfo.pcfileinfo.cur_DataName);
savefile.Write_filetw(dtime, dvalue); // savefile.Write_filetw(dtime, dvalue);
} }
} }
} }
......
...@@ -70,9 +70,9 @@ namespace GcDevicePc.ProThread ...@@ -70,9 +70,9 @@ namespace GcDevicePc.ProThread
socket.BeginReceive(buffer, 0, buffer.Length, SocketFlags.None, new AsyncCallback(ReceiveMessage), socket); socket.BeginReceive(buffer, 0, buffer.Length, SocketFlags.None, new AsyncCallback(ReceiveMessage), socket);
} }
catch (Exception ex) catch
{ {
//Console.WriteLine("XXXXXXXXXXXX");
} }
finally finally
{ {
...@@ -257,7 +257,6 @@ namespace GcDevicePc.ProThread ...@@ -257,7 +257,6 @@ namespace GcDevicePc.ProThread
private static void ChangeBuff(byte[] buffer, int len ) private static void ChangeBuff(byte[] buffer, int len )
{ {
int i = 0;
byte[] endpackage = new byte[16]; byte[] endpackage = new byte[16];
if(dataflag == false) if(dataflag == false)
......
[sysinfo]
path=e:\GCconfig\CKVocSystem.config
\ No newline at end of file
<?xml version="1.0"?>
<doc>
<assembly>
<name>CircularProgressBar</name>
</assembly>
<members>
<member name="T:CircularProgressBar.CircularProgressBar">
<summary>
The circular progress bar windows form control
</summary>
</member>
<member name="M:CircularProgressBar.CircularProgressBar.#ctor">
<summary>
Initializes a new instance of the <see cref="T:CircularProgressBar.CircularProgressBar" /> class.
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.Font">
<summary>
Gets or sets the font of text in the <see cref="T:CircularProgressBar.CircularProgressBar" />.
</summary>
<returns>
The <see cref="T:System.Drawing.Font" /> of the text. The default is the font set by the container.
</returns>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.Text">
<summary>
Gets or sets the text in the <see cref="T:CircularProgressBar.CircularProgressBar" />.
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.AnimationFunction">
<summary>
Sets a known animation function.
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.CustomAnimationFunction">
<summary>
Sets a custom animation function.
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.AnimationSpeed">
<summary>
Gets or sets the animation speed in milliseconds.
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.TextMargin">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.SuperscriptMargin">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.SubscriptMargin">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.InnerColor">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.InnerMargin">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.InnerWidth">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.OuterColor">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.OuterMargin">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.OuterWidth">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.ProgressColor">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.StartAngle">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.ProgressWidth">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.SubscriptText">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.SubscriptColor">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.SecondaryFont">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.SuperscriptText">
<summary>
</summary>
</member>
<member name="P:CircularProgressBar.CircularProgressBar.SuperscriptColor">
<summary>
</summary>
</member>
<member name="M:CircularProgressBar.CircularProgressBar.OnLocationChanged(System.EventArgs)">
<inheritdoc />
</member>
<member name="M:CircularProgressBar.CircularProgressBar.OnStyleChanged(System.EventArgs)">
<inheritdoc />
</member>
<member name="M:CircularProgressBar.CircularProgressBar.OnParentChanged(System.EventArgs)">
<inheritdoc />
</member>
<member name="M:CircularProgressBar.CircularProgressBar.ParentOnInvalidated(System.Object,System.Windows.Forms.InvalidateEventArgs)">
<summary>
Occurs when parent's display requires redrawing.
</summary>
<param name="sender"></param>
<param name="invalidateEventArgs"></param>
</member>
<member name="M:CircularProgressBar.CircularProgressBar.ParentOnResize(System.Object,System.EventArgs)">
<summary>
Occurs when the parent resized.
</summary>
<param name="sender"></param>
<param name="eventArgs"></param>
</member>
<member name="M:CircularProgressBar.CircularProgressBar.RecreateBackgroundBrush">
<summary>
Update or create the brush used for drawing the background
</summary>
</member>
<member name="M:CircularProgressBar.CircularProgressBar.OnParentBackColorChanged(System.EventArgs)">
<inheritdoc />
</member>
<member name="M:CircularProgressBar.CircularProgressBar.OnParentBackgroundImageChanged(System.EventArgs)">
<inheritdoc />
</member>
<member name="M:CircularProgressBar.CircularProgressBar.OnPaint(System.Windows.Forms.PaintEventArgs)">
<summary>
Raises the <see cref="E:System.Windows.Forms.Control.Paint" /> event.
</summary>
<param name="e">A <see cref="T:System.Windows.Forms.PaintEventArgs" /> that contains the event data. </param>
</member>
<member name="M:CircularProgressBar.CircularProgressBar.InitializeContinues(System.Boolean)">
<summary>
Initialize the animation for the continues styling
</summary>
<param name="firstTime">True if it is the first execution of this function, otherwise false</param>
</member>
<member name="M:CircularProgressBar.CircularProgressBar.InitializeMarquee(System.Boolean)">
<summary>
Initialize the animation for the marquee styling
</summary>
<param name="firstTime">True if it is the first execution of this function, otherwise false</param>
</member>
<member name="M:CircularProgressBar.CircularProgressBar.StartPaint(System.Drawing.Graphics)">
<summary>
The function responsible for painting the control
</summary>
<param name="g">The <see cref="T:System.Drawing.Graphics" /> object to draw into</param>
</member>
</members>
</doc>
<GCCPC>
<Cfg>
<PARAMETER>
<DEBUG>True</DEBUG>
<fid>True</fid>
</PARAMETER>
</Cfg>
</GCCPC>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="GcDevicePc.application" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Microsoft" asmv2:product="GcDevicePc" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="GcDevicePc.exe.manifest" size="11567">
<assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>mxsnqo2a0FuIMs15E1Td8oyGWXI=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
<runtime>
<legacyUnhandledExceptionPolicy enabled="true"/>
</runtime>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<description asmv2:iconFile="logo.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<commandLine file="GcDevicePc.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC 清单选项
如果要更改 Windows 用户帐户控制级别,请用以下节点之一替换
requestedExecutionLevel 节点。
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
如果要利用文件和注册表虚拟化提供
向后兼容性,请删除 requestedExecutionLevel 节点。
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CircularProgressBar.dll" size="16896">
<assemblyIdentity name="CircularProgressBar" version="2.5.6403.13419" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>E29Qt7szYd4bzl33U6SQAnxhHHU=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAlgorithm.dll" size="24064">
<assemblyIdentity name="CKVocAlgorithm" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>Q/hgUPdizcMsOTvwyoS4xY9yCFw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAnalyzer.dll" size="201216">
<assemblyIdentity name="CKVocAnalyzer" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>LCv5Hn6WJghA1du0BvygdqyOf7U=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="GcDevicePc.exe" size="1627136">
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>4d6VRo+bWHA+PlSOPICJ/BlS9AA=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="LogOperate.dll" size="8192">
<assemblyIdentity name="LogOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>fr8oA0pkZeMQdFkyyj1tRwuS8uw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ModbusLib.dll" size="18432">
<assemblyIdentity name="ModbusLib" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>+PQh/NXCzOiGb0qW/NsUGKfVrq0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="SQLiteOperate.dll" size="9216">
<assemblyIdentity name="SQLiteOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>hc26gawwCha1NZoBYEFNOMzJ6+8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="System.Data.SQLite.dll" size="327680">
<assemblyIdentity name="System.Data.SQLite" version="1.0.104.0" publicKeyToken="DB937BC2D44FF139" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>AeGWtvFdYLVEPmK3NQ3+D3JUlbg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WeifenLuo.WinFormsUI.Docking.dll" size="274944">
<assemblyIdentity name="WeifenLuo.WinFormsUI.Docking" version="2.9.0.0" publicKeyToken="5CDED1A1A0A7B481" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>VxzLurgmg6GK1dM5F/5Or4glF7o=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WinFormAnimation.dll" size="37376">
<assemblyIdentity name="WinFormAnimation" version="1.5.6298.3372" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>ssOhWVCYtL0esG6/ET6tfeWhBLk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WitiumControl.dll" size="8704">
<assemblyIdentity name="WitiumControl" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>EIUz07VVRJlHZGPwrkaFmNpyWH0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.dll" size="307200">
<assemblyIdentity name="ZedGraph" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>BMwQ/MmSgKzmPpgjmSJ/V+P2YN8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.resources.dll" size="4096">
<assemblyIdentity name="ZedGraph.resources" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="zh-cn" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>bQKr6gf6Dhkv28pRwAjAMBg08n4=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="GcDevicePc.exe.config" size="272">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>yYQDboj+4wlLXfetdaSNXvvK1Ic=</dsig:DigestValue>
</hash>
</file>
<file name="logo.ico" size="9662">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>jjOf/Lealaps+N45bcxNnCb6a1E=</dsig:DigestValue>
</hash>
</file>
</asmv1:assembly>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="GcDevicePc.application" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="GcDevicePc" asmv2:product="GcDevicePc" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="GcDevicePc.exe.manifest" size="11567">
<assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>uPChmCHU7HuIJatLezxEEJIA/9k=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
<runtime>
<legacyUnhandledExceptionPolicy enabled="true"/>
</runtime>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<description asmv2:iconFile="logo.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<commandLine file="GcDevicePc.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC 清单选项
如果要更改 Windows 用户帐户控制级别,请用以下节点之一替换
requestedExecutionLevel 节点。
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
如果要利用文件和注册表虚拟化提供
向后兼容性,请删除 requestedExecutionLevel 节点。
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CircularProgressBar.dll" size="16896">
<assemblyIdentity name="CircularProgressBar" version="2.5.6403.13419" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>E29Qt7szYd4bzl33U6SQAnxhHHU=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAlgorithm.dll" size="24064">
<assemblyIdentity name="CKVocAlgorithm" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>Q/hgUPdizcMsOTvwyoS4xY9yCFw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAnalyzer.dll" size="201216">
<assemblyIdentity name="CKVocAnalyzer" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>al/IVb030lM3p4gSPQ4VgRqO8nw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="GcDevicePc.exe" size="1626112">
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>KjAES0wOsUnDl9btrXmBeV+oFAY=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="LogOperate.dll" size="8192">
<assemblyIdentity name="LogOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>fr8oA0pkZeMQdFkyyj1tRwuS8uw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ModbusLib.dll" size="18432">
<assemblyIdentity name="ModbusLib" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>+PQh/NXCzOiGb0qW/NsUGKfVrq0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="SQLiteOperate.dll" size="9216">
<assemblyIdentity name="SQLiteOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>hc26gawwCha1NZoBYEFNOMzJ6+8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="System.Data.SQLite.dll" size="327680">
<assemblyIdentity name="System.Data.SQLite" version="1.0.104.0" publicKeyToken="DB937BC2D44FF139" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>AeGWtvFdYLVEPmK3NQ3+D3JUlbg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WeifenLuo.WinFormsUI.Docking.dll" size="274944">
<assemblyIdentity name="WeifenLuo.WinFormsUI.Docking" version="2.9.0.0" publicKeyToken="5CDED1A1A0A7B481" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>VxzLurgmg6GK1dM5F/5Or4glF7o=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WinFormAnimation.dll" size="37376">
<assemblyIdentity name="WinFormAnimation" version="1.5.6298.3372" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>ssOhWVCYtL0esG6/ET6tfeWhBLk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WitiumControl.dll" size="8704">
<assemblyIdentity name="WitiumControl" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>EIUz07VVRJlHZGPwrkaFmNpyWH0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.dll" size="307200">
<assemblyIdentity name="ZedGraph" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>BMwQ/MmSgKzmPpgjmSJ/V+P2YN8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.resources.dll" size="4096">
<assemblyIdentity name="ZedGraph.resources" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="zh-cn" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>bQKr6gf6Dhkv28pRwAjAMBg08n4=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="GcDevicePc.exe.config" size="272">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>yYQDboj+4wlLXfetdaSNXvvK1Ic=</dsig:DigestValue>
</hash>
</file>
<file name="logo.ico" size="9662">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>jjOf/Lealaps+N45bcxNnCb6a1E=</dsig:DigestValue>
</hash>
</file>
</asmv1:assembly>
\ No newline at end of file
【2018-02-27 09:08:45】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-02-27 09:08:45】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-02-27 09:08:48】System.TypeInitializationException: “System.Data.SQLite.UnsafeNativeMethods”的类型初始值设定项引发异常。 ---> System.AccessViolationException: 尝试读取或写入受保护的内存。这通常指示其他内存已损坏。
--- 内部异常堆栈跟踪的结尾 ---
在 System.Data.SQLite.UnsafeNativeMethods.Initialize()
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString, Boolean parseViaFramework)
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString)
在 SQLiteOperate.VOCSqlite.open() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 34
【2018-02-27 09:08:48】System.NullReferenceException: 未将对象引用设置到对象的实例。
在 SQLiteOperate.VOCSqlite.close() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 174
【2018-03-01 10:11:08】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-01 10:11:08】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-01 10:11:12】System.TypeInitializationException: “System.Data.SQLite.UnsafeNativeMethods”的类型初始值设定项引发异常。 ---> System.AccessViolationException: 尝试读取或写入受保护的内存。这通常指示其他内存已损坏。
--- 内部异常堆栈跟踪的结尾 ---
在 System.Data.SQLite.UnsafeNativeMethods.Initialize()
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString, Boolean parseViaFramework)
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString)
在 SQLiteOperate.VOCSqlite.open() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 34
【2018-03-01 10:11:12】System.NullReferenceException: 未将对象引用设置到对象的实例。
在 SQLiteOperate.VOCSqlite.close() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 174
【2018-03-01 10:49:17】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-01 10:49:17】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-01 10:49:18】System.TypeInitializationException: “System.Data.SQLite.UnsafeNativeMethods”的类型初始值设定项引发异常。 ---> System.AccessViolationException: 尝试读取或写入受保护的内存。这通常指示其他内存已损坏。
--- 内部异常堆栈跟踪的结尾 ---
在 System.Data.SQLite.UnsafeNativeMethods.Initialize()
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString, Boolean parseViaFramework)
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString)
在 SQLiteOperate.VOCSqlite.open() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 34
【2018-03-01 10:49:18】System.NullReferenceException: 未将对象引用设置到对象的实例。
在 SQLiteOperate.VOCSqlite.close() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 174
【2018-03-01 11:15:54】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-01 11:15:54】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-01 11:24:20】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-01 11:24:20】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-01 11:24:23】System.TypeInitializationException: “System.Data.SQLite.UnsafeNativeMethods”的类型初始值设定项引发异常。 ---> System.AccessViolationException: 尝试读取或写入受保护的内存。这通常指示其他内存已损坏。
--- 内部异常堆栈跟踪的结尾 ---
在 System.Data.SQLite.UnsafeNativeMethods.Initialize()
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString, Boolean parseViaFramework)
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString)
在 SQLiteOperate.VOCSqlite.open() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 34
【2018-03-01 11:24:23】System.NullReferenceException: 未将对象引用设置到对象的实例。
在 SQLiteOperate.VOCSqlite.close() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 174
【2018-03-01 11:31:08】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-01 11:31:08】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-01 11:31:13】System.TypeInitializationException: “System.Data.SQLite.UnsafeNativeMethods”的类型初始值设定项引发异常。 ---> System.AccessViolationException: 尝试读取或写入受保护的内存。这通常指示其他内存已损坏。
--- 内部异常堆栈跟踪的结尾 ---
在 System.Data.SQLite.UnsafeNativeMethods.Initialize()
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString, Boolean parseViaFramework)
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString)
在 SQLiteOperate.VOCSqlite.open() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 34
【2018-03-01 11:31:13】System.NullReferenceException: 未将对象引用设置到对象的实例。
在 SQLiteOperate.VOCSqlite.close() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 174
【2018-03-01 14:12:41】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-01 14:12:41】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-01 14:12:42】System.TypeInitializationException: “System.Data.SQLite.UnsafeNativeMethods”的类型初始值设定项引发异常。 ---> System.AccessViolationException: 尝试读取或写入受保护的内存。这通常指示其他内存已损坏。
--- 内部异常堆栈跟踪的结尾 ---
在 System.Data.SQLite.UnsafeNativeMethods.Initialize()
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString, Boolean parseViaFramework)
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString)
在 SQLiteOperate.VOCSqlite.open() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 34
【2018-03-01 14:12:42】System.NullReferenceException: 未将对象引用设置到对象的实例。
在 SQLiteOperate.VOCSqlite.close() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 174
【2018-03-12 10:50:03】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-12 10:50:04】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-12 10:50:51】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-12 10:50:52】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-12 10:55:49】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-12 10:55:49】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\资料\work\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-12 10:55:50】System.TypeInitializationException: “System.Data.SQLite.UnsafeNativeMethods”的类型初始值设定项引发异常。 ---> System.AccessViolationException: 尝试读取或写入受保护的内存。这通常指示其他内存已损坏。
--- 内部异常堆栈跟踪的结尾 ---
在 System.Data.SQLite.UnsafeNativeMethods.Initialize()
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString, Boolean parseViaFramework)
在 System.Data.SQLite.SQLiteConnection..ctor(String connectionString)
在 SQLiteOperate.VOCSqlite.open() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 34
【2018-03-12 10:55:50】System.NullReferenceException: 未将对象引用设置到对象的实例。
在 SQLiteOperate.VOCSqlite.close() 位置 e:\资料\work\gcdevicepc_NMOC\SQLiteOperate\VOCSqlite.cs:行号 174
【2018-03-13 22:29:07】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-13 22:29:07】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-13 22:30:10】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-13 22:30:10】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
【2018-03-13 22:31:40】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress)
在 System.Net.Sockets.Socket.Bind(EndPoint localEP)
在 System.Net.Sockets.TcpListener.Start(Int32 backlog)
在 System.Net.Sockets.TcpListener.Start()
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 51
【2018-03-13 22:31:40】System.Net.Sockets.SocketException (0x80004005): 在其上下文中,该请求的地址无效。
在 ModbusLib.TcpService.open(String add, Int32 port) 位置 e:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 64
在 ModbusLib.TcpService.tcpStart(String addr, Int32 intport) 位置 e:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\ModbusLib\TcpService.cs:行号 24
This source diff could not be displayed because it is too large. You can view the blob instead.
【2017-11-22 17:08:32.7770】,服务器开始启动:192.168.0.232:12345
【2017-11-22 17:08:32.7870】,系统初始化成功
【2017-11-22 17:09:06.6740】,服务器开始启动:192.168.0.232:12345
【2017-11-22 17:09:06.6840】,系统初始化成功
【2017-12-07 19:03:10.7801】,服务器开始启动:192.168.0.232:12345
【2017-12-07 19:03:10.7901】,系统初始化成功
【2017-12-07 19:03:43.7680】,服务器开始启动:192.168.0.232:12345
【2017-12-07 19:03:43.7780】,系统初始化成功
【2017-12-07 19:05:47.5550】,服务器开始启动:192.168.0.232:12345
【2017-12-07 19:05:47.5650】,系统初始化成功
【2017-12-07 19:22:08.1901】,服务器开始启动:192.168.0.232:12345
【2017-12-07 19:22:08.2001】,系统初始化成功
【2017-12-07 19:25:42.6844】,服务器开始启动:192.168.0.232:12345
【2017-12-07 19:25:42.6944】,系统初始化成功
【2017-12-07 19:27:55.8340】,服务器开始启动:192.168.0.232:12345
【2017-12-07 19:27:55.8440】,系统初始化成功
【2017-12-08 09:42:10.5857】,服务器开始启动:192.168.0.232:12345
【2017-12-08 09:42:10.5957】,系统初始化成功
【2017-12-08 14:37:41.7859】,服务器开始启动:192.168.0.232:12345
【2017-12-08 14:37:41.7959】,系统初始化成功
【2017-12-08 14:38:48.4087】,服务器开始启动:192.168.0.232:12345
【2017-12-08 14:38:48.4187】,系统初始化成功
【2017-12-08 14:41:26.8407】,服务器开始启动:192.168.0.232:12345
【2017-12-08 14:41:26.8507】,系统初始化成功
【2017-12-08 14:44:40.8078】,服务器开始启动:192.168.0.232:12345
【2017-12-08 14:44:40.8178】,系统初始化成功
【2017-12-08 14:48:52.0972】,服务器开始启动:192.168.0.232:12345
【2017-12-08 14:48:52.1072】,系统初始化成功
【2017-12-08 14:50:27.5837】,服务器开始启动:192.168.0.232:12345
【2017-12-08 14:50:27.5937】,系统初始化成功
【2017-12-08 14:56:10.6243】,服务器开始启动:192.168.0.232:12345
【2017-12-08 14:56:10.6343】,系统初始化成功
【2017-12-08 14:57:43.6896】,服务器开始启动:192.168.0.232:12345
【2017-12-08 14:57:43.6996】,系统初始化成功
【2017-12-08 15:00:27.7950】,服务器开始启动:192.168.0.232:12345
【2017-12-08 15:00:27.8050】,系统初始化成功
【2017-12-08 15:01:43.5153】,服务器开始启动:192.168.0.232:12345
【2017-12-08 15:01:43.5253】,系统初始化成功
【2017-12-08 15:07:38.7507】,服务器开始启动:192.168.0.232:12345
【2017-12-08 15:07:38.7617】,系统初始化成功
【2017-12-08 15:42:22.3058】,服务器开始启动:192.168.0.232:12345
【2017-12-08 15:42:22.3158】,系统初始化成功
【2017-12-08 15:57:09.8386】,服务器开始启动:192.168.0.232:12345
【2017-12-08 15:57:09.8486】,系统初始化成功
【2017-12-11 14:21:18.3536】,服务器开始启动:192.168.0.232:12345
【2017-12-11 14:21:18.3636】,系统初始化成功
【2017-12-11 15:13:09.3625】,服务器开始启动:192.168.0.232:12345
【2017-12-11 15:13:09.3735】,系统初始化成功
【2017-12-11 15:35:00.4575】,服务器开始启动:192.168.0.232:12345
【2017-12-11 15:35:00.4675】,系统初始化成功
【2017-12-11 15:38:59.1702】,服务器开始启动:192.168.0.232:12345
【2017-12-11 15:38:59.1802】,系统初始化成功
【2017-12-11 15:40:07.7121】,服务器开始启动:192.168.0.232:12345
【2017-12-11 15:40:07.7221】,系统初始化成功
【2017-12-11 17:16:53.5902】,服务器开始启动:192.168.0.232:12345
【2017-12-11 17:16:53.6002】,系统初始化成功
【2017-12-11 17:17:54.1956】,服务器开始启动:192.168.0.232:12345
【2017-12-11 17:17:54.2056】,系统初始化成功
【2017-12-11 17:19:30.1801】,服务器开始启动:192.168.0.232:12345
【2017-12-11 17:19:30.1901】,系统初始化成功
【2017-12-12 09:15:20.5481】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:15:20.5581】,系统初始化成功
【2017-12-12 09:21:18.5876】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:21:18.5976】,系统初始化成功
【2017-12-12 09:24:22.6791】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:24:22.6891】,系统初始化成功
【2017-12-12 09:28:27.2051】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:28:27.2151】,系统初始化成功
【2017-12-12 09:29:16.1309】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:29:16.1409】,系统初始化成功
【2017-12-12 09:29:52.5920】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:29:52.6020】,系统初始化成功
【2017-12-12 09:31:45.8484】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:31:45.8584】,系统初始化成功
【2017-12-12 09:34:07.0155】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:34:07.0255】,系统初始化成功
【2017-12-12 09:46:53.8054】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:46:53.8154】,系统初始化成功
【2017-12-12 09:47:32.2526】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:47:32.2626】,系统初始化成功
【2017-12-12 09:48:03.4333】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:48:03.4434】,系统初始化成功
【2017-12-12 09:48:35.7712】,系统初始化成功
【2017-12-12 09:48:48.8179】,系统初始化成功
【2017-12-12 09:49:59.3870】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:49:59.3970】,系统初始化成功
【2017-12-12 09:50:52.4700】,服务器开始启动:192.168.0.232:12345
【2017-12-12 09:50:52.4800】,系统初始化成功
【2017-12-12 10:11:33.5920】,服务器开始启动:192.168.0.232:12345
【2017-12-12 10:11:33.6020】,系统初始化成功
【2017-12-12 10:12:44.8101】,服务器开始启动:192.168.0.232:12345
【2017-12-12 10:12:44.8201】,系统初始化成功
【2017-12-12 13:33:12.1890】,服务器开始启动:192.168.0.232:12345
【2017-12-12 13:33:12.1990】,系统初始化成功
【2017-12-12 13:54:48.4561】,服务器开始启动:192.168.0.232:12345
【2017-12-12 13:54:48.4661】,系统初始化成功
【2017-12-12 14:15:41.8428】,服务器开始启动:192.168.0.232:12345
【2017-12-12 14:15:41.8528】,系统初始化成功
【2017-12-12 14:25:23.0021】,服务器开始启动:192.168.0.232:12345
【2017-12-12 14:25:23.0121】,系统初始化成功
【2017-12-12 14:27:05.9570】,服务器开始启动:192.168.0.232:12345
【2017-12-12 14:27:05.9670】,系统初始化成功
【2017-12-12 15:55:46.8753】,服务器开始启动:192.168.0.232:12345
【2017-12-12 15:55:46.8853】,系统初始化成功
【2017-12-12 16:02:57.3439】,服务器开始启动:192.168.0.232:12345
【2017-12-12 16:02:57.3539】,系统初始化成功
【2017-12-12 17:15:26.9357】,服务器开始启动:192.168.0.232:12345
【2017-12-12 17:15:26.9457】,系统初始化成功
【2017-12-12 19:44:32.9874】,服务器开始启动:192.168.0.232:12345
【2017-12-12 19:44:32.9974】,系统初始化成功
【2017-12-13 09:04:57.3054】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:04:57.3154】,系统初始化成功
【2017-12-13 09:07:12.2421】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:07:12.2521】,系统初始化成功
【2017-12-13 09:08:21.3690】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:08:21.3790】,系统初始化成功
【2017-12-13 09:35:22.8048】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:35:22.8148】,系统初始化成功
【2017-12-13 09:36:42.4893】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:36:42.4993】,系统初始化成功
【2017-12-13 09:38:30.2285】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:38:30.2385】,系统初始化成功
【2017-12-13 09:39:27.7218】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:39:27.7318】,系统初始化成功
【2017-12-13 09:42:56.5497】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:42:56.5597】,系统初始化成功
【2017-12-13 09:53:43.8955】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:54:21.5896】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:54:21.5996】,系统初始化成功
【2017-12-13 09:56:19.3874】,服务器开始启动:192.168.0.232:12345
【2017-12-13 09:56:19.3974】,系统初始化成功
【2017-12-13 10:05:51.2941】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:05:51.3041】,系统初始化成功
【2017-12-13 10:11:54.3009】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:11:54.3109】,系统初始化成功
【2017-12-13 10:19:34.4962】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:19:34.5062】,系统初始化成功
【2017-12-13 10:22:10.9541】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:22:10.9641】,系统初始化成功
【2017-12-13 10:34:31.9255】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:34:31.9355】,系统初始化成功
【2017-12-13 10:37:55.1301】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:37:55.1401】,系统初始化成功
【2017-12-13 10:38:41.4408】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:38:41.4508】,系统初始化成功
【2017-12-13 10:39:59.2762】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:39:59.2862】,系统初始化成功
【2017-12-13 10:43:14.4644】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:43:14.4744】,系统初始化成功
【2017-12-13 10:44:38.6322】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:44:38.6422】,系统初始化成功
【2017-12-13 10:47:09.7769】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:47:09.7869】,系统初始化成功
【2017-12-13 10:53:35.7879】,服务器开始启动:192.168.0.232:12345
【2017-12-13 10:53:35.7979】,系统初始化成功
【2017-12-13 11:08:20.3655】,服务器开始启动:192.168.0.232:12345
【2017-12-13 11:08:20.3755】,系统初始化成功
【2017-12-13 11:09:58.3541】,服务器开始启动:192.168.0.232:12345
【2017-12-13 11:09:58.3641】,系统初始化成功
【2017-12-13 11:16:02.2259】,服务器开始启动:192.168.0.232:12345
【2017-12-13 11:16:02.2359】,系统初始化成功
【2017-12-13 11:23:54.8310】,服务器开始启动:192.168.0.232:12345
【2017-12-13 11:23:54.8410】,系统初始化成功
【2017-12-13 11:32:21.9850】,服务器开始启动:192.168.0.232:12345
【2017-12-13 11:32:21.9950】,系统初始化成功
【2017-12-13 11:32:59.5771】,服务器开始启动:192.168.0.232:12345
【2017-12-13 11:32:59.5871】,系统初始化成功
【2017-12-13 14:31:24.3174】,服务器开始启动:192.168.0.232:12345
【2017-12-13 14:31:24.3274】,系统初始化成功
【2017-12-13 14:32:06.7968】,服务器开始启动:192.168.0.232:12345
【2017-12-13 14:32:06.8068】,系统初始化成功
【2017-12-13 14:32:36.2295】,服务器开始启动:192.168.0.232:12345
【2017-12-13 14:32:36.2395】,系统初始化成功
【2017-12-14 09:17:08.9005】,服务器开始启动:192.168.0.232:12345
【2017-12-14 09:17:08.9105】,系统初始化成功
【2017-12-14 09:20:40.6006】,服务器开始启动:192.168.0.232:12345
【2017-12-14 09:20:40.6106】,系统初始化成功
【2017-12-14 09:24:26.3235】,服务器开始启动:192.168.0.232:12345
【2017-12-14 09:24:26.3335】,系统初始化成功
【2017-12-18 10:08:06.2313】,服务器开始启动:192.168.0.232:12345
【2017-12-18 10:08:06.2413】,系统初始化成功
【2017-12-18 10:18:42.2006】,服务器开始启动:192.168.0.232:12345
【2017-12-18 10:18:42.2106】,系统初始化成功
【2017-12-18 10:20:59.0715】,服务器开始启动:192.168.0.232:12345
【2017-12-18 10:20:59.0815】,系统初始化成功
【2017-12-21 09:55:00.5146】,服务器开始启动:192.168.0.232:12345
【2017-12-21 09:55:00.5246】,系统初始化成功
【2017-12-21 10:00:05.0400】,服务器开始启动:192.168.0.232:12345
【2017-12-21 10:00:05.0500】,系统初始化成功
【2017-12-21 10:40:57.4413】,服务器开始启动:192.168.0.232:12345
【2017-12-21 10:40:57.4513】,系统初始化成功
【2017-12-21 11:19:13.9987】,服务器开始启动:192.168.0.232:12345
【2017-12-21 11:19:14.0087】,系统初始化成功
【2018-01-03 10:15:40.2772】,服务器开始启动:192.168.0.232:12345
【2018-01-03 10:15:40.2872】,系统初始化成功
【2018-01-03 10:16:56.8776】,服务器开始启动:192.168.0.232:12345
【2018-01-03 10:20:46.9557】,服务器开始启动:192.168.0.232:12345
【2018-01-03 10:20:46.9657】,系统初始化成功
【2018-02-27 09:08:45.7167】,服务器开始启动:192.168.0.232:12345
【2018-02-27 09:08:45.7267】,系统初始化成功
【2018-03-01 10:11:08.9986】,服务器开始启动:192.168.0.232:12345
【2018-03-01 10:11:09.0086】,系统初始化成功
【2018-03-01 10:49:17.0995】,服务器开始启动:192.168.0.232:12345
【2018-03-01 10:49:17.1105】,系统初始化成功
【2018-03-01 11:15:54.5438】,服务器开始启动:192.168.0.232:12345
【2018-03-01 11:15:54.5538】,系统初始化成功
【2018-03-01 11:24:20.3728】,服务器开始启动:192.168.0.232:12345
【2018-03-01 11:24:20.3828】,系统初始化成功
【2018-03-01 11:31:08.8221】,服务器开始启动:192.168.0.232:12345
【2018-03-01 11:31:08.8321】,系统初始化成功
【2018-03-01 14:12:42.0196】,服务器开始启动:192.168.0.232:12345
【2018-03-01 14:12:42.0296】,系统初始化成功
【2018-03-12 10:50:04.0919】,服务器开始启动:192.168.0.232:12345
【2018-03-12 10:50:04.1019】,系统初始化成功
【2018-03-12 10:50:52.0767】,服务器开始启动:192.168.0.232:12345
【2018-03-12 10:50:52.0867】,系统初始化成功
【2018-03-12 10:55:49.6087】,服务器开始启动:192.168.0.232:12345
【2018-03-12 10:55:49.6187】,系统初始化成功
【2018-03-13 22:29:07.1320】,服务器开始启动:127.0.0.1:12345
【2018-03-13 22:29:07.1428】,系统初始化成功
【2018-03-13 22:30:10.1233】,服务器开始启动:127.0.0.1:12345
【2018-03-13 22:30:10.1343】,系统初始化成功
【2018-03-13 22:31:40.2639】,服务器开始启动:127.0.0.1:12345
【2018-03-13 22:31:40.2749】,系统初始化成功
This source diff could not be displayed because it is too large. You can view the blob instead.
Binary files "a/GcDevicePc/bin/Release/\350\277\220\350\241\214\350\241\250/RunMethod.ini" and /dev/null differ Binary files "a/GcDevicePc/bin/Release/\350\277\220\350\241\214\350\241\250/RunMethod.ini" and /dev/null differ
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="GcDevicePc.application" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Microsoft" asmv2:product="GcDevicePc" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="GcDevicePc.exe.manifest" size="14106">
<assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>YXEN9XbYpaC6cQNlxnvNmm1umjE=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
<runtime>
<legacyUnhandledExceptionPolicy enabled="true"/>
</runtime>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<description asmv2:iconFile="logo.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<commandLine file="GcDevicePc.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC 清单选项
如果要更改 Windows 用户帐户控制级别,请用以下节点之一替换
requestedExecutionLevel 节点。
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
如果要利用文件和注册表虚拟化提供
向后兼容性,请删除 requestedExecutionLevel 节点。
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="EnvDTE" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.MSXML" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" processorArchitecture="msil" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.OLE.Interop" version="7.1.40304.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.ProjectAggregator" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" processorArchitecture="msil" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.Shell" version="2.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" processorArchitecture="msil" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.Shell.Interop" version="7.1.40304.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.Shell.Interop.8.0" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.TextManager.Interop" version="7.1.40304.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.TextManager.Interop.8.0" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.VSHelp" version="7.0.3300.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="stdole" version="7.0.3300.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAlgorithm.dll" size="24064">
<assemblyIdentity name="CKVocAlgorithm" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>Q/hgUPdizcMsOTvwyoS4xY9yCFw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAnalyzer.dll" size="201216">
<assemblyIdentity name="CKVocAnalyzer" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>LCv5Hn6WJghA1du0BvygdqyOf7U=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="GcDevicePc.exe" size="1653248">
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>vnOScswEPX/os7zY0KBFuPwaHtg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="LogOperate.dll" size="8192">
<assemblyIdentity name="LogOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>fr8oA0pkZeMQdFkyyj1tRwuS8uw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ModbusLib.dll" size="18432">
<assemblyIdentity name="ModbusLib" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>+PQh/NXCzOiGb0qW/NsUGKfVrq0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="SQLite.Designer.dll" size="192512">
<assemblyIdentity name="SQLite.Designer" version="1.0.104.0" publicKeyToken="DB937BC2D44FF139" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>QJFv/sgpXpCBwWbWh/5gqmDFNjo=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="SQLiteOperate.dll" size="9216">
<assemblyIdentity name="SQLiteOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>hc26gawwCha1NZoBYEFNOMzJ6+8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="System.Data.SQLite.dll" size="327680">
<assemblyIdentity name="System.Data.SQLite" version="1.0.104.0" publicKeyToken="DB937BC2D44FF139" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>AeGWtvFdYLVEPmK3NQ3+D3JUlbg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WeifenLuo.WinFormsUI.Docking.dll" size="274944">
<assemblyIdentity name="WeifenLuo.WinFormsUI.Docking" version="2.9.0.0" publicKeyToken="5CDED1A1A0A7B481" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>VxzLurgmg6GK1dM5F/5Or4glF7o=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WitiumControl.dll" size="8704">
<assemblyIdentity name="WitiumControl" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>EIUz07VVRJlHZGPwrkaFmNpyWH0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.dll" size="307200">
<assemblyIdentity name="ZedGraph" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>BMwQ/MmSgKzmPpgjmSJ/V+P2YN8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.resources.dll" size="4096">
<assemblyIdentity name="ZedGraph.resources" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="zh-cn" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>bQKr6gf6Dhkv28pRwAjAMBg08n4=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="GcDevicePc.exe.config" size="272">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>yYQDboj+4wlLXfetdaSNXvvK1Ic=</dsig:DigestValue>
</hash>
</file>
<file name="logo.ico" size="9662">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>jjOf/Lealaps+N45bcxNnCb6a1E=</dsig:DigestValue>
</hash>
</file>
</asmv1:assembly>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
<runtime>
<legacyUnhandledExceptionPolicy enabled="true"/>
</runtime>
</configuration>
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="GcDevicePc.application" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Microsoft" asmv2:product="GcDevicePc" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="GcDevicePc.exe.manifest" size="14106">
<assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>YXEN9XbYpaC6cQNlxnvNmm1umjE=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>
\ No newline at end of file
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\x86\Debug\GcDevicePc.exe.config
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\x86\Debug\GcDevicePc.exe.config
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.csprojResolveAssemblyReference.cache
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.auxtool.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.AdjustFrom.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.HistChartForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.CK_UI.UserCtl.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.WaveTotalForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.AuxDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.ChromeDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.Det.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.FIDDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.InjPortDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.InjSample.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.InjValveDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.InjValveDlg2.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.MethodBase.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.RealColDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.RunTableDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.SignalDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.TabContorlEx.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.TCDDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigInfo.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.Controls.GCTitle.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.Controls.HMIStatus.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.Controls.PictureMenu.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.CreateConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.CurveDisPlay.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.DataState.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.Formdebug.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.FormUser.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.GCMain.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.GCTitle.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.InstrConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ListViewTest.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.MainBase.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.MainForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.MethodConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.MDIBase.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.MethodNameInputForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.Properties.Resources.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.QuitForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.RunTables.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.SaveAsWin.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.SaveCfg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.SearchDevices.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.SendConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ShowConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.ShowMList.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.StartForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.StartWin.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.Test.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.UpdateTest.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.UserConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.WaitForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.csproj.GenerateResource.Cache
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Debug\GcDevicePc.CK_UI.LandIn.resources
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\GcDevicePc.exe.config
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.auxtool.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.AdjustFrom.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.HistChartForm.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.CK_UI.InfoBarUser.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.CK_UI.LandIn.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.CK_UI.UserCtl.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.WaveTotalForm.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.AuxDlg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.ChromeDlg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.Det.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.FIDDlg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.InjPortDlg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.InjSample.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.InjValveDlg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.InjValveDlg2.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.MethodBase.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.RealColDlg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.RunTableDlg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.SignalDlg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.TabContorlEx.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigDlg.TCDDlg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ConfigInfo.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.Controls.GCTitle.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.Controls.HMIStatus.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.Controls.PictureMenu.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.CreateConfig.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.CurveDisPlay.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.DataState.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.Formdebug.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.FormUser.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.GCMain.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.GCTitle.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.InstrConfig.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ListViewTest.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.MainBase.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.MainForm.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.MethodConfig.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.MDIBase.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.MethodNameInputForm.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.Properties.Resources.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.QuitForm.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.RunTables.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.SaveAsWin.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.SaveCfg.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.SearchDevices.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.SendConfig.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ShowConfig.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.ShowMList.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.StartForm.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.StartWin.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.Test.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.UpdateTest.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.UserConfig.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.WaitForm.resources
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.csproj.GenerateResource.Cache
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\GcDevicePc.exe.manifest
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\GcDevicePc.application
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\GcDevicePc.exe
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\GcDevicePc.pdb
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\CKVocAlgorithm.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\CKVocAnalyzer.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\LogOperate.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\ModbusLib.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\SQLite.Designer.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\SQLiteOperate.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\WeifenLuo.WinFormsUI.Docking.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\WitiumControl.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\ZedGraph.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\ZedGraph.resources.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\System.Data.SQLite.dll
H:\GIT\3-15\GcDevicePc\bin\x86\Debug\ZedGraph.xml
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.exe.manifest
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.application
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.exe
H:\GIT\3-15\GcDevicePc\obj\x86\Debug\GcDevicePc.pdb
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<description asmv2:iconFile="logo.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<commandLine file="GcDevicePc.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC 清单选项
如果要更改 Windows 用户帐户控制级别,请用以下节点之一替换
requestedExecutionLevel 节点。
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
如果要利用文件和注册表虚拟化提供
向后兼容性,请删除 requestedExecutionLevel 节点。
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="EnvDTE" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.MSXML" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" processorArchitecture="msil" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.OLE.Interop" version="7.1.40304.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.ProjectAggregator" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" processorArchitecture="msil" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.Shell" version="2.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" processorArchitecture="msil" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.Shell.Interop" version="7.1.40304.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.Shell.Interop.8.0" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.TextManager.Interop" version="7.1.40304.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.TextManager.Interop.8.0" version="8.0.0.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.VisualStudio.VSHelp" version="7.0.3300.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="stdole" version="7.0.3300.0" publicKeyToken="B03F5F7F11D50A3A" language="neutral" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAlgorithm.dll" size="24064">
<assemblyIdentity name="CKVocAlgorithm" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>Q/hgUPdizcMsOTvwyoS4xY9yCFw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAnalyzer.dll" size="201216">
<assemblyIdentity name="CKVocAnalyzer" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>LCv5Hn6WJghA1du0BvygdqyOf7U=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="GcDevicePc.exe" size="1653248">
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>vnOScswEPX/os7zY0KBFuPwaHtg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="LogOperate.dll" size="8192">
<assemblyIdentity name="LogOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>fr8oA0pkZeMQdFkyyj1tRwuS8uw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ModbusLib.dll" size="18432">
<assemblyIdentity name="ModbusLib" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>+PQh/NXCzOiGb0qW/NsUGKfVrq0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="SQLite.Designer.dll" size="192512">
<assemblyIdentity name="SQLite.Designer" version="1.0.104.0" publicKeyToken="DB937BC2D44FF139" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>QJFv/sgpXpCBwWbWh/5gqmDFNjo=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="SQLiteOperate.dll" size="9216">
<assemblyIdentity name="SQLiteOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>hc26gawwCha1NZoBYEFNOMzJ6+8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="System.Data.SQLite.dll" size="327680">
<assemblyIdentity name="System.Data.SQLite" version="1.0.104.0" publicKeyToken="DB937BC2D44FF139" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>AeGWtvFdYLVEPmK3NQ3+D3JUlbg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WeifenLuo.WinFormsUI.Docking.dll" size="274944">
<assemblyIdentity name="WeifenLuo.WinFormsUI.Docking" version="2.9.0.0" publicKeyToken="5CDED1A1A0A7B481" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>VxzLurgmg6GK1dM5F/5Or4glF7o=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WitiumControl.dll" size="8704">
<assemblyIdentity name="WitiumControl" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>EIUz07VVRJlHZGPwrkaFmNpyWH0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.dll" size="307200">
<assemblyIdentity name="ZedGraph" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>BMwQ/MmSgKzmPpgjmSJ/V+P2YN8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.resources.dll" size="4096">
<assemblyIdentity name="ZedGraph.resources" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="zh-cn" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>bQKr6gf6Dhkv28pRwAjAMBg08n4=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="GcDevicePc.exe.config" size="272">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>yYQDboj+4wlLXfetdaSNXvvK1Ic=</dsig:DigestValue>
</hash>
</file>
<file name="logo.ico" size="9662">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>jjOf/Lealaps+N45bcxNnCb6a1E=</dsig:DigestValue>
</hash>
</file>
</asmv1:assembly>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="GcDevicePc.application" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="Microsoft" asmv2:product="GcDevicePc" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
<framework targetVersion="4.0" profile="Full" supportedRuntime="4.0.30319" />
</compatibleFrameworks>
<dependency>
<dependentAssembly dependencyType="install" codebase="GcDevicePc.exe.manifest" size="11567">
<assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>mxsnqo2a0FuIMs15E1Td8oyGWXI=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>
\ No newline at end of file
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.exe.config
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.exe.manifest
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.application
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.exe
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.pdb
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\CKVocAlgorithm.dll
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\CKVocAnalyzer.dll
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\LogOperate.dll
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\ModbusLib.dll
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\SQLiteOperate.dll
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\WeifenLuo.WinFormsUI.Docking.dll
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\WitiumControl.dll
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\bin\Release\System.Data.SQLite.dll
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.auxtool.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.AdjustFrom.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.HistChartForm.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.WaveTotalForm.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.AuxDlg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.ChromeDlg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.Det.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.FIDDlg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjPortDlg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.InjSample.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg2.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.MethodBase.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RealColDlg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RunTableDlg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.SignalDlg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TabContorlEx.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TCDDlg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigInfo.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.GCTitle.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.HMIStatus.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.PictureMenu.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.CreateConfig.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.CurveDisPlay.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.DataState.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.GCMain.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.GCTitle.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.InstrConfig.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ListViewTest.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.MainBase.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.MainForm.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.MethodConfig.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.MethodNameInputForm.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Properties.Resources.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.QuitForm.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.RunTables.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.SaveAsWin.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.SaveCfg.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.SearchDevices.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.SendConfig.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ShowConfig.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ShowMList.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.StartForm.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.StartWin.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Test.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.UpdateTest.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.UserConfig.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.WaitForm.resources
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.csproj.GenerateResource.Cache
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.exe.manifest
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.application
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.exe
H:\GIT\GcDevicePC_9.20\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.pdb
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.exe.config
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.exe
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.pdb
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.exe.manifest
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.application
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.exe
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\GcDevicePc.pdb
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\CKVocAlgorithm.dll
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\CKVocAnalyzer.dll
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\LogOperate.dll
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\ModbusLib.dll
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\SQLiteOperate.dll
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\System.Data.SQLite.dll
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.auxtool.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.AdjustFrom.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.HistChartForm.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.WaveTotalForm.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.AuxDlg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.ChromeDlg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.Det.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.FIDDlg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjPortDlg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.InjSample.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg2.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.MethodBase.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RealColDlg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RunTableDlg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.SignalDlg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TabContorlEx.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TCDDlg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigInfo.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.GCTitle.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.HMIStatus.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.PictureMenu.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.CreateConfig.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.CurveDisPlay.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.DataState.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.FormUser.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.GCMain.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.GCTitle.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.InstrConfig.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ListViewTest.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.MainBase.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.MainForm.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.MethodConfig.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.MDIBase.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.MethodNameInputForm.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Properties.Resources.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.QuitForm.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.RunTables.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.SaveAsWin.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.SaveCfg.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.SearchDevices.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.SendConfig.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ShowConfig.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.ShowMList.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.StartForm.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.StartWin.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Test.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.UpdateTest.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.UserConfig.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.WaitForm.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.csproj.GenerateResource.Cache
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.exe.manifest
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.application
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.Formdebug.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\ZedGraph.dll
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\ZedGraph.resources.dll
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\bin\Release\ZedGraph.xml
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.UserCtl.resources
H:\GIT\NMOC\GcDevicePC_9.20 - 12-7\GcDevicePc\GcDevicePc\obj\x86\Release\GcDevicePc.csprojResolveAssemblyReference.cache
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.exe.config
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.exe.manifest
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.application
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.exe
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.pdb
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAlgorithm.dll
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAnalyzer.dll
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\LogOperate.dll
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\ModbusLib.dll
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\SQLiteOperate.dll
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\System.Data.SQLite.dll
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAlgorithm.pdb
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAnalyzer.pdb
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\LogOperate.pdb
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\ModbusLib.pdb
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\SQLiteOperate.pdb
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.csprojResolveAssemblyReference.cache
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.auxtool.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.AdjustFrom.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.HistChartForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.LandIn.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.UserCtl.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.WaveTotalForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.AuxDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.ChromeDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.Det.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.FIDDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjPortDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.InjSample.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg2.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.MethodBase.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RealColDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RunTableDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.SignalDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TabContorlEx.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TCDDlg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigInfo.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.GCTitle.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.HMIStatus.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.PictureMenu.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CreateConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CurveDisPlay.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.DataState.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Formdebug.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.FormUser.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.GCMain.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.GCTitle.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.InstrConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ListViewTest.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MainBase.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MainForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MethodConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MDIBase.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MethodNameInputForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Properties.Resources.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.QuitForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.RunTables.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SaveAsWin.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SaveCfg.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SearchDevices.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SendConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ShowConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ShowMList.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.StartForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.StartWin.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Test.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.UpdateTest.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.UserConfig.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.WaitForm.resources
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.csproj.GenerateResource.Cache
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.exe.manifest
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.application
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.exe
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.pdb
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\CircularProgressBar.dll
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\WinFormAnimation.dll
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\CircularProgressBar.xml
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\bin\Release\WinFormAnimation.xml
E:\资料\work\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.InfoBarUser.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.exe.config
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.exe.manifest
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.application
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.exe
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.pdb
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\CircularProgressBar.dll
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAlgorithm.dll
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAnalyzer.dll
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\LogOperate.dll
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\ModbusLib.dll
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\SQLiteOperate.dll
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\WinFormAnimation.dll
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\System.Data.SQLite.dll
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAlgorithm.pdb
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAnalyzer.pdb
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\LogOperate.pdb
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\ModbusLib.pdb
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\SQLiteOperate.pdb
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\CircularProgressBar.xml
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\bin\Release\WinFormAnimation.xml
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.csprojResolveAssemblyReference.cache
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.auxtool.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.AdjustFrom.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.HistChartForm.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.InfoBarUser.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.LandIn.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.UserCtl.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.WaveTotalForm.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.AuxDlg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.ChromeDlg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.Det.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.FIDDlg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjPortDlg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.InjSample.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg2.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.MethodBase.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RealColDlg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RunTableDlg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.SignalDlg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TabContorlEx.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TCDDlg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigInfo.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.GCTitle.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.HMIStatus.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.PictureMenu.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CreateConfig.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CurveDisPlay.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.DataState.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Formdebug.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.FormUser.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.GCMain.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.GCTitle.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.InstrConfig.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ListViewTest.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MainBase.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MainForm.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MethodConfig.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MDIBase.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MethodNameInputForm.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Properties.Resources.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.QuitForm.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.RunTables.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SaveAsWin.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SaveCfg.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SearchDevices.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SendConfig.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ShowConfig.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ShowMList.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.StartForm.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.StartWin.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Test.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.UpdateTest.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.UserConfig.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.WaitForm.resources
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.csproj.GenerateResource.Cache
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.exe.manifest
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.application
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.exe
E:\gcdevicepc_NMOC3-13\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.pdb
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.exe.config
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.exe.manifest
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.application
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.exe
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\GcDevicePc.pdb
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\CircularProgressBar.dll
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAlgorithm.dll
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAnalyzer.dll
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\LogOperate.dll
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\ModbusLib.dll
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\SQLiteOperate.dll
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\WinFormAnimation.dll
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\System.Data.SQLite.dll
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAlgorithm.pdb
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\CKVocAnalyzer.pdb
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\LogOperate.pdb
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\ModbusLib.pdb
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\SQLiteOperate.pdb
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\CircularProgressBar.xml
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\bin\Release\WinFormAnimation.xml
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.csprojResolveAssemblyReference.cache
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.auxtool.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.AdjustFrom.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.HistChartForm.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.InfoBarUser.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.LandIn.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CK_UI.UserCtl.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.WaveTotalForm.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.AuxDlg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.ChromeDlg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.Det.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.FIDDlg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjPortDlg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.InjSample.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.InjValveDlg2.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.MethodBase.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RealColDlg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.RunTableDlg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.SignalDlg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TabContorlEx.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigDlg.TCDDlg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ConfigInfo.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.GCTitle.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.HMIStatus.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Controls.PictureMenu.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CreateConfig.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.CurveDisPlay.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.DataState.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Formdebug.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.FormUser.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.GCMain.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.GCTitle.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.InstrConfig.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ListViewTest.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MainBase.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MainForm.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MethodConfig.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MDIBase.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.MethodNameInputForm.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Properties.Resources.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.QuitForm.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.RunTables.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SaveAsWin.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SaveCfg.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SearchDevices.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.SendConfig.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ShowConfig.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.ShowMList.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.StartForm.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.StartWin.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.Test.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.UpdateTest.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.UserConfig.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.WaitForm.resources
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.csproj.GenerateResource.Cache
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.exe.manifest
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.application
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.exe
E:\资料\work\vocs\gcdevicepc_NMOC3-15\gcdevicepc_NMOC\GcDevicePc\obj\x86\Release\GcDevicePc.pdb
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<asmv1:assemblyIdentity name="GcDevicePc.exe" version="1.0.1.2" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<description asmv2:iconFile="logo.ico" xmlns="urn:schemas-microsoft-com:asm.v1" />
<application />
<entryPoint>
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<commandLine file="GcDevicePc.exe" parameters="" />
</entryPoint>
<trustInfo>
<security>
<applicationRequestMinimum>
<PermissionSet Unrestricted="true" ID="Custom" SameSite="site" />
<defaultAssemblyRequest permissionSetReference="Custom" />
</applicationRequestMinimum>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<!--
UAC 清单选项
如果要更改 Windows 用户帐户控制级别,请用以下节点之一替换
requestedExecutionLevel 节点。
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
如果要利用文件和注册表虚拟化提供
向后兼容性,请删除 requestedExecutionLevel 节点。
-->
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
</requestedPrivileges>
</security>
</trustInfo>
<dependency>
<dependentOS>
<osVersionInfo>
<os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" />
</osVersionInfo>
</dependentOS>
</dependency>
<dependency>
<dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true">
<assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" />
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CircularProgressBar.dll" size="16896">
<assemblyIdentity name="CircularProgressBar" version="2.5.6403.13419" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>E29Qt7szYd4bzl33U6SQAnxhHHU=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAlgorithm.dll" size="24064">
<assemblyIdentity name="CKVocAlgorithm" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>Q/hgUPdizcMsOTvwyoS4xY9yCFw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="CKVocAnalyzer.dll" size="201216">
<assemblyIdentity name="CKVocAnalyzer" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>LCv5Hn6WJghA1du0BvygdqyOf7U=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="GcDevicePc.exe" size="1627136">
<assemblyIdentity name="GcDevicePc" version="1.0.0.1" language="neutral" processorArchitecture="x86" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>4d6VRo+bWHA+PlSOPICJ/BlS9AA=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="LogOperate.dll" size="8192">
<assemblyIdentity name="LogOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>fr8oA0pkZeMQdFkyyj1tRwuS8uw=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ModbusLib.dll" size="18432">
<assemblyIdentity name="ModbusLib" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>+PQh/NXCzOiGb0qW/NsUGKfVrq0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="SQLiteOperate.dll" size="9216">
<assemblyIdentity name="SQLiteOperate" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>hc26gawwCha1NZoBYEFNOMzJ6+8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="System.Data.SQLite.dll" size="327680">
<assemblyIdentity name="System.Data.SQLite" version="1.0.104.0" publicKeyToken="DB937BC2D44FF139" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>AeGWtvFdYLVEPmK3NQ3+D3JUlbg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WeifenLuo.WinFormsUI.Docking.dll" size="274944">
<assemblyIdentity name="WeifenLuo.WinFormsUI.Docking" version="2.9.0.0" publicKeyToken="5CDED1A1A0A7B481" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>VxzLurgmg6GK1dM5F/5Or4glF7o=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WinFormAnimation.dll" size="37376">
<assemblyIdentity name="WinFormAnimation" version="1.5.6298.3372" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>ssOhWVCYtL0esG6/ET6tfeWhBLk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="WitiumControl.dll" size="8704">
<assemblyIdentity name="WitiumControl" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>EIUz07VVRJlHZGPwrkaFmNpyWH0=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.dll" size="307200">
<assemblyIdentity name="ZedGraph" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="neutral" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>BMwQ/MmSgKzmPpgjmSJ/V+P2YN8=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ZedGraph.resources.dll" size="4096">
<assemblyIdentity name="ZedGraph.resources" version="5.1.5.28844" publicKeyToken="02A83CBD123FCD60" language="zh-cn" processorArchitecture="msil" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>bQKr6gf6Dhkv28pRwAjAMBg08n4=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
<file name="GcDevicePc.exe.config" size="272">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>yYQDboj+4wlLXfetdaSNXvvK1Ic=</dsig:DigestValue>
</hash>
</file>
<file name="logo.ico" size="9662">
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>jjOf/Lealaps+N45bcxNnCb6a1E=</dsig:DigestValue>
</hash>
</file>
</asmv1:assembly>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment