├── .gitignore ├── CHANGELOG.md ├── Domain ├── .gitignore ├── Core │ ├── ImageFile.cs │ ├── L4d2Folder.cs │ ├── ModBrief.cs │ ├── ModBriefModule │ │ ├── ModBriefList.cs │ │ ├── ModBriefSpecification.cs │ │ └── ModBriefSpecificationBuilder.cs │ ├── ModStatusModule │ │ └── AddonListRepository.cs │ ├── VpkId.cs │ └── WorkshopInfoModule │ │ ├── PO_WorkshopInfo.cs │ │ ├── Tag.cs │ │ ├── WorkshopInfo.cs │ │ └── WorkshopInfoRepository.cs ├── Domain.csproj ├── ModFile │ ├── ModFile.cs │ ├── ModFileChanged.cs │ ├── ModFileRepository.cs │ ├── ModScanner.cs │ └── PO_ModFile.cs ├── ModLocalInfo │ ├── AddonInfo.cs │ ├── BatchAnalysis.cs │ ├── Category.cs │ ├── CategoryRuleGroup.cs │ ├── CategoryRuleGroupFactory.cs │ ├── LocalInfo.cs │ ├── LocalInfoRepository.cs │ ├── ModAnalysisServer.cs │ ├── PO_LocalInfo.cs │ └── VpkFile.cs ├── ModSorter │ ├── IModSorter.cs │ ├── ModSorter_ByAuthor.cs │ ├── ModSorter_ByEnabled.cs │ ├── ModSorter_ByFile.cs │ ├── ModSorter_ByName.cs │ └── ModSorter_Default.cs └── Settings │ ├── Setting.cs │ └── SettingFP.cs ├── Infrastructure ├── .gitignore ├── DapperHelper.cs ├── Entity.cs ├── Infrastructure.csproj └── Utility │ ├── FPExtension.cs │ ├── FileExplorerUtils.cs │ └── Maybe.cs ├── L4d2_Mod_Manager.sln ├── L4d2_Mod_Manager_Tool ├── .gitignore ├── App │ ├── BackgroundTaskApplication.cs │ ├── ModFileApplication.cs │ └── WorkshopInfoApplication.cs ├── Arthitecture │ ├── NoVtfConverter.cs │ └── RunProcess.cs ├── DTO │ └── BackgroundTaskProgress.cs ├── Dialog_AboutSoftware.Designer.cs ├── Dialog_AboutSoftware.cs ├── Dialog_AboutSoftware.resx ├── Domain │ ├── AddonList.cs │ ├── Mod.cs │ ├── ModDetail.cs │ ├── ModFile.cs │ ├── ModFilter │ │ ├── AndFilter.cs │ │ ├── EmptyFilter.cs │ │ ├── IModFilter.cs │ │ ├── ModBlurFilter.cs │ │ ├── ModFilterBuilder.cs │ │ ├── OrFilter.cs │ │ └── PredicateModFilter.cs │ ├── ModInfo.cs │ ├── ModPreviewInfo.cs │ ├── ModSorter │ │ ├── IModSorter.cs │ │ ├── ModSorter_ByAuthor.cs │ │ ├── ModSorter_ByEnabled.cs │ │ ├── ModSorter_ByFile.cs │ │ ├── ModSorter_ByName.cs │ │ └── ModSorter_Default.cs │ ├── ModTag.cs │ ├── ModWorkshopInfo.cs │ ├── Repository │ │ ├── AddonListRepository.cs │ │ ├── ModDetailQuery.cs │ │ ├── ModFileRepository.cs │ │ ├── ModRepository.cs │ │ ├── SQLiteDatabaseRepositoryBase.cs │ │ └── WorkshopItemRepository.cs │ ├── Specifications │ │ ├── ModDetailSpecification.cs │ │ └── ModDetailSpecificationSqliteExtend.cs │ ├── VpkSnippet.cs │ └── WorkshopItem.cs ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Form_RunningTask.Designer.cs ├── Form_RunningTask.cs ├── Form_RunningTask.resx ├── Form_Settings.Designer.cs ├── Form_Settings.cs ├── Form_Settings.resx ├── L4d2_Mod_Manager_Tool.csproj ├── L4d2_Mod_Manager_Tool.csproj.user ├── Module │ └── FileExplorer │ │ └── FileExplorerUtils.cs ├── Program.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── ascending.png │ ├── bgtask.png │ ├── categories.json │ ├── descending.png │ ├── icon_large.jpg │ ├── no-image.png │ ├── off.png │ ├── on.png │ ├── steam_api.dll │ ├── steam_api64.dll │ └── steamworkshop.cer ├── Service │ ├── AddonInfoDownload │ │ ├── AddonInfoDownloadService.cs │ │ ├── IAddonInfoDownloadStrategy.cs │ │ ├── SpiderAddonInfoDownloadStrategy.cs │ │ └── SteamworksAddonInfoDownloadStrategy.cs │ ├── AddonListService.cs │ ├── L4d2Folder.cs │ ├── ModCategoryService.cs │ ├── ModCrossServer.cs │ ├── ModFileService.cs │ ├── ModOperation.cs │ ├── Spider.cs │ ├── VPKServices.cs │ └── X509CertificateStore.cs ├── TaskFramework │ ├── BackgroundTask.cs │ ├── BackgroundTaskList.cs │ └── MessageTask.cs ├── Utility │ ├── FPExtension.cs │ ├── Maybe.cs │ └── WinformUtility.cs ├── Widget │ ├── ListViewColumnSorter.cs │ ├── MenuItemsZipper.cs │ ├── VOBackgroundTaskModel.cs │ ├── Widget_BackgroundTask.Designer.cs │ ├── Widget_BackgroundTask.cs │ ├── Widget_BackgroundTask.resx │ ├── Widget_BackgroundTaskList.Designer.cs │ ├── Widget_BackgroundTaskList.cs │ ├── Widget_BackgroundTaskList.resx │ ├── Widget_FilterMod.Designer.cs │ ├── Widget_FilterMod.cs │ ├── Widget_FilterMod.resx │ ├── Widget_ModOverview.Designer.cs │ ├── Widget_ModOverview.cs │ ├── Widget_ModOverview.resx │ ├── Widget_TagSelector.Designer.cs │ ├── Widget_TagSelector.cs │ └── Widget_TagSelector.resx ├── icon.ico └── icon_large.ico ├── README.md ├── SharpVPK ├── .gitignore ├── ArchivePart.cs ├── Exceptions │ └── ArchiveParsingException.cs ├── IVpkArchiveHeader.cs ├── LICENSE ├── SharpVPK.csproj ├── V1 │ ├── VpkArchiveHeaderV1.cs │ └── VpkReaderV1.cs ├── V2 │ ├── VpkArchiveHeaderV2.cs │ └── VpkReaderV2.cs ├── VpkArchive.cs ├── VpkDirectory.cs ├── VpkEntry.cs └── VpkReaderBase.cs └── img ├── banner.png ├── find_authoringtools.jpg ├── menu_option.jpg ├── modenabler.jpg ├── modinfo_strategyStatus.jpg ├── option_dialog.jpg ├── sort_header.jpg ├── steamtools.jpg └── yishi1_1.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Domain/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ -------------------------------------------------------------------------------- /Domain/Core/ImageFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/ImageFile.cs -------------------------------------------------------------------------------- /Domain/Core/L4d2Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/L4d2Folder.cs -------------------------------------------------------------------------------- /Domain/Core/ModBrief.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/ModBrief.cs -------------------------------------------------------------------------------- /Domain/Core/ModBriefModule/ModBriefList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/ModBriefModule/ModBriefList.cs -------------------------------------------------------------------------------- /Domain/Core/ModBriefModule/ModBriefSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/ModBriefModule/ModBriefSpecification.cs -------------------------------------------------------------------------------- /Domain/Core/ModBriefModule/ModBriefSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/ModBriefModule/ModBriefSpecificationBuilder.cs -------------------------------------------------------------------------------- /Domain/Core/ModStatusModule/AddonListRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/ModStatusModule/AddonListRepository.cs -------------------------------------------------------------------------------- /Domain/Core/VpkId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/VpkId.cs -------------------------------------------------------------------------------- /Domain/Core/WorkshopInfoModule/PO_WorkshopInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/WorkshopInfoModule/PO_WorkshopInfo.cs -------------------------------------------------------------------------------- /Domain/Core/WorkshopInfoModule/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/WorkshopInfoModule/Tag.cs -------------------------------------------------------------------------------- /Domain/Core/WorkshopInfoModule/WorkshopInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/WorkshopInfoModule/WorkshopInfo.cs -------------------------------------------------------------------------------- /Domain/Core/WorkshopInfoModule/WorkshopInfoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Core/WorkshopInfoModule/WorkshopInfoRepository.cs -------------------------------------------------------------------------------- /Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Domain.csproj -------------------------------------------------------------------------------- /Domain/ModFile/ModFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModFile/ModFile.cs -------------------------------------------------------------------------------- /Domain/ModFile/ModFileChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModFile/ModFileChanged.cs -------------------------------------------------------------------------------- /Domain/ModFile/ModFileRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModFile/ModFileRepository.cs -------------------------------------------------------------------------------- /Domain/ModFile/ModScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModFile/ModScanner.cs -------------------------------------------------------------------------------- /Domain/ModFile/PO_ModFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModFile/PO_ModFile.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/AddonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/AddonInfo.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/BatchAnalysis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/BatchAnalysis.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/Category.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/CategoryRuleGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/CategoryRuleGroup.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/CategoryRuleGroupFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/CategoryRuleGroupFactory.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/LocalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/LocalInfo.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/LocalInfoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/LocalInfoRepository.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/ModAnalysisServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/ModAnalysisServer.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/PO_LocalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/PO_LocalInfo.cs -------------------------------------------------------------------------------- /Domain/ModLocalInfo/VpkFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModLocalInfo/VpkFile.cs -------------------------------------------------------------------------------- /Domain/ModSorter/IModSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModSorter/IModSorter.cs -------------------------------------------------------------------------------- /Domain/ModSorter/ModSorter_ByAuthor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModSorter/ModSorter_ByAuthor.cs -------------------------------------------------------------------------------- /Domain/ModSorter/ModSorter_ByEnabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModSorter/ModSorter_ByEnabled.cs -------------------------------------------------------------------------------- /Domain/ModSorter/ModSorter_ByFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModSorter/ModSorter_ByFile.cs -------------------------------------------------------------------------------- /Domain/ModSorter/ModSorter_ByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModSorter/ModSorter_ByName.cs -------------------------------------------------------------------------------- /Domain/ModSorter/ModSorter_Default.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/ModSorter/ModSorter_Default.cs -------------------------------------------------------------------------------- /Domain/Settings/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Settings/Setting.cs -------------------------------------------------------------------------------- /Domain/Settings/SettingFP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Domain/Settings/SettingFP.cs -------------------------------------------------------------------------------- /Infrastructure/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ -------------------------------------------------------------------------------- /Infrastructure/DapperHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Infrastructure/DapperHelper.cs -------------------------------------------------------------------------------- /Infrastructure/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Infrastructure/Entity.cs -------------------------------------------------------------------------------- /Infrastructure/Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Infrastructure/Infrastructure.csproj -------------------------------------------------------------------------------- /Infrastructure/Utility/FPExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Infrastructure/Utility/FPExtension.cs -------------------------------------------------------------------------------- /Infrastructure/Utility/FileExplorerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Infrastructure/Utility/FileExplorerUtils.cs -------------------------------------------------------------------------------- /Infrastructure/Utility/Maybe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/Infrastructure/Utility/Maybe.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager.sln -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/App/BackgroundTaskApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/App/BackgroundTaskApplication.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/App/ModFileApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/App/ModFileApplication.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/App/WorkshopInfoApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/App/WorkshopInfoApplication.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Arthitecture/NoVtfConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Arthitecture/NoVtfConverter.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Arthitecture/RunProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Arthitecture/RunProcess.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/DTO/BackgroundTaskProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/DTO/BackgroundTaskProgress.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Dialog_AboutSoftware.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Dialog_AboutSoftware.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Dialog_AboutSoftware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Dialog_AboutSoftware.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Dialog_AboutSoftware.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Dialog_AboutSoftware.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/AddonList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/AddonList.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/Mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/Mod.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModDetail.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModFile.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModFilter/AndFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModFilter/AndFilter.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModFilter/EmptyFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModFilter/EmptyFilter.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModFilter/IModFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModFilter/IModFilter.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModFilter/ModBlurFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModFilter/ModBlurFilter.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModFilter/ModFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModFilter/ModFilterBuilder.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModFilter/OrFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModFilter/OrFilter.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModFilter/PredicateModFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModFilter/PredicateModFilter.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModInfo.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModPreviewInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModPreviewInfo.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModSorter/IModSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModSorter/IModSorter.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_ByAuthor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_ByAuthor.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_ByEnabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_ByEnabled.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_ByFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_ByFile.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_ByName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_ByName.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_Default.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModSorter/ModSorter_Default.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModTag.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/ModWorkshopInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/ModWorkshopInfo.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/Repository/AddonListRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/Repository/AddonListRepository.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/Repository/ModDetailQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/Repository/ModDetailQuery.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/Repository/ModFileRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/Repository/ModFileRepository.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/Repository/ModRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/Repository/ModRepository.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/Repository/SQLiteDatabaseRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/Repository/SQLiteDatabaseRepositoryBase.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/Repository/WorkshopItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/Repository/WorkshopItemRepository.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/Specifications/ModDetailSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/Specifications/ModDetailSpecification.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/Specifications/ModDetailSpecificationSqliteExtend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/Specifications/ModDetailSpecificationSqliteExtend.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/VpkSnippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/VpkSnippet.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Domain/WorkshopItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Domain/WorkshopItem.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Form1.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Form1.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Form1.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Form_RunningTask.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Form_RunningTask.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Form_RunningTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Form_RunningTask.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Form_RunningTask.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Form_RunningTask.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Form_Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Form_Settings.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Form_Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Form_Settings.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Form_Settings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Form_Settings.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/L4d2_Mod_Manager_Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/L4d2_Mod_Manager_Tool.csproj -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/L4d2_Mod_Manager_Tool.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/L4d2_Mod_Manager_Tool.csproj.user -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Module/FileExplorer/FileExplorerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Module/FileExplorer/FileExplorerUtils.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Program.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Properties/Resources.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/ascending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/ascending.png -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/bgtask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/bgtask.png -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/categories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/categories.json -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/descending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/descending.png -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/icon_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/icon_large.jpg -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/no-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/no-image.png -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/off.png -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/on.png -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/steam_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/steam_api.dll -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/steam_api64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/steam_api64.dll -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Resources/steamworkshop.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Resources/steamworkshop.cer -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/AddonInfoDownload/AddonInfoDownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/AddonInfoDownload/AddonInfoDownloadService.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/AddonInfoDownload/IAddonInfoDownloadStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/AddonInfoDownload/IAddonInfoDownloadStrategy.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/AddonInfoDownload/SpiderAddonInfoDownloadStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/AddonInfoDownload/SpiderAddonInfoDownloadStrategy.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/AddonInfoDownload/SteamworksAddonInfoDownloadStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/AddonInfoDownload/SteamworksAddonInfoDownloadStrategy.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/AddonListService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/AddonListService.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/L4d2Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/L4d2Folder.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/ModCategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/ModCategoryService.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/ModCrossServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/ModCrossServer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/ModFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/ModFileService.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/ModOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/ModOperation.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/Spider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/Spider.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/VPKServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/VPKServices.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Service/X509CertificateStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Service/X509CertificateStore.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/TaskFramework/BackgroundTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/TaskFramework/BackgroundTask.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/TaskFramework/BackgroundTaskList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/TaskFramework/BackgroundTaskList.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/TaskFramework/MessageTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/TaskFramework/MessageTask.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Utility/FPExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Utility/FPExtension.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Utility/Maybe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Utility/Maybe.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Utility/WinformUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Utility/WinformUtility.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/ListViewColumnSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/ListViewColumnSorter.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/MenuItemsZipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/MenuItemsZipper.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/VOBackgroundTaskModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/VOBackgroundTaskModel.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTask.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTask.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTask.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTask.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTask.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTaskList.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTaskList.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTaskList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTaskList.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTaskList.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_BackgroundTaskList.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_FilterMod.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_FilterMod.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_FilterMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_FilterMod.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_FilterMod.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_FilterMod.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_ModOverview.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_ModOverview.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_ModOverview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_ModOverview.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_ModOverview.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_ModOverview.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_TagSelector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_TagSelector.Designer.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_TagSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_TagSelector.cs -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/Widget/Widget_TagSelector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/Widget/Widget_TagSelector.resx -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/icon.ico -------------------------------------------------------------------------------- /L4d2_Mod_Manager_Tool/icon_large.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/L4d2_Mod_Manager_Tool/icon_large.ico -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/README.md -------------------------------------------------------------------------------- /SharpVPK/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ -------------------------------------------------------------------------------- /SharpVPK/ArchivePart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/ArchivePart.cs -------------------------------------------------------------------------------- /SharpVPK/Exceptions/ArchiveParsingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/Exceptions/ArchiveParsingException.cs -------------------------------------------------------------------------------- /SharpVPK/IVpkArchiveHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/IVpkArchiveHeader.cs -------------------------------------------------------------------------------- /SharpVPK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/LICENSE -------------------------------------------------------------------------------- /SharpVPK/SharpVPK.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/SharpVPK.csproj -------------------------------------------------------------------------------- /SharpVPK/V1/VpkArchiveHeaderV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/V1/VpkArchiveHeaderV1.cs -------------------------------------------------------------------------------- /SharpVPK/V1/VpkReaderV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/V1/VpkReaderV1.cs -------------------------------------------------------------------------------- /SharpVPK/V2/VpkArchiveHeaderV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/V2/VpkArchiveHeaderV2.cs -------------------------------------------------------------------------------- /SharpVPK/V2/VpkReaderV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/V2/VpkReaderV2.cs -------------------------------------------------------------------------------- /SharpVPK/VpkArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/VpkArchive.cs -------------------------------------------------------------------------------- /SharpVPK/VpkDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/VpkDirectory.cs -------------------------------------------------------------------------------- /SharpVPK/VpkEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/VpkEntry.cs -------------------------------------------------------------------------------- /SharpVPK/VpkReaderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/SharpVPK/VpkReaderBase.cs -------------------------------------------------------------------------------- /img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/img/banner.png -------------------------------------------------------------------------------- /img/find_authoringtools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/img/find_authoringtools.jpg -------------------------------------------------------------------------------- /img/menu_option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/img/menu_option.jpg -------------------------------------------------------------------------------- /img/modenabler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/img/modenabler.jpg -------------------------------------------------------------------------------- /img/modinfo_strategyStatus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/img/modinfo_strategyStatus.jpg -------------------------------------------------------------------------------- /img/option_dialog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/img/option_dialog.jpg -------------------------------------------------------------------------------- /img/sort_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/img/sort_header.jpg -------------------------------------------------------------------------------- /img/steamtools.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/img/steamtools.jpg -------------------------------------------------------------------------------- /img/yishi1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auto-created-name/L4d2_Mod_Manager_Tool/HEAD/img/yishi1_1.jpg --------------------------------------------------------------------------------