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;
} }
...@@ -115,9 +115,16 @@ namespace GcDevicePc.ConfigDlg ...@@ -115,9 +115,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);
}
if (aidheatset2.Text != "")
{
CProfileDevice.m_DevParam.aux.fSetTemp_HeatArea2 = float.Parse(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,20 +28,34 @@ namespace GcDevicePc ...@@ -28,20 +28,34 @@ 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()
{
try
{ {
fnWtClientClose(this.hFileServerHandle); fnWtClientClose(this.hFileServerHandle);
} }
catch
{
}
}
public void WtClientInit(String RemoteIP, ushort wport) public void WtClientInit(String RemoteIP, ushort wport)
{
try
{ {
byte[] fIP = Encoding.Unicode.GetBytes(RemoteIP); byte[] fIP = Encoding.Unicode.GetBytes(RemoteIP);
this.hFileServerHandle = fnWtClientInit(fIP, wport); 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>
This diff is collapsed.
<?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>
This diff is collapsed.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
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>
This diff is collapsed.
<?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 diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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