实例介绍
里面有说明文档 非常还用 我现在正在使用 仅仅需要配置xml就可以实现自动更新.
【实例截图】
【核心代码】
4744302543357139677.zip
└── AutoUpdater
├── AutoUpdater
│ ├── AutoUpdateHelper
│ │ ├── AutoUpdater.cs
│ │ ├── CommonUnitity.cs
│ │ ├── Config.cs
│ │ ├── ConstFile.cs
│ │ ├── DownloadFileInfo.cs
│ │ ├── IAutoUpdater.cs
│ │ ├── LocalFile.cs
│ │ ├── RemoteFile.cs
│ │ └── UpdateFileList.cs
│ ├── Autoupdater.config
│ ├── AutoUpdater.csproj
│ ├── bin
│ │ ├── Debug
│ │ │ ├── AutoUpdater.dll
│ │ │ └── AutoUpdater.pdb
│ │ └── Release
│ ├── DownloadConfirm.cs
│ ├── DownloadConfirm.designer.cs
│ ├── DownloadConfirm.resx
│ ├── DownloadProgress.cs
│ ├── DownloadProgress.designer.cs
│ ├── DownloadProgress.resx
│ ├── obj
│ │ └── Debug
│ │ ├── AutoUpdater.csproj.FileListAbsolute.txt
│ │ ├── AutoUpdater.csproj.GenerateResource.Cache
│ │ ├── AutoUpdater.dll
│ │ ├── AutoUpdater.pdb
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ ├── KnightsWarriorAutoupdater.DownloadConfirm.resources
│ │ ├── KnightsWarriorAutoupdater.DownloadProgress.resources
│ │ └── TempPE
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── TestUpdateter
│ ├── bin
│ │ └── Debug
│ │ ├── AutoUpdater.config
│ │ ├── AutoUpdater.dll
│ │ ├── AutoUpdater.pdb
│ │ ├── TestUpdateter.exe
│ │ ├── TestUpdateter.exe.old
│ │ ├── TestUpdateter.pdb
│ │ ├── TestUpdateter.vshost.exe
│ │ └── TestUpdateter.vshost.exe.manifest
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource.read.1.tlog
│ │ ├── GenerateResource.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ ├── TestUpdateter.csproj.FileListAbsolute.txt
│ │ ├── TestUpdateter.exe
│ │ ├── TestUpdateter.Form1.resources
│ │ ├── TestUpdateter.pdb
│ │ └── TestUpdateter.Properties.Resources.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ └── TestUpdateter.csproj
├── AutoUpdater.sln
├── AutoUpdater.sln.docstates.suo
├── AutoUpdater.suo
├── Read me.txt
├── _ReSharper.AutoUpdater
│ ├── AspFileDataCache.dat
│ ├── AssemblyInfoCache.dat
│ ├── BuildScriptCache
│ │ └── 4
│ │ └── f6ba191.dat
│ ├── ConditionalNames
│ │ └── 0
│ │ └── 367fc55c.dat
│ ├── Decompiler
│ ├── GeneratedFiles
│ │ └── 4
│ │ └── f6ba191.dat
│ ├── JavaScriptCache
│ │ └── 6
│ │ └── 1bb49c37.dat
│ ├── JSTest
│ ├── ModuleIds.xml
│ ├── MVC
│ ├── MvcAnnotations
│ │ └── 6
│ │ └── 5d93e927.dat
│ ├── NamedArguments
│ │ └── 0
│ │ └── 367fc55c.dat
│ ├── Pdb
│ │ ├── 221b891e66bc576fc2ebe2f73ba6dba7210cbd8b
│ │ ├── 67757250cc902aa0a61659aa38375daaebb82278
│ │ └── 7018932a49eef4abf9dacb9475494e485f5f4116
│ ├── PersistentCaches
│ │ ├── 000005.sst
│ │ ├── 000008.sst
│ │ ├── 000011.sst
│ │ ├── 000012.log
│ │ ├── CURRENT
│ │ ├── LOCK
│ │ ├── LOG
│ │ ├── LOG.old
│ │ └── MANIFEST-000010
│ ├── ProjectFileDataCache
│ │ ├── ResourceDefaultLanguagePropertyProvider.cache.dat
│ │ └── ShouldUseHostCompilerProvider.cache.dat
│ ├── RecentItems
│ │ └── RecentFiles.dat
│ ├── Resources
│ │ └── 4
│ │ └── 4f11baa8.dat
│ ├── SymbolCache.bin
│ ├── TagPrefixes
│ ├── WebSymbols
│ └── XmlIndex
│ ├── Accessibility.xml
│ │ └── 091C23DC.bin
│ ├── Microsoft.Build.Framework.4.0.0.0.Nullness.Generated.xml
│ │ └── 8790CEC9.bin
│ ├── Microsoft.Build.Tasks.v4.0.4.0.0.0.Nullness.Generated.xml
│ │ └── C80942C9.bin
│ ├── Microsoft.Build.Utilities.v4.0.4.0.0.0.Nullness.Generated.xml
│ │ └── 6686CE89.bin
│ ├── Microsoft.CSharp.4.0.0.0.Nullness.Generated.xml
│ │ └── 45C0C4A9.bin
│ ├── Microsoft.VisualC.xml
│ │ └── A81C801F.bin
│ ├── mscorlib.2.0.0.0.Contracts.xml
│ │ └── 5386F7DF.bin
│ ├── mscorlib.2.0.0.0.Interfaces.Nullness.Generated.xml
│ │ └── 73A51717.bin
│ ├── mscorlib.2.0.0.0.Nullness.Generated.xml
│ │ └── D6DD7D6F.bin
│ ├── mscorlib.2.0.0.0.Pure.xml
│ │ └── 04BE44AC.bin
│ ├── mscorlib.4.0.0.0.Contracts.xml
│ │ └── 1FA33759.bin
│ ├── mscorlib.4.0.0.0.Interfaces.Nullness.Generated.xml
│ │ └── 5B527491.bin
│ ├── mscorlib.4.0.0.0.Nullness.Generated.xml
│ │ └── 4B64CB29.bin
│ ├── mscorlib.4.0.0.0.Pure.xml
│ │ └── AFED4DEA.bin
│ ├── mscorlib.I18n.xml
│ │ └── 4F8C8052.bin
│ ├── mscorlib.Nullness.Manual.xml
│ │ └── AD792758.bin
│ ├── mscorlib.Pure.Manual.xml
│ │ └── CF8A11FA.bin
│ ├── mscorlib.ValueFlow.xml
│ │ └── 47D31BE5.bin
│ ├── mscorlib.xml
│ │ ├── 396189B2.bin
│ │ └── 5A400175.bin
│ ├── SMDiagnostics.4.0.0.0.Nullness.Generated.xml
│ │ └── 811830C9.bin
│ ├── System.2.0.0.0.Contracts.xml
│ │ └── 0C2316DF.bin
│ ├── System.2.0.0.0.Nullness.Generated.xml
│ │ └── 468C7C6F.bin
│ ├── System.2.0.0.0.Pure.xml
│ │ └── 748B03AC.bin
│ ├── System.4.0.0.0.Contracts.xml
│ │ └── D83F5659.bin
│ ├── System.4.0.0.0.Nullness.Generated.xml
│ │ └── BB13CA29.bin
│ ├── System.4.0.0.0.Pure.xml
│ │ └── 1FBA0CEA.bin
│ ├── System.Configuration.2.0.0.0.Contracts.xml
│ │ └── C80D4C9F.bin
│ ├── System.Configuration.2.0.0.0.Nullness.Generated.xml
│ │ └── 0BA0A82F.bin
│ ├── System.Configuration.2.0.0.0.Pure.xml
│ │ └── 0FAE80EC.bin
│ ├── System.Configuration.4.0.0.0.Contracts.xml
│ │ └── A98EA919.bin
│ ├── System.Configuration.4.0.0.0.Nullness.Generated.xml
│ │ └── 4C53B8E9.bin
│ ├── System.Configuration.4.0.0.0.Pure.xml
│ │ └── A2FD882A.bin
│ ├── System.Configuration.Install.2.0.0.0.Contracts.xml
│ │ └── 7772783F.bin
│ ├── System.Configuration.Install.2.0.0.0.Nullness.Generated.xml
│ │ └── 8FCCBC8F.bin
│ ├── System.Configuration.Install.4.0.0.0.Contracts.xml
│ │ └── 98B758B9.bin
│ ├── System.Configuration.Install.4.0.0.0.Nullness.Generated.xml
│ │ └── 945CCA49.bin
│ ├── System.Configuration.Install.xml
│ │ └── 7E7C4D46.bin
│ ├── System.Configuration.xml
│ │ └── 3C5DA4E9.bin
│ ├── System.Core.3.5.0.0.Contracts.xml
│ │ └── 3CE0F17B.bin
│ ├── System.Core.3.5.0.0.Nullness.Generated.xml
│ │ └── B838384B.bin
│ ├── System.Core.3.5.0.0.Pure.xml
│ │ └── 55AD4048.bin
│ ├── System.Core.4.0.0.0.Contracts.xml
│ │ └── A46579F9.bin
│ ├── System.Core.4.0.0.0.Nullness.Generated.xml
│ │ └── CE42F589.bin
│ ├── System.Core.4.0.0.0.Pure.xml
│ │ └── 6046050A.bin
│ ├── System.Core.LinqTunnel.xml
│ │ └── 9B9392EE.bin
│ ├── System.Core.Nullness.Manual.xml
│ │ └── 81359538.bin
│ ├── System.Core.Pure.Manual.xml
│ │ └── 9B114E5A.bin
│ ├── System.Data.2.0.0.0.Contracts.xml
│ │ └── BD45D4FF.bin
│ ├── System.Data.2.0.0.0.Nullness.Generated.xml
│ │ └── A0B30B4F.bin
│ ├── System.Data.2.0.0.0.Pure.xml
│ │ └── DE28034C.bin
│ ├── System.Data.4.0.0.0.Contracts.xml
│ │ └── 499E9079.bin
│ ├── System.Data.4.0.0.0.Nullness.Generated.xml
│ │ └── 515D5C09.bin
│ ├── System.Data.4.0.0.0.Pure.xml
│ │ └── 89570B8A.bin
│ ├── System.Data.DataSetExtensions.3.5.0.0.Nullness.Generated.xml
│ │ └── 9C6CE8CB.bin
│ ├── System.Data.DataSetExtensions.4.0.0.0.Nullness.Generated.xml
│ │ └── B277A609.bin
│ ├── System.Data.DataSetExtensions.I18n.xml
│ │ └── C260D3F2.bin
│ ├── System.Data.I18n.xml
│ │ └── C50A09F2.bin
│ ├── System.Data.OracleClient.2.0.0.0.Nullness.Generated.xml
│ │ └── F5693B8F.bin
│ ├── System.Data.OracleClient.4.0.0.0.Nullness.Generated.xml
│ │ └── F9F94949.bin
│ ├── System.Data.OracleClient.xml
│ │ └── D650A468.bin
│ ├── System.Data.SqlXml.2.0.0.0.Nullness.Generated.xml
│ │ └── EB19A58F.bin
│ ├── System.Data.SqlXml.4.0.0.0.Nullness.Generated.xml
│ │ └── EFA9B349.bin
│ ├── System.Data.SqlXml.xml
│ │ └── 2421DC30.bin
│ ├── System.Data.xml
│ │ └── B986EE89.bin
│ ├── System.Deployment.2.0.0.0.Nullness.Generated.xml
│ │ └── 567C85CF.bin
│ ├── System.Deployment.4.0.0.0.Nullness.Generated.xml
│ │ └── 0726D689.bin
│ ├── System.Deployment.xml
│ │ └── 54C70D00.bin
│ ├── System.Design.2.0.0.0.Nullness.Generated.xml
│ │ └── DB47D50F.bin
│ ├── System.Design.4.0.0.0.Nullness.Generated.xml
│ │ └── DFD7E2C9.bin
│ ├── System.Design.xml
│ │ └── 2B0A890B.bin
│ ├── System.DirectoryServices.2.0.0.0.Nullness.Generated.xml
│ │ └── 3A3C624F.bin
│ ├── System.DirectoryServices.4.0.0.0.Nullness.Generated.xml
│ │ └── EAE6B309.bin
│ ├── System.DirectoryServices.Protocols.2.0.0.0.Nullness.Generated.xml
│ │ └── 379F27AF.bin
│ ├── System.DirectoryServices.Protocols.4.0.0.0.Nullness.Generated.xml
│ │ └── 78523869.bin
│ ├── System.DirectoryServices.Protocols.xml
│ │ └── B70A17F5.bin
│ ├── System.DirectoryServices.xml
│ │ └── 99C5AFFE.bin
│ ├── System.Drawing.2.0.0.0.Contracts.xml
│ │ └── 12ABB9DF.bin
│ ├── System.Drawing.2.0.0.0.Nullness.Generated.xml
│ │ └── E07C7F6F.bin
│ ├── System.Drawing.4.0.0.0.Contracts.xml
│ │ └── DEC7F959.bin
│ ├── System.Drawing.4.0.0.0.Nullness.Generated.xml
│ │ └── 5503CD29.bin
│ ├── System.Drawing.Design.2.0.0.0.Nullness.Generated.xml
│ │ └── D13F2A8F.bin
│ ├── System.Drawing.Design.4.0.0.0.Nullness.Generated.xml
│ │ └── D5CF3849.bin
│ ├── System.Drawing.Design.xml
│ │ └── D632A645.bin
│ ├── System.Drawing.Pure.xml
│ │ └── 5BD73F6E.bin
│ ├── System.Drawing.xml
│ │ └── DD884EB9.bin
│ ├── System.Dynamic.4.0.0.0.Nullness.Generated.xml
│ │ └── 3E7D3449.bin
│ ├── System.EnterpriseServices.2.0.0.0.Nullness.Generated.xml
│ │ └── 1DC6D6CF.bin
│ ├── System.EnterpriseServices.4.0.0.0.Nullness.Generated.xml
│ │ └── CE712789.bin
│ ├── System.EnterpriseServices.xml
│ │ └── 9352F9E2.bin
│ ├── System.I18n.xml
│ │ └── BA0A3F52.bin
│ ├── System.Nullness.Manual.xml
│ │ └── 02818658.bin
│ ├── System.Numerics.4.0.0.0.Nullness.Generated.xml
│ │ └── 83F20909.bin
│ ├── System.Runtime.Caching.4.0.0.0.Nullness.Generated.xml
│ │ └── 3F238E49.bin
│ ├── System.Runtime.DurableInstancing.4.0.0.0.Nullness.Generated.xml
│ │ └── 03153789.bin
│ ├── System.Runtime.Remoting.2.0.0.0.Nullness.Generated.xml
│ │ └── 95DAA88F.bin
│ ├── System.Runtime.Remoting.4.0.0.0.Nullness.Generated.xml
│ │ └── 9A6AB649.bin
│ ├── System.Runtime.Remoting.xml
│ │ └── 90E3E38A.bin
│ ├── System.Runtime.Serialization.4.0.0.0.Nullness.Generated.xml
│ │ └── 6462BE29.bin
│ ├── System.Runtime.Serialization.Attributes.xml
│ │ └── DB7B6773.bin
│ ├── System.Runtime.Serialization.Formatters.Soap.2.0.0.0.Contracts.xml
│ │ └── B448685F.bin
│ ├── System.Runtime.Serialization.Formatters.Soap.2.0.0.0.Nullness.Generated.xml
│ │ └── 45857DEF.bin
│ ├── System.Runtime.Serialization.Formatters.Soap.4.0.0.0.Contracts.xml
│ │ └── 8064A7D9.bin
│ ├── System.Runtime.Serialization.Formatters.Soap.4.0.0.0.Nullness.Generated.xml
│ │ └── BA0CCBA9.bin
│ ├── System.Runtime.Serialization.Formatters.Soap.xml
│ │ └── 958ED99B.bin
│ ├── System.Security.2.0.0.0.Contracts.xml
│ │ └── 9A29007F.bin
│ ├── System.Security.2.0.0.0.Nullness.Generated.xml
│ │ └── 789F26CF.bin
│ ├── System.Security.2.0.0.0.Pure.xml
│ │ └── C201FECC.bin
│ ├── System.Security.4.0.0.0.Contracts.xml
│ │ └── 2681BBF9.bin
│ ├── System.Security.4.0.0.0.Nullness.Generated.xml
│ │ └── 29497789.bin
│ ├── System.Security.4.0.0.0.Pure.xml
│ │ └── 6D31070A.bin
│ ├── System.Security.xml
│ │ └── 9B5E440F.bin
│ ├── System.ServiceProcess.2.0.0.0.Nullness.Generated.xml
│ │ └── 1A0AA44F.bin
│ ├── System.ServiceProcess.4.0.0.0.Nullness.Generated.xml
│ │ └── CAB4F509.bin
│ ├── System.ServiceProcess.xml
│ │ └── E3033A2F.bin
│ ├── System.Transactions.2.0.0.0.Nullness.Generated.xml
│ │ └── 914566CF.bin
│ ├── System.Transactions.4.0.0.0.Nullness.Generated.xml
│ │ └── 41EFB789.bin
│ ├── System.Transactions.xml
│ │ └── 27D2270E.bin
│ ├── System.Web.2.0.0.0.Contracts.xml
│ │ └── 999A555F.bin
│ ├── System.Web.2.0.0.0.Nullness.Generated.xml
│ │ └── 7E520AEF.bin
│ ├── System.Web.2.0.0.0.Pure.xml
│ │ └── 3461322C.bin
│ ├── System.Web.4.0.0.0.Contracts.xml
│ │ └── 65B694D9.bin
│ ├── System.Web.4.0.0.0.Nullness.Generated.xml
│ │ └── F2D958A9.bin
│ ├── System.Web.4.0.0.0.Pure.xml
│ │ └── DF903B6A.bin
│ ├── System.Web.ApplicationServices.4.0.0.0.Nullness.Generated.xml
│ │ └── E81227A9.bin
│ ├── System.Web.Attributes.xml
│ │ └── E90D01F3.bin
│ ├── System.Web.I18n.xml
│ │ └── 47D9EDD2.bin
│ ├── System.Web.RegularExpressions.xml
│ │ └── EFFF217C.bin
│ ├── System.Web.Services.2.0.0.0.Nullness.Generated.xml
│ │ └── 181C8CCF.bin
│ ├── System.Web.Services.4.0.0.0.Nullness.Generated.xml
│ │ └── C8C6DD89.bin
│ ├── System.Web.Services.Attributes.xml
│ │ └── 8AEDFE13.bin
│ ├── System.Web.Services.xml
│ │ └── CBF00FA9.bin
│ ├── System.Web.xml
│ │ └── 7FB6DEA9.bin
│ ├── System.Windows.Forms.2.0.0.0.Contracts.xml
│ │ └── CAF869DF.bin
│ ├── System.Windows.Forms.2.0.0.0.Nullness.Generated.xml
│ │ └── F20F2F6F.bin
│ ├── System.Windows.Forms.2.0.0.0.Pure.xml
│ │ └── E10076AC.bin
│ ├── System.Windows.Forms.4.0.0.0.Contracts.xml
│ │ └── 9714A959.bin
│ ├── System.Windows.Forms.4.0.0.0.Nullness.Generated.xml
│ │ └── 66967D29.bin
│ ├── System.Windows.Forms.4.0.0.0.Pure.xml
│ │ └── 8C2F7FEA.bin
│ ├── System.Windows.Forms.I18n.xml
│ │ └── ADBCB252.bin
│ ├── System.Windows.Forms.Manual.xml
│ │ └── 228712A6.bin
│ ├── System.Windows.Forms.xml
│ │ └── A586FAAD.bin
│ ├── System.Xaml.4.0.0.0.Nullness.Generated.xml
│ │ └── 2784BF49.bin
│ ├── System.xml
│ │ ├── 8DD176B7.bin
│ │ └── 9F8BE8B2.bin
│ ├── System.Xml.2.0.0.0.Contracts.xml
│ │ └── 9BB1333F.bin
│ ├── System.Xml.2.0.0.0.Nullness.Generated.xml
│ │ └── 11CDD78F.bin
│ ├── System.Xml.2.0.0.0.Pure.xml
│ │ └── 68EDDE0C.bin
│ ├── System.Xml.4.0.0.0.Contracts.xml
│ │ └── BCF613B9.bin
│ ├── System.Xml.4.0.0.0.Nullness.Generated.xml
│ │ └── 165DE549.bin
│ ├── System.Xml.4.0.0.0.Pure.xml
│ │ └── FC3CE64A.bin
│ ├── System.Xml.Attributes.xml
│ │ └── 5B68B653.bin
│ ├── System.Xml.I18n.xml
│ │ └── 9916D1B2.bin
│ ├── System.Xml.Linq.3.5.0.0.Contracts.xml
│ │ └── B5832A7B.bin
│ ├── System.Xml.Linq.3.5.0.0.Nullness.Generated.xml
│ │ └── 616A914B.bin
│ ├── System.Xml.Linq.3.5.0.0.Pure.xml
│ │ └── E8C7D948.bin
│ ├── System.Xml.Linq.4.0.0.0.Contracts.xml
│ │ └── 1D07B2F9.bin
│ ├── System.Xml.Linq.4.0.0.0.Nullness.Generated.xml
│ │ └── 77754E89.bin
│ ├── System.Xml.Linq.4.0.0.0.Pure.xml
│ │ └── F3609E0A.bin
│ ├── System.Xml.Linq.I18n.xml
│ │ └── C1E91C72.bin
│ └── System.Xml.xml
│ └── 729D3220.bin
├── UpgradeLog.XML
├── _UpgradeReport_Files
│ ├── UpgradeReport.css
│ ├── UpgradeReport_Minus.gif
│ ├── UpgradeReport_Plus.gif
│ └── UpgradeReport.xslt
└── 说明网站 必看.txt
203 directories, 254 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论