├── .gitignore ├── LICENSE ├── README.md └── SimpleUpdater ├── FSLib.App.SimpleUpdater.Generator ├── .gitignore ├── BuilderInterface │ ├── BuilderInterfaceBase.cs │ ├── ConsoleBuildInterface.cs │ ├── FormBuildInterface.cs │ └── FormBuildUi │ │ ├── MiniBuildUi.Designer.cs │ │ ├── MiniBuildUi.cs │ │ └── MiniBuildUi.resx ├── Controls │ ├── AboutPanel.Designer.cs │ ├── AboutPanel.cs │ ├── AboutPanel.resx │ ├── ArgumentGenerator.Designer.cs │ ├── ArgumentGenerator.cs │ ├── ArgumentGenerator.resx │ ├── FileComboBox.cs │ ├── FileConfiguration.Designer.cs │ ├── FileConfiguration.cs │ ├── FileConfiguration.resx │ ├── FileListView.cs │ ├── FileListView.resx │ ├── FileSysTree.cs │ ├── FileSysTree.resx │ ├── FolderNode.cs │ ├── OptionTab.Designer.cs │ ├── OptionTab.cs │ ├── OptionTab.resx │ ├── ProjectComponent.cs │ ├── RootNode.cs │ ├── ThemeConfig.Designer.cs │ ├── ThemeConfig.cs │ └── ThemeConfig.resx ├── Defination │ ├── AuProject.cs │ ├── FileTreeItem.cs │ ├── ProjectItem.cs │ └── ServerNode.cs ├── Dialogs │ ├── BuildingPackage.Designer.cs │ ├── BuildingPackage.cs │ ├── BuildingPackage.resx │ ├── BuildingPackage.zh-CN.resx │ ├── Main.Designer.cs │ ├── Main.cs │ ├── Main.resx │ ├── PackageGenerateResult.Designer.cs │ ├── PackageGenerateResult.cs │ ├── PackageGenerateResult.resx │ ├── SelectVerificationLevel.Designer.cs │ ├── SelectVerificationLevel.cs │ └── SelectVerificationLevel.resx ├── ExtensionMethods.cs ├── FSLib.App.SimpleUpdater.Generator.csproj ├── PackageEventArgs.cs ├── Program.cs ├── Properties │ ├── Annotations.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── accept.png │ ├── block_16.png │ ├── info_16.png │ └── tick_16.png ├── SR.Designer.cs ├── SR.resx ├── UpdatePackageBuilder.cs ├── Utils │ └── ProgressableStream.cs ├── ZipBuilder │ ├── ZipTask.cs │ └── ZipTaskState.cs ├── app.config ├── globe_download.ico └── ifish.snk ├── FSLib.App.SimpleUpdater.Tests ├── FSLib.App.SimpleUpdater.Tests.csproj └── UpdaterContextTest.cs ├── FSLib.App.SimpleUpdater.nuspec ├── FSLib.App.SimpleUpdater.sln ├── FSLib.App.SimpleUpdater ├── Defination │ ├── CancelableEventArgs.cs │ ├── FileVerificationLevel.cs │ ├── IUpdateNotify.cs │ ├── PackageInfo.cs │ ├── RequestCheckComponentFlagEventArgs.cs │ ├── RouteEventArgs.cs │ ├── UpdateCheckResult.cs │ ├── UpdateCheckState.cs │ ├── UpdateContext.cs │ ├── UpdateInfo.cs │ ├── UpdateMethod.cs │ ├── UpdateServerInfo.cs │ ├── VersionTooLowException.cs │ └── WebClientWrapper.cs ├── DeletePreviousProgramMethod.cs ├── Dialogs │ ├── AbstractUpdateBase.cs │ ├── CloseApp.Designer.cs │ ├── CloseApp.cs │ ├── CloseApp.en.resx │ ├── CloseApp.resx │ ├── DialogStyle.cs │ ├── EnsureUpdate.Designer.cs │ ├── EnsureUpdate.cs │ ├── EnsureUpdate.en.resx │ ├── EnsureUpdate.resx │ ├── MainWindow.Designer.cs │ ├── MainWindow.cs │ ├── MainWindow.en.resx │ ├── MainWindow.resx │ ├── MinmumVersionRequired.Designer.cs │ ├── MinmumVersionRequired.cs │ ├── MinmumVersionRequired.en.resx │ ├── MinmumVersionRequired.resx │ ├── ProgramExecuteTimeout.Designer.cs │ ├── ProgramExecuteTimeout.cs │ ├── ProgramExecuteTimeout.en.resx │ ├── ProgramExecuteTimeout.resx │ ├── SelfUpdate.Designer.cs │ ├── SelfUpdate.cs │ ├── SelfUpdate.en.resx │ ├── SelfUpdate.resx │ ├── UpdateFound.Designer.cs │ ├── UpdateFound.cs │ ├── UpdateFound.en.resx │ └── UpdateFound.resx ├── FSLib.App.SimpleUpdater.csproj ├── FileInstaller.cs ├── HiddenUiUpdateProxy.cs ├── ICCEmbedded │ ├── Checksums │ │ ├── Adler32.cs │ │ ├── CRC32.cs │ │ └── IChecksum.cs │ ├── Core │ │ ├── FileSystemScanner.cs │ │ ├── INameTransform.cs │ │ ├── IScanFilter.cs │ │ ├── NameFilter.cs │ │ ├── PathFilter.cs │ │ └── StreamUtils.cs │ ├── Encryption │ │ └── PkzipClassic.cs │ ├── SharpZipBaseException.cs │ └── Zip │ │ ├── Compression │ │ ├── Deflater.cs │ │ ├── DeflaterConstants.cs │ │ ├── DeflaterEngine.cs │ │ ├── DeflaterHuffman.cs │ │ ├── DeflaterPending.cs │ │ ├── Inflater.cs │ │ ├── InflaterDynHeader.cs │ │ ├── InflaterHuffmanTree.cs │ │ ├── PendingBuffer.cs │ │ └── Streams │ │ │ ├── DeflaterOutputStream.cs │ │ │ ├── InflaterInputStream.cs │ │ │ ├── OutputWindow.cs │ │ │ └── StreamManipulator.cs │ │ ├── FastZip.cs │ │ ├── IEntryFactory.cs │ │ ├── ZipConstants.cs │ │ ├── ZipEntry.cs │ │ ├── ZipEntryFactory.cs │ │ ├── ZipException.cs │ │ ├── ZipExtraData.cs │ │ ├── ZipFile.cs │ │ ├── ZipHelperStream.cs │ │ ├── ZipNameTransform.cs │ │ └── ZipOutputStream.cs ├── InstallFileEventArgs.cs ├── Logs │ ├── FileLogTarget.cs │ ├── ILogTarget.cs │ ├── ILogger.cs │ ├── LogEntry.cs │ ├── LogLevel.cs │ ├── LogManager.cs │ ├── LogTarget.cs │ └── Logger.cs ├── MultiServerUpdater.cs ├── NetUtility.cs ├── PackageDownloadException.cs ├── PackageDownloadProgressChangedEventArgs.cs ├── PackageEventArgs.cs ├── Program.cs ├── Properties │ ├── Annotations.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── QueryCloseApplicationEventArgs.cs ├── Resources │ ├── 05043139.gif │ ├── 16px_loading_1.gif │ ├── AUTOMATIC UPDATES_16x16-32.png │ ├── Info.png │ ├── Warning.png │ ├── block_16.png │ ├── cou_16_warning.png │ └── cou_32_refresh.png ├── RunExternalProcessEventArgs.cs ├── SR.Designer.cs ├── SR.en.resx ├── SR.resx ├── Updatable2Attribute.cs ├── UpdateControl │ ├── ControlBase.cs │ ├── ControlBase.en.resx │ ├── ControlBase.resx │ ├── DownloadingInfo.Designer.cs │ ├── DownloadingInfo.cs │ ├── DownloadingInfo.en.resx │ ├── DownloadingInfo.resx │ ├── NoUpdateFound.Designer.cs │ ├── NoUpdateFound.cs │ ├── NoUpdateFound.en.resx │ ├── NoUpdateFound.resx │ ├── RunUpdate.Designer.cs │ ├── RunUpdate.cs │ ├── RunUpdate.resx │ ├── UpdateError.Designer.cs │ ├── UpdateError.cs │ ├── UpdateError.en.resx │ ├── UpdateError.resx │ ├── UpdateFinished.Designer.cs │ ├── UpdateFinished.cs │ ├── UpdateFinished.en.resx │ └── UpdateFinished.resx ├── UpdateableAttribute.cs ├── Updater.Events.cs ├── Updater.Extend.cs ├── Updater.Static.cs ├── Updater.cs ├── Utilities │ ├── FSLib.App.Utilities.dll.gz │ ├── FSLib.App.Utilities.exe.gz │ ├── FSLib.App.Utilities.runtimeconfig.json.gz │ ├── Utilities_Net20.exe.gz │ ├── Utilities_Net40.exe.gz │ └── app.config.gz ├── Utility.cs ├── Wrapper │ ├── BackgroundWorker.cs │ ├── ExtensionMethod.cs │ ├── FunctionalForm.cs │ ├── RunworkEventArgs.cs │ ├── SlideComponent.cs │ ├── SmartAssembly.Attributes.cs │ └── XMLSerializeHelper.cs ├── content │ ├── App.config.install.xdt │ └── App.config.uninstall.xdt ├── ifish.snk └── updater.ico ├── FSLib.App.Utilities ├── FSLib.App.Utilities.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── ReadMe.md ├── UpdateTestHost.NetCore ├── Program.cs └── UpdateTestHost.NetCore.csproj ├── UpdateTestHost.NetCoreSingle ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ └── PublishProfiles │ │ └── FolderProfile.pubxml └── UpdateTestHost.NetCoreSingle.csproj ├── UpdateTestHost ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── UpdateTestHost.csproj ├── WindowsFormsApp1 ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs └── WindowsFormsApp1.csproj ├── sync_version.sh └── 更新附属工具集.cmd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/README.md -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.vs10x -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/BuilderInterfaceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/BuilderInterfaceBase.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/ConsoleBuildInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/ConsoleBuildInterface.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/FormBuildInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/FormBuildInterface.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/FormBuildUi/MiniBuildUi.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/FormBuildUi/MiniBuildUi.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/FormBuildUi/MiniBuildUi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/FormBuildUi/MiniBuildUi.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/FormBuildUi/MiniBuildUi.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/BuilderInterface/FormBuildUi/MiniBuildUi.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/AboutPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/AboutPanel.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/AboutPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/AboutPanel.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/AboutPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/AboutPanel.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ArgumentGenerator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ArgumentGenerator.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ArgumentGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ArgumentGenerator.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ArgumentGenerator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ArgumentGenerator.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileComboBox.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileConfiguration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileConfiguration.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileConfiguration.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileConfiguration.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileConfiguration.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileListView.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileListView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileListView.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileSysTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileSysTree.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileSysTree.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FileSysTree.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FolderNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/FolderNode.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/OptionTab.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/OptionTab.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/OptionTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/OptionTab.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/OptionTab.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/OptionTab.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ProjectComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ProjectComponent.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/RootNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/RootNode.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ThemeConfig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ThemeConfig.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ThemeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ThemeConfig.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ThemeConfig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Controls/ThemeConfig.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Defination/AuProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Defination/AuProject.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Defination/FileTreeItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Defination/FileTreeItem.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Defination/ProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Defination/ProjectItem.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Defination/ServerNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Defination/ServerNode.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/BuildingPackage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/BuildingPackage.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/BuildingPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/BuildingPackage.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/BuildingPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/BuildingPackage.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/BuildingPackage.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/BuildingPackage.zh-CN.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/Main.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/Main.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/Main.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/Main.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/Main.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/PackageGenerateResult.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/PackageGenerateResult.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/PackageGenerateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/PackageGenerateResult.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/PackageGenerateResult.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/PackageGenerateResult.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/SelectVerificationLevel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/SelectVerificationLevel.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/SelectVerificationLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/SelectVerificationLevel.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/SelectVerificationLevel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Dialogs/SelectVerificationLevel.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/ExtensionMethods.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/FSLib.App.SimpleUpdater.Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/FSLib.App.SimpleUpdater.Generator.csproj -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/PackageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/PackageEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Program.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Annotations.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Resources.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Properties/Settings.settings -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Resources/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Resources/accept.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Resources/block_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Resources/block_16.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Resources/info_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Resources/info_16.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Resources/tick_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Resources/tick_16.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/SR.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/SR.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/SR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/SR.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/UpdatePackageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/UpdatePackageBuilder.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Utils/ProgressableStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/Utils/ProgressableStream.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/ZipBuilder/ZipTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/ZipBuilder/ZipTask.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/ZipBuilder/ZipTaskState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/ZipBuilder/ZipTaskState.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/app.config -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/globe_download.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/globe_download.ico -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Generator/ifish.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Generator/ifish.snk -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Tests/FSLib.App.SimpleUpdater.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Tests/FSLib.App.SimpleUpdater.Tests.csproj -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.Tests/UpdaterContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.Tests/UpdaterContextTest.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.nuspec -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater.sln -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/CancelableEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/CancelableEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/FileVerificationLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/FileVerificationLevel.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/IUpdateNotify.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/IUpdateNotify.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/PackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/PackageInfo.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/RequestCheckComponentFlagEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/RequestCheckComponentFlagEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/RouteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/RouteEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateCheckResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateCheckResult.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateCheckState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateCheckState.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateContext.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateInfo.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateMethod.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateServerInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/UpdateServerInfo.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/VersionTooLowException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/VersionTooLowException.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Defination/WebClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Defination/WebClientWrapper.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/DeletePreviousProgramMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/DeletePreviousProgramMethod.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/AbstractUpdateBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/AbstractUpdateBase.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/CloseApp.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/CloseApp.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/CloseApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/CloseApp.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/CloseApp.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/CloseApp.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/CloseApp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/CloseApp.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/DialogStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/DialogStyle.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/EnsureUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/EnsureUpdate.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/EnsureUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/EnsureUpdate.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/EnsureUpdate.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/EnsureUpdate.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/EnsureUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/EnsureUpdate.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MainWindow.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MainWindow.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MainWindow.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MainWindow.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MainWindow.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MinmumVersionRequired.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MinmumVersionRequired.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MinmumVersionRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MinmumVersionRequired.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MinmumVersionRequired.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MinmumVersionRequired.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MinmumVersionRequired.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/MinmumVersionRequired.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/ProgramExecuteTimeout.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/ProgramExecuteTimeout.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/ProgramExecuteTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/ProgramExecuteTimeout.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/ProgramExecuteTimeout.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/ProgramExecuteTimeout.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/ProgramExecuteTimeout.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/ProgramExecuteTimeout.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/SelfUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/SelfUpdate.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/SelfUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/SelfUpdate.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/SelfUpdate.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/SelfUpdate.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/SelfUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/SelfUpdate.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/UpdateFound.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/UpdateFound.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/UpdateFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/UpdateFound.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/UpdateFound.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/UpdateFound.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/UpdateFound.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Dialogs/UpdateFound.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/FSLib.App.SimpleUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/FSLib.App.SimpleUpdater.csproj -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/FileInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/FileInstaller.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/HiddenUiUpdateProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/HiddenUiUpdateProxy.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Checksums/Adler32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Checksums/Adler32.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Checksums/CRC32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Checksums/CRC32.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Checksums/IChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Checksums/IChecksum.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/FileSystemScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/FileSystemScanner.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/INameTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/INameTransform.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/IScanFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/IScanFilter.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/NameFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/NameFilter.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/PathFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/PathFilter.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/StreamUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Core/StreamUtils.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Encryption/PkzipClassic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Encryption/PkzipClassic.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/SharpZipBaseException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/SharpZipBaseException.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Deflater.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/DeflaterConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/DeflaterConstants.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/DeflaterEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/DeflaterEngine.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/DeflaterHuffman.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/DeflaterHuffman.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/DeflaterPending.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/DeflaterPending.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Inflater.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/InflaterDynHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/InflaterDynHeader.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/InflaterHuffmanTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/InflaterHuffmanTree.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/PendingBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/PendingBuffer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Streams/DeflaterOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Streams/DeflaterOutputStream.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Streams/InflaterInputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Streams/InflaterInputStream.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Streams/OutputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Streams/OutputWindow.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Streams/StreamManipulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/Compression/Streams/StreamManipulator.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/FastZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/FastZip.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/IEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/IEntryFactory.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipConstants.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipEntry.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipEntryFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipEntryFactory.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipException.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipExtraData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipExtraData.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipFile.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipHelperStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipHelperStream.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipNameTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipNameTransform.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipOutputStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ICCEmbedded/Zip/ZipOutputStream.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/InstallFileEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/InstallFileEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Logs/FileLogTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Logs/FileLogTarget.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Logs/ILogTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Logs/ILogTarget.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Logs/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Logs/ILogger.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Logs/LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Logs/LogEntry.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Logs/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Logs/LogLevel.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Logs/LogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Logs/LogManager.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Logs/LogTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Logs/LogTarget.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Logs/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Logs/Logger.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/MultiServerUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/MultiServerUpdater.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/NetUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/NetUtility.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/PackageDownloadException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/PackageDownloadException.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/PackageDownloadProgressChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/PackageDownloadProgressChangedEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/PackageEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/PackageEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Program.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Annotations.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Resources.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Properties/Settings.settings -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/QueryCloseApplicationEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/QueryCloseApplicationEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Resources/05043139.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Resources/05043139.gif -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Resources/16px_loading_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Resources/16px_loading_1.gif -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Resources/AUTOMATIC UPDATES_16x16-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Resources/AUTOMATIC UPDATES_16x16-32.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Resources/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Resources/Info.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Resources/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Resources/Warning.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Resources/block_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Resources/block_16.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Resources/cou_16_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Resources/cou_16_warning.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Resources/cou_32_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Resources/cou_32_refresh.png -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/RunExternalProcessEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/RunExternalProcessEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/SR.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/SR.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/SR.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/SR.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/SR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/SR.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Updatable2Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Updatable2Attribute.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/ControlBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/ControlBase.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/ControlBase.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/ControlBase.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/ControlBase.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/ControlBase.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/DownloadingInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/DownloadingInfo.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/DownloadingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/DownloadingInfo.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/DownloadingInfo.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/DownloadingInfo.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/DownloadingInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/DownloadingInfo.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/NoUpdateFound.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/NoUpdateFound.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/NoUpdateFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/NoUpdateFound.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/NoUpdateFound.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/NoUpdateFound.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/NoUpdateFound.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/NoUpdateFound.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/RunUpdate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/RunUpdate.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/RunUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/RunUpdate.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/RunUpdate.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/RunUpdate.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateError.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateError.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateError.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateError.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateError.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateError.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateError.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateFinished.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateFinished.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateFinished.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateFinished.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateFinished.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateFinished.en.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateFinished.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateControl/UpdateFinished.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/UpdateableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/UpdateableAttribute.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Updater.Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Updater.Events.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Updater.Extend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Updater.Extend.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Updater.Static.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Updater.Static.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Updater.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/FSLib.App.Utilities.dll.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/FSLib.App.Utilities.dll.gz -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/FSLib.App.Utilities.exe.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/FSLib.App.Utilities.exe.gz -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/FSLib.App.Utilities.runtimeconfig.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/FSLib.App.Utilities.runtimeconfig.json.gz -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/Utilities_Net20.exe.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/Utilities_Net20.exe.gz -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/Utilities_Net40.exe.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/Utilities_Net40.exe.gz -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/app.config.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Utilities/app.config.gz -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Utility.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/BackgroundWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/BackgroundWorker.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/ExtensionMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/ExtensionMethod.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/FunctionalForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/FunctionalForm.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/RunworkEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/RunworkEventArgs.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/SlideComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/SlideComponent.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/SmartAssembly.Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/SmartAssembly.Attributes.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/XMLSerializeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/Wrapper/XMLSerializeHelper.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/content/App.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/content/App.config.install.xdt -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/content/App.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/content/App.config.uninstall.xdt -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/ifish.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/ifish.snk -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.SimpleUpdater/updater.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.SimpleUpdater/updater.ico -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.Utilities/FSLib.App.Utilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.Utilities/FSLib.App.Utilities.csproj -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.Utilities/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.Utilities/Program.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.Utilities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.Utilities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.Utilities/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.Utilities/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.Utilities/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.Utilities/Properties/Resources.resx -------------------------------------------------------------------------------- /SimpleUpdater/FSLib.App.Utilities/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/FSLib.App.Utilities/ReadMe.md -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost.NetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost.NetCore/Program.cs -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost.NetCore/UpdateTestHost.NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost.NetCore/UpdateTestHost.NetCore.csproj -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost.NetCoreSingle/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost.NetCoreSingle/Form1.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost.NetCoreSingle/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost.NetCoreSingle/Form1.cs -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost.NetCoreSingle/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost.NetCoreSingle/Form1.resx -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost.NetCoreSingle/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost.NetCoreSingle/Program.cs -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost.NetCoreSingle/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost.NetCoreSingle/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost.NetCoreSingle/UpdateTestHost.NetCoreSingle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost.NetCoreSingle/UpdateTestHost.NetCoreSingle.csproj -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost/Program.cs -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost/Properties/Resources.resx -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost/Properties/Settings.settings -------------------------------------------------------------------------------- /SimpleUpdater/UpdateTestHost/UpdateTestHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/UpdateTestHost/UpdateTestHost.csproj -------------------------------------------------------------------------------- /SimpleUpdater/WindowsFormsApp1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/WindowsFormsApp1/Form1.Designer.cs -------------------------------------------------------------------------------- /SimpleUpdater/WindowsFormsApp1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/WindowsFormsApp1/Form1.cs -------------------------------------------------------------------------------- /SimpleUpdater/WindowsFormsApp1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/WindowsFormsApp1/Form1.resx -------------------------------------------------------------------------------- /SimpleUpdater/WindowsFormsApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/WindowsFormsApp1/Program.cs -------------------------------------------------------------------------------- /SimpleUpdater/WindowsFormsApp1/WindowsFormsApp1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/WindowsFormsApp1/WindowsFormsApp1.csproj -------------------------------------------------------------------------------- /SimpleUpdater/sync_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/sync_version.sh -------------------------------------------------------------------------------- /SimpleUpdater/更新附属工具集.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iccfish/FSLib.App.SimpleUpdater/HEAD/SimpleUpdater/更新附属工具集.cmd --------------------------------------------------------------------------------