├── .gitignore ├── LICENSE ├── README.md ├── SharpUpdater.sln ├── assets ├── SharpUpdater-logo.png └── icon32x32.ico └── src ├── CLI ├── CommandHandlers │ ├── GlobalSourceCommandHandler.cs │ ├── InitIgnoreFileCommandHandler.cs │ ├── InitManifestFileCommandHandler.cs │ ├── PackCommandHandler.cs │ └── PushCommandHandler.cs ├── ConsoleExtensions.cs ├── Program.cs ├── ProjectHolder.cs ├── Properties │ └── launchSettings.json ├── README.md ├── SharpUpdater.CLI.csproj └── icon32x32.ico ├── Clients ├── WinForms-DotNet4 │ ├── App.config │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WinForms-DotNet4.csproj │ └── packages.config └── WinForms-DotNet8 │ ├── BaseForm.cs │ ├── BaseForm.resx │ ├── BaseForm.zh-Hans.resx │ ├── Bootstrapper.cs │ ├── Common.cs │ ├── ConnectionForm.Designer.cs │ ├── ConnectionForm.cs │ ├── ConnectionForm.resx │ ├── ConnectionForm.zh-Hans.resx │ ├── Installer.cs │ ├── Program.cs │ ├── Properties │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── UpdateForm.cs │ ├── UpdateForm.designer.cs │ ├── UpdateForm.resx │ ├── UpdateForm.zh-Hans.resx │ ├── WinForms-DotNet8.csproj │ ├── ZipHelper.cs │ └── update.ico ├── Core ├── Constants.cs ├── Manifest.cs ├── Packaging │ ├── PackageBuilder.cs │ ├── PackageFeedResolver.cs │ └── PackageFeedSummary.cs ├── ReleaseFile.cs ├── Settings.cs ├── SharpUpdater.Core.csproj ├── Templates.cs ├── UpdateInfo.cs ├── UpdateLog.cs └── Util │ ├── CmdHelper.cs │ ├── Downloader.cs │ ├── FileUtil.cs │ ├── HttpUtil.cs │ ├── IgnoreFileParser.cs │ ├── Logger.cs │ ├── ManifestGatherer.cs │ ├── Monitor.cs │ ├── PackageUploader.cs │ ├── ProjectHelper.cs │ ├── UriUtility.cs │ ├── VersionUtil.cs │ └── XmlSerializerHelper.cs └── VSIX ├── Commands ├── AddIgnoreFileCommand.cs ├── AddManifestFileCommand.cs └── SharpPackCommand.cs ├── Common.cs ├── FileListItem.cs ├── LICENSE.txt ├── Properties └── AssemblyInfo.cs ├── README.md ├── Resource.Designer.cs ├── Resource.resx ├── Resources ├── Command2Package.ico ├── SharpUpdater-logo16x16.ico └── folder.png ├── SharpUpdater-VsTool-Dialog.png ├── SharpUpdater-VsTool-Menus.png ├── SharpUpdater-logo.png ├── SharpUpdater.VsTool.csproj ├── SharpUpdaterPackage.cs ├── SharpUpdaterPackage.vsct ├── SharpUpdaterPackage1.cs ├── Util ├── CacheHelper.cs ├── ManifestGatherer.cs └── SolutionDataCache.cs ├── Wizard ├── ManifestGrid.Designer.cs ├── ManifestGrid.cs ├── ManifestGrid.resx ├── PackingWizard.cs ├── PackingWizard.designer.cs ├── PackingWizard.resx ├── ProductInfoControl.Designer.cs ├── ProductInfoControl.cs └── ProductInfoControl.resx ├── release_notes.txt └── source.extension.vsixmanifest /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/README.md -------------------------------------------------------------------------------- /SharpUpdater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/SharpUpdater.sln -------------------------------------------------------------------------------- /assets/SharpUpdater-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/assets/SharpUpdater-logo.png -------------------------------------------------------------------------------- /assets/icon32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/assets/icon32x32.ico -------------------------------------------------------------------------------- /src/CLI/CommandHandlers/GlobalSourceCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/CommandHandlers/GlobalSourceCommandHandler.cs -------------------------------------------------------------------------------- /src/CLI/CommandHandlers/InitIgnoreFileCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/CommandHandlers/InitIgnoreFileCommandHandler.cs -------------------------------------------------------------------------------- /src/CLI/CommandHandlers/InitManifestFileCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/CommandHandlers/InitManifestFileCommandHandler.cs -------------------------------------------------------------------------------- /src/CLI/CommandHandlers/PackCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/CommandHandlers/PackCommandHandler.cs -------------------------------------------------------------------------------- /src/CLI/CommandHandlers/PushCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/CommandHandlers/PushCommandHandler.cs -------------------------------------------------------------------------------- /src/CLI/ConsoleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/ConsoleExtensions.cs -------------------------------------------------------------------------------- /src/CLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/Program.cs -------------------------------------------------------------------------------- /src/CLI/ProjectHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/ProjectHolder.cs -------------------------------------------------------------------------------- /src/CLI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/CLI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/README.md -------------------------------------------------------------------------------- /src/CLI/SharpUpdater.CLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/SharpUpdater.CLI.csproj -------------------------------------------------------------------------------- /src/CLI/icon32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/CLI/icon32x32.ico -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/App.config -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/FodyWeavers.xsd -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/Program.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/WinForms-DotNet4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/WinForms-DotNet4.csproj -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet4/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet4/packages.config -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/BaseForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/BaseForm.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/BaseForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/BaseForm.resx -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/BaseForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/BaseForm.zh-Hans.resx -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/Bootstrapper.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/Common.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/ConnectionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/ConnectionForm.Designer.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/ConnectionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/ConnectionForm.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/ConnectionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/ConnectionForm.resx -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/ConnectionForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/ConnectionForm.zh-Hans.resx -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/Installer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/Installer.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/Program.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/UpdateForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/UpdateForm.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/UpdateForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/UpdateForm.designer.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/UpdateForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/UpdateForm.resx -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/UpdateForm.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/UpdateForm.zh-Hans.resx -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/WinForms-DotNet8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/WinForms-DotNet8.csproj -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/ZipHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/ZipHelper.cs -------------------------------------------------------------------------------- /src/Clients/WinForms-DotNet8/update.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Clients/WinForms-DotNet8/update.ico -------------------------------------------------------------------------------- /src/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Constants.cs -------------------------------------------------------------------------------- /src/Core/Manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Manifest.cs -------------------------------------------------------------------------------- /src/Core/Packaging/PackageBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Packaging/PackageBuilder.cs -------------------------------------------------------------------------------- /src/Core/Packaging/PackageFeedResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Packaging/PackageFeedResolver.cs -------------------------------------------------------------------------------- /src/Core/Packaging/PackageFeedSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Packaging/PackageFeedSummary.cs -------------------------------------------------------------------------------- /src/Core/ReleaseFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/ReleaseFile.cs -------------------------------------------------------------------------------- /src/Core/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Settings.cs -------------------------------------------------------------------------------- /src/Core/SharpUpdater.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/SharpUpdater.Core.csproj -------------------------------------------------------------------------------- /src/Core/Templates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Templates.cs -------------------------------------------------------------------------------- /src/Core/UpdateInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/UpdateInfo.cs -------------------------------------------------------------------------------- /src/Core/UpdateLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/UpdateLog.cs -------------------------------------------------------------------------------- /src/Core/Util/CmdHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/CmdHelper.cs -------------------------------------------------------------------------------- /src/Core/Util/Downloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/Downloader.cs -------------------------------------------------------------------------------- /src/Core/Util/FileUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/FileUtil.cs -------------------------------------------------------------------------------- /src/Core/Util/HttpUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/HttpUtil.cs -------------------------------------------------------------------------------- /src/Core/Util/IgnoreFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/IgnoreFileParser.cs -------------------------------------------------------------------------------- /src/Core/Util/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/Logger.cs -------------------------------------------------------------------------------- /src/Core/Util/ManifestGatherer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/ManifestGatherer.cs -------------------------------------------------------------------------------- /src/Core/Util/Monitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/Monitor.cs -------------------------------------------------------------------------------- /src/Core/Util/PackageUploader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/PackageUploader.cs -------------------------------------------------------------------------------- /src/Core/Util/ProjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/ProjectHelper.cs -------------------------------------------------------------------------------- /src/Core/Util/UriUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/UriUtility.cs -------------------------------------------------------------------------------- /src/Core/Util/VersionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/VersionUtil.cs -------------------------------------------------------------------------------- /src/Core/Util/XmlSerializerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/Core/Util/XmlSerializerHelper.cs -------------------------------------------------------------------------------- /src/VSIX/Commands/AddIgnoreFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Commands/AddIgnoreFileCommand.cs -------------------------------------------------------------------------------- /src/VSIX/Commands/AddManifestFileCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Commands/AddManifestFileCommand.cs -------------------------------------------------------------------------------- /src/VSIX/Commands/SharpPackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Commands/SharpPackCommand.cs -------------------------------------------------------------------------------- /src/VSIX/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Common.cs -------------------------------------------------------------------------------- /src/VSIX/FileListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/FileListItem.cs -------------------------------------------------------------------------------- /src/VSIX/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/LICENSE.txt -------------------------------------------------------------------------------- /src/VSIX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VSIX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/README.md -------------------------------------------------------------------------------- /src/VSIX/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Resource.Designer.cs -------------------------------------------------------------------------------- /src/VSIX/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Resource.resx -------------------------------------------------------------------------------- /src/VSIX/Resources/Command2Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Resources/Command2Package.ico -------------------------------------------------------------------------------- /src/VSIX/Resources/SharpUpdater-logo16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Resources/SharpUpdater-logo16x16.ico -------------------------------------------------------------------------------- /src/VSIX/Resources/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Resources/folder.png -------------------------------------------------------------------------------- /src/VSIX/SharpUpdater-VsTool-Dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/SharpUpdater-VsTool-Dialog.png -------------------------------------------------------------------------------- /src/VSIX/SharpUpdater-VsTool-Menus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/SharpUpdater-VsTool-Menus.png -------------------------------------------------------------------------------- /src/VSIX/SharpUpdater-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/SharpUpdater-logo.png -------------------------------------------------------------------------------- /src/VSIX/SharpUpdater.VsTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/SharpUpdater.VsTool.csproj -------------------------------------------------------------------------------- /src/VSIX/SharpUpdaterPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/SharpUpdaterPackage.cs -------------------------------------------------------------------------------- /src/VSIX/SharpUpdaterPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/SharpUpdaterPackage.vsct -------------------------------------------------------------------------------- /src/VSIX/SharpUpdaterPackage1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/SharpUpdaterPackage1.cs -------------------------------------------------------------------------------- /src/VSIX/Util/CacheHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Util/CacheHelper.cs -------------------------------------------------------------------------------- /src/VSIX/Util/ManifestGatherer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Util/ManifestGatherer.cs -------------------------------------------------------------------------------- /src/VSIX/Util/SolutionDataCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Util/SolutionDataCache.cs -------------------------------------------------------------------------------- /src/VSIX/Wizard/ManifestGrid.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Wizard/ManifestGrid.Designer.cs -------------------------------------------------------------------------------- /src/VSIX/Wizard/ManifestGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Wizard/ManifestGrid.cs -------------------------------------------------------------------------------- /src/VSIX/Wizard/ManifestGrid.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Wizard/ManifestGrid.resx -------------------------------------------------------------------------------- /src/VSIX/Wizard/PackingWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Wizard/PackingWizard.cs -------------------------------------------------------------------------------- /src/VSIX/Wizard/PackingWizard.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Wizard/PackingWizard.designer.cs -------------------------------------------------------------------------------- /src/VSIX/Wizard/PackingWizard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Wizard/PackingWizard.resx -------------------------------------------------------------------------------- /src/VSIX/Wizard/ProductInfoControl.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Wizard/ProductInfoControl.Designer.cs -------------------------------------------------------------------------------- /src/VSIX/Wizard/ProductInfoControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Wizard/ProductInfoControl.cs -------------------------------------------------------------------------------- /src/VSIX/Wizard/ProductInfoControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/Wizard/ProductInfoControl.resx -------------------------------------------------------------------------------- /src/VSIX/release_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/release_notes.txt -------------------------------------------------------------------------------- /src/VSIX/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnsharp/SharpUpdater/HEAD/src/VSIX/source.extension.vsixmanifest --------------------------------------------------------------------------------