zs
2024-11-21 b3dcb81d8ad46322740e5d6f71765c66ed99add8
修改为注册表启动
已修改13个文件
82 ■■■■ 文件已修改
.vs/DataCapture_MA/v17/.suo 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/DataCapture_MA.csproj 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/Form1.cs 44 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/bin/Debug/DataCapture_MA.application 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/bin/Debug/DataCapture_MA.exe 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/bin/Debug/DataCapture_MA.exe.manifest 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/bin/Debug/DataCapture_MA.pdb 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/bin/Debug/app.publish/DataCapture_MA.application 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/bin/Debug/app.publish/DataCapture_MA.exe 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/obj/Debug/DataCapture_MA.application 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/obj/Debug/DataCapture_MA.exe 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/obj/Debug/DataCapture_MA.exe.manifest 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
DataCapture_MA/obj/Debug/DataCapture_MA.pdb 补丁 | 查看 | 原始文档 | blame | 历史
.vs/DataCapture_MA/v17/.suo
Binary files differ
DataCapture_MA/DataCapture_MA.csproj
@@ -17,7 +17,7 @@
    <NuGetPackageImportStamp>
    </NuGetPackageImportStamp>
    <IsWebBootstrapper>false</IsWebBootstrapper>
    <PublishUrl>C:\Users\13650\Desktop\DataCapture\</PublishUrl>
    <PublishUrl>C:\Users\13650\Desktop\MA_Capture\</PublishUrl>
    <Install>true</Install>
    <InstallFrom>Disk</InstallFrom>
    <UpdateEnabled>false</UpdateEnabled>
@@ -27,7 +27,7 @@
    <UpdatePeriodically>false</UpdatePeriodically>
    <UpdateRequired>false</UpdateRequired>
    <MapFileExtensions>true</MapFileExtensions>
    <ApplicationRevision>5</ApplicationRevision>
    <ApplicationRevision>7</ApplicationRevision>
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    <UseApplicationTrust>false</UseApplicationTrust>
    <PublishWizardCompleted>true</PublishWizardCompleted>
