实例介绍
一个用于.NET c#开发智能程序的自动更新程序(源码),PAD目标平台为WINCE5.0或者6.0。可以用于win程序发布到webservice端,PDA启动连接webservice检查更新并下载更新文件到PDA中。这个思路可用于任何C/S端的自动更新程序!
【实例截图】
【核心代码】
4744300845202436473.rar
└── PDAAutoUpdate
├── AutoUpdateIssue
│ ├── App.config
│ ├── AutoUpdateIssue.csproj
│ ├── AutoUpdateIssue.csproj.user
│ ├── bin
│ │ └── Debug
│ │ ├── AutoUpdateIssue.exe
│ │ ├── AutoUpdateIssue.exe.config
│ │ ├── AutoUpdateIssue.pdb
│ │ ├── AutoUpdateIssue.vshost.exe
│ │ ├── AutoUpdateIssue.vshost.exe.config
│ │ ├── AutoUpdateIssue.vshost.exe.manifest
│ │ ├── AutoUpdateLib.dll
│ │ ├── AutoUpdateLib.pdb
│ │ ├── Common.Logging.Core.dll
│ │ ├── Common.Logging.dll
│ │ ├── Common.Logging.Log4Net1213.dll
│ │ ├── log4net.dll
│ │ └── versions
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── frmConfig.cs
│ ├── frmConfig.Designer.cs
│ ├── frmConfig.resx
│ ├── obj
│ │ └── Debug
│ │ ├── AutoUpdateIssue.csproj.FileListAbsolute.txt
│ │ ├── AutoUpdateIssue.csproj.GenerateResource.Cache
│ │ ├── AutoUpdateIssue.exe
│ │ ├── AutoUpdateIssue.Form1.resources
│ │ ├── AutoUpdateIssue.frmConfig.resources
│ │ ├── AutoUpdateIssue.pdb
│ │ ├── AutoUpdateIssue.Properties.Resources.resources
│ │ ├── Refactor
│ │ └── TempPE
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── AutoUpdateLib
│ ├── app.config
│ ├── AutoUpdateLib.csproj
│ ├── bin
│ │ └── Debug
│ │ ├── AutoUpdateLib.dll
│ │ ├── AutoUpdateLib.dll.config
│ │ ├── AutoUpdateLib.pdb
│ │ ├── Common.Logging.Core.dll
│ │ ├── Common.Logging.dll
│ │ ├── Common.Logging.Log4Net1213.dll
│ │ ├── log4net.dll
│ │ └── Newtonsoft.Json.Net20.dll
│ ├── Config
│ │ ├── ConfigContext.cs
│ │ └── Config.cs
│ ├── FileHelper.cs
│ ├── LibCommon.cs
│ ├── obj
│ │ └── Debug
│ │ ├── AutoUpdateLib.csproj.FileListAbsolute.txt
│ │ ├── AutoUpdateLib.dll
│ │ ├── AutoUpdateLib.pdb
│ │ ├── Refactor
│ │ │ └── AutoUpdateLib.dll
│ │ └── TempPE
│ │ └── Web References.FileService.Reference.cs.dll
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── ServiceAgent.cs
│ └── Web References
│ └── FileService
│ ├── FileService.disco
│ ├── FileService.wsdl
│ ├── Reference.cs
│ └── Reference.map
├── AutoUpdateService
│ ├── App_Data
│ ├── AutoUpdateService.csproj
│ ├── AutoUpdateService.csproj.user
│ ├── AutoUpdateService.Publish.xml
│ ├── bin
│ │ ├── AutoUpdateLib.dll
│ │ ├── AutoUpdateLib.pdb
│ │ ├── AutoUpdateService.dll
│ │ ├── AutoUpdateService.pdb
│ │ ├── Common.Logging.Core.dll
│ │ ├── Common.Logging.dll
│ │ ├── Common.Logging.Log4Net1213.dll
│ │ ├── log4net.dll
│ │ └── Newtonsoft.Json.Net20.dll
│ ├── FileService.asmx
│ ├── FileService.asmx.cs
│ ├── log
│ │ ├── 20160921.txt
│ │ └── error.txt
│ ├── obj
│ │ └── Debug
│ │ ├── AutoUpdateService.csproj.FileListAbsolute.txt
│ │ ├── AutoUpdateService.dll
│ │ ├── AutoUpdateService.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── versions
│ │ └── 1.000001
│ │ ├── 1.txt
│ │ ├── 2.txt
│ │ └── setup.xml
│ └── Web.config
├── lib
│ ├── Common.Logging.Core.dll
│ ├── Common.Logging.dll
│ ├── Common.Logging.Log4Net1213.dll
│ ├── ICSharpCode.SharpZipLib.dll
│ ├── log4net.dll
│ ├── Newtonsoft.Json.Compact.dll
│ ├── Newtonsoft.Json.dll
│ ├── Newtonsoft.Json.Net20.dll
│ ├── NLog.dll
│ ├── OpenNETCF.Configuration.dll
│ ├── OpenNETCF.dll
│ ├── OpenNETCF.Net.dll
│ ├── OpenNETCF.WindowsCE.Messaging.dll
│ ├── SQLite.Interop.DLL
│ └── System.Data.SQLite.dll
├── PDAAutoUpdateLib
│ ├── bin
│ │ └── Debug
│ │ ├── ICSharpCode.SharpZipLib.dll
│ │ ├── Newtonsoft.Json.Compact.dll
│ │ ├── NLog.dll
│ │ ├── PDAAutoUpdateLib.dll
│ │ ├── PDAAutoUpdateLib.pdb
│ │ └── System.Data.SQLite.dll
│ ├── Common.cs
│ ├── Config
│ │ ├── ConfigContext.cs
│ │ └── Config.cs
│ ├── MessageBox_E.cs
│ ├── MessageBox_E.Designer.cs
│ ├── MessageBox_E.resx
│ ├── obj
│ │ └── Debug
│ │ ├── PDAAutoUpdateLib.csproj.FileListAbsolute.txt
│ │ ├── PDAAutoUpdateLib.csproj.GenerateResource.Cache
│ │ ├── PDAAutoUpdateLib.dll
│ │ ├── PDAAutoUpdateLib.MessageBox_E.resources
│ │ ├── PDAAutoUpdateLib.pdb
│ │ ├── Refactor
│ │ │ └── PDAAutoUpdateLib.dll
│ │ ├── SmartDeviceProject2.csproj.FileListAbsolute.txt
│ │ ├── SmartDeviceProject2.dll
│ │ ├── SmartDeviceProject2.pdb
│ │ └── TempPE
│ │ └── Web References.FileService.Reference.cs.dll
│ ├── PDAAutoUpdateLib.csproj
│ ├── PDAAutoUpdateLib.csproj.user
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── ServiceAgent.cs
│ ├── Web References
│ │ └── FileService
│ │ ├── FileService.disco
│ │ ├── FileService.wsdl
│ │ ├── Reference.cs
│ │ └── Reference.map
│ ├── WifiApi.cs.bak
│ └── XmlConfig.cs
├── PDAAutoUpdateLive
│ ├── bin
│ │ └── Debug
│ │ ├── Config.xml
│ │ ├── ICSharpCode.SharpZipLib.dll
│ │ ├── Newtonsoft.Json.Compact.dll
│ │ ├── NLog.config
│ │ ├── NLog.dll
│ │ ├── PDAAutoUpdateLib.dll
│ │ ├── PDAAutoUpdateLib.pdb
│ │ ├── PDAAutoUpdateLive.exe
│ │ └── PDAAutoUpdateLive.pdb
│ ├── Config.xml
│ ├── FrmUpdateFile.cs
│ ├── FrmUpdateFile.Designer.cs
│ ├── FrmUpdateFile.resx
│ ├── NLog.config
│ ├── obj
│ │ └── Debug
│ │ ├── PDAAutoUpdateLive.csproj.FileListAbsolute.txt
│ │ ├── PDAAutoUpdateLive.csproj.GenerateResource.Cache
│ │ ├── PDAAutoUpdateLive.exe
│ │ ├── PDAAutoUpdateLive.FrmUpdateFile.resources
│ │ ├── PDAAutoUpdateLive.pdb
│ │ ├── PDAAutoUpdateLive.Properties.Resources.resources
│ │ ├── Refactor
│ │ │ └── PDAAutoUpdateLive.exe
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── SmartDeviceProject1.csproj.FileListAbsolute.txt
│ │ ├── SmartDeviceProject1.csproj.GenerateResource.Cache
│ │ ├── SmartDeviceProject1.exe
│ │ ├── SmartDeviceProject1.pdb
│ │ ├── SmartDeviceProject1.Properties.Resources.resources
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ ├── PDAAutoUpdateLive.csproj
│ ├── PDAAutoUpdateLive.csproj.user
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ └── Resources.resx
├── PDAAutoUpdate.sln
├── PDAAutoUpdate.suo
├── PDATools
│ ├── bin
│ │ └── Debug
│ │ ├── Config.xml
│ │ ├── Newtonsoft.Json.Compact.dll
│ │ ├── NLog.config
│ │ ├── NLog.dll
│ │ ├── PDAAutoUpdateLib.dll
│ │ ├── PDAAutoUpdateLib.pdb
│ │ ├── PDATools.exe
│ │ ├── PDATools.pdb
│ │ └── SQLite.Interop.DLL
│ ├── Config.xml
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── Form2.cs
│ ├── Form2.Designer.cs
│ ├── Form2.resx
│ ├── Form3.cs
│ ├── Form3.Designer.cs
│ ├── Form3.resx
│ ├── NLog.config
│ ├── obj
│ │ └── Debug
│ │ ├── PDATools.csproj.FileListAbsolute.txt
│ │ ├── PDATools.csproj.GenerateResource.Cache
│ │ ├── PDATools.exe
│ │ ├── PDATools.Form1.resources
│ │ ├── PDATools.Form2.resources
│ │ ├── PDATools.Form3.resources
│ │ ├── PDATools.pdb
│ │ ├── PDATools.Properties.Resources.resources
│ │ ├── Refactor
│ │ │ └── PDATools.exe
│ │ └── TempPE
│ ├── PDATools.csproj
│ ├── PDATools.csproj.user
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ └── Resources.resx
│ └── SQLite.Interop.DLL
├── PDAUpdateDemo
│ ├── bin
│ │ └── Debug
│ │ ├── Config.xml
│ │ ├── Newtonsoft.Json.Compact.dll
│ │ ├── NLog.config
│ │ ├── NLog.dll
│ │ ├── PDAAutoUpdateLib.dll
│ │ ├── PDAAutoUpdateLib.pdb
│ │ ├── PDAAutoUpdateLive.exe
│ │ ├── PDAAutoUpdateLive.pdb
│ │ ├── PDATools.exe
│ │ ├── PDATools.pdb
│ │ ├── PDAUpdateDemo.exe
│ │ ├── PDAUpdateDemo.pdb
│ │ └── SQLite.Interop.DLL
│ ├── Config.xml
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── NLog.config
│ ├── obj
│ │ └── Debug
│ │ ├── PDAUpdateDemo.csproj.FileListAbsolute.txt
│ │ ├── PDAUpdateDemo.csproj.GenerateResource.Cache
│ │ ├── PDAUpdateDemo.exe
│ │ ├── PDAUpdateDemo.Form1.resources
│ │ ├── PDAUpdateDemo.pdb
│ │ ├── PDAUpdateDemo.Properties.Resources.resources
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── PDAUpdateDemo.csproj
│ ├── PDAUpdateDemo.csproj.user
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ └── Resources.resx
├── SmartDeviceCabProject
│ ├── ScanningHelp.dll
│ ├── ServiceProxy.dll
│ ├── SmartDeviceProject.exe
│ ├── Symbol.Barcode.dll
│ ├── Symbol.BarcodeForms.dll
│ ├── Symbol.dll
│ ├── Symbol.StandardForms.dll
│ └── X.PDA.Configuration.dll
└── 自动更新说明.doc
69 directories, 245 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论