DataCapture_MA/Form1.cs
@@ -17,6 +17,7 @@
using DataCapture_MA.AutoMapperConfig;
using System.IO;
using IWshRuntimeLibrary;
using Microsoft.Win32;
namespace DataCapture_MA
{
@@ -64,23 +65,55 @@
                cfg.AddProfile<MapperConfiguration>();
            });
            // 创建快捷方式
            string shortcutName = "MaDataCapture"; // 快捷方式名称
            string targetPath = Application.ExecutablePath; // 程序路径
            string startupPath = Environment.GetFolderPath(Environment.SpecialFolder.Startup); // 启动文件夹路径
            CreateShortcut(shortcutName, targetPath, startupPath); // 创建快捷方式
            ////创建快捷方式
            //string shortcutName = "MaDataCapture"; // 快捷方式名称
            //string targetPath = Application.ExecutablePath; // 程序路径
            //string startupPath = Environment.GetFolderPath(Environment.SpecialFolder.Startup); // 启动文件夹路径
            //CreateShortcut(shortcutName, targetPath, startupPath); // 创建快捷方式
            SetRegistryAutoStart("MaDataCapture", Application.ExecutablePath);
            StartReceive(); // 启动程序
            CreateDatabase();  // 初始化数据库
            Log4NetHelper.WriteErrorLog(LogType.Receive, "程序启动:" + DateTime.Now);
            // 删除一个月前的数据
            new Thread(AutoDeleteHistoryDate.Handler).Start();
            this.FormClosing += CaptrueForm_FormClosing;
            this.FormClosed += CaptrueForm_FormClosed;
        }
        /// <summary>
        /// 设置注册表实现自启动
        /// </summary>
        /// <param name="appName">应用程序名称</param>
        /// <param name="appPath">应用程序路径</param>
        private void SetRegistryAutoStart(string appName, string appPath)
        {
            try
            {
                // 打开注册表路径
                RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run", true);
                if (key == null)
                {
                    //throw new Exception("无法访问注册表路径!");
                    Log4NetHelper.WriteErrorLog(LogType.Receive, "无法访问注册表路径:" + DateTime.Now);
                }
                // 设置注册表键值
                key.SetValue(appName, appPath);
                key.Close();
            }
            catch (Exception ex)
            {
                MessageBox.Show($"设置开机自启动失败:{ex.Message}", "错误", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
        private void CaptrueForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            Log4NetHelper.WriteErrorLog(LogType.Receive, "程序关闭:" + DateTime.Now);
            // 通知后台任务取消
            _cts.Cancel();
@@ -90,6 +123,7 @@
        private void CaptrueForm_FormClosed(object sender, FormClosedEventArgs e)
        {
            Log4NetHelper.WriteErrorLog(LogType.Receive, "程序退出:" + DateTime.Now);
            // 确保程序退出
            Environment.Exit(0);
        }
DataCapture_MA/bin/Debug/DataCapture_MA.application
@@ -1,6 +1,6 @@
<?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="DataCapture_MA.application" version="1.0.0.5" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
  <assemblyIdentity name="DataCapture_MA.application" version="1.0.0.7" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
  <description asmv2:publisher="DataCapture_MA" asmv2:product="DataCapture_MA" xmlns="urn:schemas-microsoft-com:asm.v1" />
  <deployment install="true" mapFileExtensions="true" />
  <compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
@@ -8,13 +8,13 @@
  </compatibleFrameworks>
  <dependency>
    <dependentAssembly dependencyType="install" codebase="DataCapture_MA.exe.manifest" size="34537">
      <assemblyIdentity name="DataCapture_MA.exe" version="1.0.0.5" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
      <assemblyIdentity name="DataCapture_MA.exe" version="1.0.0.7" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" 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#sha256" />
        <dsig:DigestValue>d56xe8+D7/4Jqyow8bnshDPhjmN8vbg35ohbyuJ4rKc=</dsig:DigestValue>
        <dsig:DigestValue>xBlAorp2P5myzVTpxl0YEOSEFeLkwEtoMggNY7dXBZ8=</dsig:DigestValue>
      </hash>
    </dependentAssembly>
  </dependency>
DataCapture_MA/bin/Debug/DataCapture_MA.exe
Binary files differ
DataCapture_MA/bin/Debug/DataCapture_MA.exe.manifest
@@ -1,6 +1,6 @@
<?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="DataCapture_MA.exe" version="1.0.0.5" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
  <asmv1:assemblyIdentity name="DataCapture_MA.exe" version="1.0.0.7" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
  <application />
  <entryPoint>
    <assemblyIdentity name="DataCapture_MA" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
@@ -54,14 +54,14 @@
    </dependentAssembly>
  </dependency>
  <dependency>
    <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="DataCapture_MA.exe" size="339440">
    <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="DataCapture_MA.exe" size="340464">
      <assemblyIdentity name="DataCapture_MA" 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#sha256" />
        <dsig:DigestValue>sRjU/0H9KiZBu+TekogHwDWUqFPEljNk6ORmrugXhQU=</dsig:DigestValue>
        <dsig:DigestValue>gnT0IkyKDcmeuii6ZrIoKfBpRZhC8i+UpcNJhAbKITo=</dsig:DigestValue>
      </hash>
    </dependentAssembly>
  </dependency>
DataCapture_MA/bin/Debug/DataCapture_MA.pdb
Binary files differ
DataCapture_MA/bin/Debug/app.publish/DataCapture_MA.application
@@ -1,21 +1,21 @@
<?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="DataCapture_MA.application" version="1.0.0.5" publicKeyToken="0669ca21c9a8e6f2" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
  <assemblyIdentity name="DataCapture_MA.application" version="1.0.0.7" publicKeyToken="0669ca21c9a8e6f2" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
  <description asmv2:publisher="DataCapture_MA" asmv2:product="DataCapture_MA" xmlns="urn:schemas-microsoft-com:asm.v1" />
  <deployment install="true" mapFileExtensions="true" />
  <compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
    <framework targetVersion="4.8" profile="Full" supportedRuntime="4.0.30319" />
  </compatibleFrameworks>
  <dependency>
    <dependentAssembly dependencyType="install" codebase="Application Files\DataCapture_MA_1_0_0_5\DataCapture_MA.exe.manifest" size="37737">
      <assemblyIdentity name="DataCapture_MA.exe" version="1.0.0.5" publicKeyToken="0669ca21c9a8e6f2" language="neutral" processorArchitecture="msil" type="win32" />
    <dependentAssembly dependencyType="install" codebase="Application Files\DataCapture_MA_1_0_0_7\DataCapture_MA.exe.manifest" size="37737">
      <assemblyIdentity name="DataCapture_MA.exe" version="1.0.0.7" publicKeyToken="0669ca21c9a8e6f2" language="neutral" processorArchitecture="msil" 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#sha256" />
        <dsig:DigestValue>zQGtVhl/X2VSsVEv5HijYXQRX5k3FTDWRnXS5quA54w=</dsig:DigestValue>
        <dsig:DigestValue>Tsa9b6Aa18bx9ABH32GNaIG6W/86p4V7LJY6wbaFryI=</dsig:DigestValue>
      </hash>
    </dependentAssembly>
  </dependency>
<publisherIdentity name="CN=ZONGZHOU\LAPTOP-DK84CSNV" issuerKeyHash="f77628abe7f6e7a334b567d3f2621a55844809ad" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>EYK21L6xpHMOwYfFKJP5l+2/TWLXg9BR1sJ69Piyg1Y=</DigestValue></Reference></SignedInfo><SignatureValue>4QAFnTtyS7H0q3VTJR65In95+yMbnAwvw125EE0tpcUfffOrmDy+WzbnDjIypGfIAzsuykBUM08wLol0WwZPLQB3ht3LSCtwDDWemORgG0Jd3RXh/19E5qtISmEhqohKJegkEEsgzccUUKsf4/cBkWr/MM/wycBGGJbbS0499oM=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>9f960pjF9CaytBmWoaHuF7rMhjQOZXsRBshocrNoQhgf88uopJN3Yu5Gn2TuRubjKHbGs3kfcCv3k5OufNnBHDFtqJNHlwPCnx8Sy7sBgaOmkpa04jqq3/N/5kIhYLFbxstY9YdLW4XBvlhpzq6jOKT/RjOA1VgWbtrREjkJ5KU=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="5683b2f8f47ac2d651d083d7624dbfed97f99328c587c10e73a4b1bed4b68211" Description="" Url=""><as:assemblyIdentity name="DataCapture_MA.application" version="1.0.0.5" publicKeyToken="0669ca21c9a8e6f2" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=ZONGZHOU\LAPTOP-DK84CSNV</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>iFODWPa4idLQcMBPgLUTpiInyjT2dZOidP2GVPVUzJE=</DigestValue></Reference></SignedInfo><SignatureValue>M5AGYfJ/RAfqmArVFfdkORQbkPdJgBwLH7meaLUL7vcbOiW2jQI1Op84mZ3FC25BLgra6CUVDOORPlZvD+g/U+pE/itIK9MQIPlbn/Rwj2uajeExdECg2oR288Rkxsf0EzzUkwLp1GPwonTs0C3lXBZofxHXRQ8lCkTogeQ2nCw=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>9f960pjF9CaytBmWoaHuF7rMhjQOZXsRBshocrNoQhgf88uopJN3Yu5Gn2TuRubjKHbGs3kfcCv3k5OufNnBHDFtqJNHlwPCnx8Sy7sBgaOmkpa04jqq3/N/5kIhYLFbxstY9YdLW4XBvlhpzq6jOKT/RjOA1VgWbtrREjkJ5KU=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB+TCCAWKgAwIBAgIQVVYua7Q+f7lIT/mVsQ37TTANBgkqhkiG9w0BAQsFADA7MTkwNwYDVQQDHjAAWgBPAE4ARwBaAEgATwBVAFwATABBAFAAVABPAFAALQBEAEsAOAA0AEMAUwBOAFYwHhcNMjQxMTIwMDYxMjQ0WhcNMjUxMTIwMTIxMjQ0WjA7MTkwNwYDVQQDHjAAWgBPAE4ARwBaAEgATwBVAFwATABBAFAAVABPAFAALQBEAEsAOAA0AEMAUwBOAFYwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAPX/etKYxfQmsrQZlqGh7he6zIY0DmV7EQbIaHKzaEIYH/PLqKSTd2LuRp9k7kbm4yh2xrN5H3Ar95OTrnzZwRwxbaiTR5cDwp8fEsu7AYGjppKWtOI6qt/zf+ZCIWCxW8bLWPWHS1uFwb5Yac6uozik/0YzgNVYFm7a0RI5CeSlAgMBAAEwDQYJKoZIhvcNAQELBQADgYEAC+WJhNOMPMNn3tJ7Qy1nXFmUavQCZ4TVzz+fkwvAlPdA+pK8Ecrdrusoqf4d/e7767cQfsyuvpXOyM205dIhG9fotDqhEagl6CjQfnBla1sTxtT72mhUIkaV1RX9fARPaOAOgsq1TsnVra3MeJTfmANTmS06X2Vyx9Gvzb8PCsQ=</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
<publisherIdentity name="CN=ZONGZHOU\LAPTOP-DK84CSNV" issuerKeyHash="f77628abe7f6e7a334b567d3f2621a55844809ad" /><Signature Id="StrongNameSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>vMKDyxyIhlnwMrwScVGjVp4nWGKvsiAxr3zOpMr9tfY=</DigestValue></Reference></SignedInfo><SignatureValue>8JINp4097JgxS48omOs7XH43RER1X2xbo5zom4Q6Evo6Wq0wqoeYGOU7fjuimgdLLhZbHEnU9fbbIGGI6A6m+JTWcf9p7kM+P7kjjd3kgw+pY5U//cVIbmAlfIwdFEGW24SmKojrFYKHktB5s3ubnJQsTumN9sFsNKXmN41dW6M=</SignatureValue><KeyInfo Id="StrongNameKeyInfo"><KeyValue><RSAKeyValue><Modulus>9f960pjF9CaytBmWoaHuF7rMhjQOZXsRBshocrNoQhgf88uopJN3Yu5Gn2TuRubjKHbGs3kfcCv3k5OufNnBHDFtqJNHlwPCnx8Sy7sBgaOmkpa04jqq3/N/5kIhYLFbxstY9YdLW4XBvlhpzq6jOKT/RjOA1VgWbtrREjkJ5KU=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><msrel:RelData xmlns:msrel="http://schemas.microsoft.com/windows/rel/2005/reldata"><r:license xmlns:r="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:as="http://schemas.microsoft.com/windows/pki/2005/Authenticode"><r:grant><as:ManifestInformation Hash="f6b5fdcaa4ce7caf3120b2af6258279e56a3517112bc32f05986881ccb83c2bc" Description="" Url=""><as:assemblyIdentity name="DataCapture_MA.application" version="1.0.0.7" publicKeyToken="0669ca21c9a8e6f2" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" /></as:ManifestInformation><as:SignedBy /><as:AuthenticodePublisher><as:X509SubjectName>CN=ZONGZHOU\LAPTOP-DK84CSNV</as:X509SubjectName></as:AuthenticodePublisher></r:grant><r:issuer><Signature Id="AuthenticodeSignature" xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /><DigestValue>tMigL5U0OFRx8VI0C0l0+oE7G3Ml3CYkCdANYRMiF1c=</DigestValue></Reference></SignedInfo><SignatureValue>yS+annCnwngm81b3pfaIKFvuBuSIQBoFCSF6IS4pKUusKytLG3vPs/XHVyAMzZ3URPX+uQTJG9F8hDtT2AqM1voiLEXGx6XtUgA9SYRrErBs5kaDIBqkULroIDZdx+SwiTDVQkVtb8tVv1StlQvu4bebECNvT1ZBJzBXa7RHs7k=</SignatureValue><KeyInfo><KeyValue><RSAKeyValue><Modulus>9f960pjF9CaytBmWoaHuF7rMhjQOZXsRBshocrNoQhgf88uopJN3Yu5Gn2TuRubjKHbGs3kfcCv3k5OufNnBHDFtqJNHlwPCnx8Sy7sBgaOmkpa04jqq3/N/5kIhYLFbxstY9YdLW4XBvlhpzq6jOKT/RjOA1VgWbtrREjkJ5KU=</Modulus><Exponent>AQAB</Exponent></RSAKeyValue></KeyValue><X509Data><X509Certificate>MIIB+TCCAWKgAwIBAgIQVVYua7Q+f7lIT/mVsQ37TTANBgkqhkiG9w0BAQsFADA7MTkwNwYDVQQDHjAAWgBPAE4ARwBaAEgATwBVAFwATABBAFAAVABPAFAALQBEAEsAOAA0AEMAUwBOAFYwHhcNMjQxMTIwMDYxMjQ0WhcNMjUxMTIwMTIxMjQ0WjA7MTkwNwYDVQQDHjAAWgBPAE4ARwBaAEgATwBVAFwATABBAFAAVABPAFAALQBEAEsAOAA0AEMAUwBOAFYwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAPX/etKYxfQmsrQZlqGh7he6zIY0DmV7EQbIaHKzaEIYH/PLqKSTd2LuRp9k7kbm4yh2xrN5H3Ar95OTrnzZwRwxbaiTR5cDwp8fEsu7AYGjppKWtOI6qt/zf+ZCIWCxW8bLWPWHS1uFwb5Yac6uozik/0YzgNVYFm7a0RI5CeSlAgMBAAEwDQYJKoZIhvcNAQELBQADgYEAC+WJhNOMPMNn3tJ7Qy1nXFmUavQCZ4TVzz+fkwvAlPdA+pK8Ecrdrusoqf4d/e7767cQfsyuvpXOyM205dIhG9fotDqhEagl6CjQfnBla1sTxtT72mhUIkaV1RX9fARPaOAOgsq1TsnVra3MeJTfmANTmS06X2Vyx9Gvzb8PCsQ=</X509Certificate></X509Data></KeyInfo></Signature></r:issuer></r:license></msrel:RelData></KeyInfo></Signature></asmv1:assembly>
DataCapture_MA/bin/Debug/app.publish/DataCapture_MA.exe
Binary files differ
DataCapture_MA/obj/Debug/DataCapture_MA.application
@@ -1,6 +1,6 @@
<?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="DataCapture_MA.application" version="1.0.0.5" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
  <assemblyIdentity name="DataCapture_MA.application" version="1.0.0.7" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" xmlns="urn:schemas-microsoft-com:asm.v1" />
  <description asmv2:publisher="DataCapture_MA" asmv2:product="DataCapture_MA" xmlns="urn:schemas-microsoft-com:asm.v1" />
  <deployment install="true" mapFileExtensions="true" />
  <compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2">
@@ -8,13 +8,13 @@
  </compatibleFrameworks>
  <dependency>
    <dependentAssembly dependencyType="install" codebase="DataCapture_MA.exe.manifest" size="34537">
      <assemblyIdentity name="DataCapture_MA.exe" version="1.0.0.5" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
      <assemblyIdentity name="DataCapture_MA.exe" version="1.0.0.7" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" 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#sha256" />
        <dsig:DigestValue>d56xe8+D7/4Jqyow8bnshDPhjmN8vbg35ohbyuJ4rKc=</dsig:DigestValue>
        <dsig:DigestValue>xBlAorp2P5myzVTpxl0YEOSEFeLkwEtoMggNY7dXBZ8=</dsig:DigestValue>
      </hash>
    </dependentAssembly>
  </dependency>
DataCapture_MA/obj/Debug/DataCapture_MA.exe
Binary files differ
DataCapture_MA/obj/Debug/DataCapture_MA.exe.manifest
@@ -1,6 +1,6 @@
<?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="DataCapture_MA.exe" version="1.0.0.5" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
  <asmv1:assemblyIdentity name="DataCapture_MA.exe" version="1.0.0.7" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="msil" type="win32" />
  <application />
  <entryPoint>
    <assemblyIdentity name="DataCapture_MA" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
@@ -54,14 +54,14 @@
    </dependentAssembly>
  </dependency>
  <dependency>
    <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="DataCapture_MA.exe" size="339440">
    <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="DataCapture_MA.exe" size="340464">
      <assemblyIdentity name="DataCapture_MA" 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#sha256" />
        <dsig:DigestValue>sRjU/0H9KiZBu+TekogHwDWUqFPEljNk6ORmrugXhQU=</dsig:DigestValue>
        <dsig:DigestValue>gnT0IkyKDcmeuii6ZrIoKfBpRZhC8i+UpcNJhAbKITo=</dsig:DigestValue>
      </hash>
    </dependentAssembly>
  </dependency>
DataCapture_MA/obj/Debug/DataCapture_MA.pdb
Binary files differ