├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── documentation.md │ ├── feature-request.md │ └── help.md └── workflows │ ├── DeployMkDocs.yml │ ├── build-and-publish.yml │ └── reloaded-utils-server.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── changelog-template.hbs ├── docs ├── APIOverview.md ├── AddingModFunctionality.md ├── AddingUpdateSupport.md ├── BuildingReloaded.md ├── CheatSheet │ ├── CallingHookingGameFunctions.md │ ├── MemoryManipulation.md │ ├── ReloadedIIApi.md │ └── SignatureScanning.md ├── ContributingLocally.md ├── ContributingOnline.md ├── CreatingModPacks.md ├── CreatingMods.md ├── CreatingRelease.md ├── CreatingReleaseExtras.md ├── Custom │ └── Stylesheets │ │ └── extra.css ├── DependencyInjection_Consumer.md ├── DependencyInjection_ExtraFeatures.md ├── DependencyInjection_HowItReallyWork.md ├── DependencyInjection_HowItWork.md ├── DependencyInjection_Publisher.md ├── DevelopmentEnvironmentSetup.md ├── Diagrams │ ├── Files │ │ ├── Architecture-Diagram-Reloaded-I.drawio │ │ ├── Architecture-Diagram-Reloaded-II.drawio │ │ ├── InterModCommunication-Internal.drawio │ │ └── InterModCommunication.drawio │ └── Images │ │ ├── Architecture-Diagram-Reloaded-I.png │ │ ├── Architecture-Diagram-Reloaded-II.png │ │ ├── InterModCommunication-Internal.png │ │ └── InterModCommunication.png ├── EnablingUpdateSupport.md ├── ExperimentalFeatures.md ├── FAQ.md ├── Images │ ├── AddAnApplication_0.png │ ├── AddAnApplication_1.png │ ├── AddDependency.png │ ├── AddGameInReloaded-OnWine.png │ ├── AutoDocumentation.png │ ├── AutoInject.png │ ├── Bootstrapper.png │ ├── ConfigureMod.gif │ ├── Contribute │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── GitHub.png │ │ ├── LocalRun.png │ │ └── VSCode.png │ ├── CreateConfigFile.png │ ├── CreateConfigFileDialog.png │ ├── CustomLogo.png │ ├── DebuggerLaunch.png │ ├── DependencyPropagation.png │ ├── DisableLaunchFromWine.png │ ├── DllLoaderExample.png │ ├── DllLoaderExample2.png │ ├── DownloadMod.png │ ├── DownloadPackages-IncompleteMetadata-1.png │ ├── DownloadPackages-IncompleteMetadata-2.png │ ├── DownloadPackages-IncompleteMetadata-3.png │ ├── EditMod1.png │ ├── EditMod2.png │ ├── EditModPack_1.png │ ├── EditModPack_2.png │ ├── EditModPack_Blank.png │ ├── EditModPack_Locator.png │ ├── EnableMod.gif │ ├── ExtractInterface.png │ ├── FileRedirectorFolder.png │ ├── FileRedirectorGuide.png │ ├── FlatPak-Discover.png │ ├── GameBananaPrivate.png │ ├── GameBananaUrl.png │ ├── GhidraFunctionRegisters.png │ ├── GitHubActions1.png │ ├── GitHubActions2.png │ ├── GitHubActions3.png │ ├── GitHubCiCdRelease.png │ ├── GitHubTag.png │ ├── Header.png │ ├── Inject.png │ ├── InstallMod.gif │ ├── InstallModNew.gif │ ├── InstallModPack_1.png │ ├── InstallModPack_2.png │ ├── InstallModPack_3.png │ ├── InstallModPack_4.png │ ├── InstallModPack_File.png │ ├── InstallModPack_Web.png │ ├── InstallNetSdk.png │ ├── JsonFile.png │ ├── Launch-Flatseal-3.png │ ├── Launch-Flatseal.jpg │ ├── Linux-ASILoader-1.png │ ├── Linux-ASILoader-Override.png │ ├── Linux-VirtualBox-1.png │ ├── ManualLaunch.png │ ├── NewNugetFeed.png │ ├── NewProject.png │ ├── NewProject2.png │ ├── NewlyCreatedMod.png │ ├── OnWine-InstallsToDesktop.png │ ├── OneClickInstallGb.png │ ├── OpenModFolder.png │ ├── OpenWithProtontricks.png │ ├── Palette.png │ ├── ProjectDependency.png │ ├── Protontricks-BTD5.png │ ├── Protontricks-List-Games.png │ ├── ProtontricksLaunchGui.png │ ├── Publish-Edit-GUI-1.png │ ├── Publish-GUI-1.png │ ├── Publish-GUI-2.png │ ├── PublishChangelog.png │ ├── ReleaseMetadata.png │ ├── Reloaded-PSD.7z │ ├── Reloaded │ │ ├── Reloaded BW.png │ │ ├── Reloaded Banner.png │ │ ├── Reloaded Console Logo.png │ │ ├── Reloaded Hot.png │ │ ├── Reloaded Logo Debug.png │ │ ├── Reloaded Logo.png │ │ ├── Reloaded No Brackets.png │ │ ├── Reloaded Original.png │ │ └── Reloaded Text Only.png │ ├── Steam-LaunchOptions-ASILoader.png │ ├── SteamShortcutSimple.png │ ├── Wine-HoloISO-SonicHeroes.png │ └── Wine-HoloISO.png ├── InjectionMethods.md ├── InstallingModPacks.md ├── InternalLibrariesCommunity.md ├── InternalLibrariesIO.md ├── InternalLibrariesIntro.md ├── InternalLibrariesPackaging.md ├── InternalLibrariesServer.md ├── InternalLibrariesUpdate.md ├── LinuxSetupGuide.md ├── LinuxSetupGuideNew.md ├── LinuxSetupGuideNewExtra.md ├── LocalizingReloaded.md ├── ModTemplate.md ├── NativeMods.md ├── NuGetSources.md ├── OptimizingMods.md ├── ProjectSetup.md ├── ProjectStructure.md ├── QuickStart.md ├── Reloaded-II-Architecture.md ├── Reloaded-vs-Reloaded-II.md ├── Troubleshooting.md ├── index.md └── requirements.txt ├── mkdocs.yml └── source ├── .gitignore ├── Chocolatey ├── LICENSE.txt ├── VERIFICATION.txt └── reloaded-ii-tools.nuspec ├── Directory.Build.props ├── Mods └── Reloaded.Utils.Server │ ├── BuildLinked.ps1 │ ├── Configuration │ ├── Config.cs │ ├── Implementation │ │ ├── Configurable.cs │ │ ├── Configurator.cs │ │ └── Utilities.cs │ └── LiteNetLibConfig.cs │ ├── LiteNetLibServer.cs │ ├── ModConfig.json │ ├── Program.cs │ ├── Publish.ps1 │ ├── Reloaded.Utils.Server.csproj │ ├── Robust.Trimming.targets │ ├── Server.cs │ └── Usings.cs ├── NuGet-Icon.png ├── NuGet.Config ├── Packages ├── Colorful.Console.1.2.2-reloaded.nupkg ├── HandyControl.3.2.0-reloaded-1.1.0.nupkg ├── Indieteur.SteamAppsManAndVDFAPI.1.0.5.nupkg ├── PhotoSauce.MagicScaler.0.13.2-ci222723.nupkg ├── PhotoSauce.NativeCodecs.Libjxl.0.6.1-ci222723.nupkg └── dll_syringe.Net.Sys.0.16.0.nupkg ├── Publish-Settings ├── Ignore-Regexes.txt ├── Include-Regexes.txt └── Packages.txt ├── Publish.Reloaded.Release.ps1 ├── Publish.ps1 ├── Reloaded-II.sln ├── Reloaded-II.sln.DotSettings ├── Reloaded.Mod.Installer.Cli ├── Cli.cs ├── Program.cs ├── Reloaded.Mod.Installer.Cli.csproj ├── app.manifest └── appicon.ico ├── Reloaded.Mod.Installer.DependencyInstaller ├── DependencyInstaller.cs ├── IO │ └── TemporaryFolderAllocation.cs ├── ProgressSlicer.cs ├── Reloaded.Mod.Installer.DependencyInstaller.csproj └── Usings.cs ├── Reloaded.Mod.Installer.Lib ├── MainWindowViewModel.cs ├── NativeMethods.txt ├── Reloaded.Mod.Installer.Lib.csproj ├── Settings.cs ├── Usings.cs ├── Utilities │ ├── IOEx.cs │ ├── Native.cs │ ├── ObservableObject.cs │ └── ShellLink.cs └── WineDetector.cs ├── Reloaded.Mod.Installer ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── FodyWeavers.xsd ├── HandyControl.xaml ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── NativeImports.cs ├── Program.cs ├── Reloaded.Mod.Installer.csproj ├── Usings.cs ├── app.manifest └── appicon.ico ├── Reloaded.Mod.Interfaces ├── IApplicationConfig.cs ├── IConfigurable.cs ├── IConfigurator.cs ├── IConfiguratorV1.cs ├── IConfiguratorV2.cs ├── IConfiguratorV3.cs ├── IExports.cs ├── ILogger.cs ├── IMod.cs ├── IModConfig.cs ├── IModLoader.cs ├── IModUserConfig.cs ├── IPluginConfig.cs ├── IUpdatableConfigurable.cs ├── Internal │ ├── IApplicationConfigV1.cs │ ├── IApplicationConfigV2.cs │ ├── ILoggerV1.cs │ ├── ILoggerV2.cs │ ├── ILoggerV3.cs │ ├── ILoggerV4.cs │ ├── IModConfigV1.cs │ ├── IModConfigV2.cs │ ├── IModConfigV3.cs │ ├── IModConfigV4.cs │ ├── IModConfigV5.cs │ ├── IModLoaderV1.cs │ ├── IModLoaderV2.cs │ ├── IModLoaderV3.cs │ ├── IModLoaderV4.cs │ ├── IModUserConfigV1.cs │ ├── IModV1.cs │ ├── IModV2.cs │ └── IPluginConfigV1.cs ├── PublicAPI.Shipped.txt ├── PublicAPI.Unshipped.txt ├── Reloaded.Mod.Interfaces.csproj ├── Structs │ ├── ControlAttribute.cs │ ├── Enums │ │ └── ModState.cs │ └── ModInfo.cs ├── Usings.cs └── Utilities │ └── Extensions.cs ├── Reloaded.Mod.Launcher.Lib ├── Assets │ ├── Loader │ │ └── Asi │ │ │ └── UltimateAsiLoader.7z │ └── Microsoft │ │ └── replace-files-with-itself.exe ├── Commands │ ├── Application │ │ ├── AddApplicationCommand.cs │ │ ├── DeleteApplicationCommand.cs │ │ ├── DeployAsiLoaderCommand.cs │ │ ├── MakeShortcutCommand.cs │ │ ├── QueryCommunityIndexCommand.cs │ │ └── SetApplicationImageCommand.cs │ ├── Download │ │ ├── CheckForUpdatesAndDependenciesCommand.cs │ │ └── ConfigureNuGetSourcesCommand.cs │ ├── General │ │ ├── OpenDocumentationCommand.cs │ │ ├── OpenUserGuideCommand.cs │ │ └── RelayCommand.cs │ ├── Mod │ │ ├── ConfigureModCommand.cs │ │ ├── CreateModPackCommand.cs │ │ ├── DeleteModCommand.cs │ │ ├── EditModCommand.cs │ │ ├── EditModUserConfigCommand.cs │ │ ├── OpenModFolderCommand.cs │ │ ├── OpenUserConfigFolderCommand.cs │ │ ├── PublishModCommand.cs │ │ ├── SetModImageCommand.cs │ │ └── VisitModProjectUrlCommand.cs │ └── Templates │ │ ├── CallbackCommand.cs │ │ └── WithCanExecuteChanged.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Interop │ ├── IDictionaryResource.cs │ ├── IDictionaryResourceProvider.cs │ ├── IIconConverter.cs │ └── IResourceFileSelector.cs ├── IoC.cs ├── Lib.cs ├── Misc │ ├── CompatibilityDialogs.cs │ ├── Constants.cs │ └── ShellLink.cs ├── Models │ ├── Model │ │ ├── Application │ │ │ ├── ModEntry.cs │ │ │ └── UnknownApplicationConfig.cs │ │ ├── Dialog │ │ │ ├── ObservablePack.cs │ │ │ ├── ObservablePackImage.cs │ │ │ └── ObservablePackItem.cs │ │ ├── DownloadPackagePage │ │ │ └── DownloadPackageStatus.cs │ │ ├── Pages │ │ │ ├── ApplicationSubPage.cs │ │ │ ├── EditModPage.cs │ │ │ ├── FirstLaunchPage.cs │ │ │ ├── Page.cs │ │ │ └── PageBase.cs │ │ └── Update │ │ │ ├── ProviderFactoryConfiguration.cs │ │ │ ├── ResolverFactoryConfiguration.cs │ │ │ └── SearchSortingMode.cs │ └── ViewModel │ │ ├── Application │ │ ├── ConfigureModsViewModel.cs │ │ ├── EditAppViewModel.cs │ │ ├── NonReloadedPageViewModel.cs │ │ └── ReloadedAppViewModel.cs │ │ ├── ApplicationViewModel.cs │ │ ├── Dialog │ │ ├── AddAppHashMismatchDialogViewModel.cs │ │ ├── AddApplicationWarningDialogViewModel.cs │ │ ├── ConfigureModDialogViewModel.cs │ │ ├── ConfigureNuGetFeedsDialogViewModel.cs │ │ ├── CreateModViewModel.cs │ │ ├── DownloadPackageViewModel.cs │ │ ├── EditMainPackDetailsPageViewModel.cs │ │ ├── EditModDialogViewModel.cs │ │ ├── EditModPackDetailsPageViewModel.cs │ │ ├── EditModPackDialogViewModel.cs │ │ ├── EditModUserConfigDialogViewModel.cs │ │ ├── FirstLaunch │ │ │ ├── AddApplicationViewModel.cs │ │ │ └── CompleteViewModel.cs │ │ ├── FirstLaunchViewModel.cs │ │ ├── InstallModPackDialogViewModel.cs │ │ ├── InstallModPackEntryPageViewModel.cs │ │ ├── InstallModPackModPageViewModel.cs │ │ ├── InstallPackageViewModel.cs │ │ ├── LoadModSelectDialogViewModel.cs │ │ ├── MissingCoreDependencyViewModel.cs │ │ ├── ModLoaderUpdateDialogViewModel.cs │ │ ├── ModUpdateDialogViewModel.cs │ │ ├── PublishModDialogViewModel.cs │ │ ├── SelectAddedGameDialogViewModel.cs │ │ └── SelectPackModDialogViewModel.cs │ │ ├── DownloadPackages │ │ └── DownloadPackagePreviewViewModel.cs │ │ ├── DownloadPackagesViewModel.cs │ │ ├── MainPageViewModel.cs │ │ ├── ManageModsViewModel.cs │ │ ├── SettingsPageViewModel.cs │ │ ├── SplashViewModel.cs │ │ └── WindowViewModel.cs ├── Reloaded - Backup.Mod.Launcher.Lib.csproj ├── Reloaded.Mod.Launcher.Lib.csproj ├── Setup.cs ├── Startup.cs ├── Static │ ├── Actions.cs │ ├── Errors.cs │ └── Resources.cs ├── Update.cs ├── Usings.cs └── Utility │ ├── ActionWrappers.cs │ ├── ApplicationInjector.cs │ ├── ApplicationInstanceTracker.cs │ ├── ApplicationLauncher.cs │ ├── AsiLoaderDeployer.cs │ ├── AutoInjector.cs │ ├── BmpImageConverter.cs │ ├── BootstrapperUpdateChecker.cs │ ├── EnumValues.cs │ ├── FileSelectors.cs │ ├── Interfaces │ └── IProcessWatcher.cs │ ├── JxlImageConverter.cs │ ├── LogFileCompressor.cs │ ├── NavigationUtils.cs │ ├── ProcessExtensions.cs │ ├── ProcessWatcher.cs │ ├── SymlinkResolver.cs │ ├── TryUnprotectGamePassGame.cs │ ├── Version.cs │ └── WmiProcessWatcher.cs ├── Reloaded.Mod.Launcher ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── DefaultSettings │ │ └── Controller.json │ └── Languages │ │ ├── de-DE.xaml │ │ ├── en-GB.xaml │ │ ├── es-419.xaml │ │ ├── es-ES.xaml │ │ ├── fr-FR.xaml │ │ ├── nl-NL.xaml │ │ ├── pirate.xaml │ │ ├── pt-BR.xaml │ │ ├── pt-PT.xaml │ │ ├── ru-RU.xaml │ │ ├── uwu.xaml │ │ ├── zh-CN.xaml │ │ └── zh-TW.xaml ├── Controls │ ├── DesignTimeModels │ │ └── PopupLabelDesignTimeModel.cs │ ├── Panels │ │ ├── OverlappingElementsPanel.cs │ │ └── VirtualizedCardPanel.cs │ ├── PopupLabel.xaml │ ├── PopupLabel.xaml.cs │ ├── Properties │ │ ├── AutoAdjustColumnCount.cs │ │ └── MoveTooltipWithMouse.cs │ └── PropertyGridEx.cs ├── Converters │ ├── ApplicationConfigToImageConverter.cs │ ├── ApplicationPageBaseToPageConverter.cs │ ├── ApplicationPageToPageConverter.cs │ ├── BooleanInverterConverter.cs │ ├── BooleanToVisibilityConverter.cs │ ├── BytesLongToMegaBytesStringConverter.cs │ ├── DateTimeToHumanConverter.cs │ ├── DownloadModStatusToString.cs │ ├── EditModPageToPageConverter.cs │ ├── FilePathToFileConverter.cs │ ├── FirstLaunchPageToIntConverter.cs │ ├── FirstLaunchPageToPageConverter.cs │ ├── FloatToThreeDecimalPlaces.cs │ ├── ModConfigToImageConverter.cs │ ├── NotNullToVisibleConverter.cs │ ├── ObjectToIntConverter.cs │ ├── ObservablePackImageToBitmapConverter.cs │ ├── PackageToDescriptionConverter.cs │ ├── ProcessToNameStringConverter.cs │ ├── StringToUriConverter.cs │ └── StringToVisibilityConverter.cs ├── Dependencies │ └── PropertyChanged.dll ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Interop │ ├── IconConverter.cs │ ├── XamlResourceEx.cs │ └── XamlResourceProvider.cs ├── LICENSE.txt ├── LibraryBindings.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Misc │ ├── FixDataGridColumnWidths.cs │ ├── Imaging.cs │ └── WpfConstants.cs ├── Pages │ ├── BasePage.xaml │ ├── BasePage.xaml.cs │ ├── BaseSubpages │ │ ├── ApplicationPage.xaml │ │ ├── ApplicationPage.xaml.cs │ │ ├── ApplicationSubPages │ │ │ ├── AppSummaryPage.xaml │ │ │ ├── AppSummaryPage.xaml.cs │ │ │ ├── ApplicationSubPage.cs │ │ │ ├── Dialogs │ │ │ │ ├── LoadModSelectDialog.xaml │ │ │ │ └── LoadModSelectDialog.xaml.cs │ │ │ ├── EditAppPage.xaml │ │ │ ├── EditAppPage.xaml.cs │ │ │ ├── NonReloadedProcessPage.xaml │ │ │ ├── NonReloadedProcessPage.xaml.cs │ │ │ ├── ReloadedProcessPage.xaml │ │ │ └── ReloadedProcessPage.xaml.cs │ │ ├── Dialogs │ │ │ ├── ConfigureNuGetFeedsDialog.xaml │ │ │ ├── ConfigureNuGetFeedsDialog.xaml.cs │ │ │ ├── CreateModDialog.xaml │ │ │ ├── CreateModDialog.xaml.cs │ │ │ ├── EditModDialog.xaml │ │ │ ├── EditModDialog.xaml.cs │ │ │ ├── EditModUserConfigDialog.xaml │ │ │ └── EditModUserConfigDialog.xaml.cs │ │ ├── DownloadPackagesPage.xaml │ │ ├── DownloadPackagesPage.xaml.cs │ │ ├── DownloadPackagesPages │ │ │ ├── PackagePreviewPage.xaml │ │ │ └── PackagePreviewPage.xaml.cs │ │ ├── ManageModsPage.xaml │ │ ├── ManageModsPage.xaml.cs │ │ ├── SettingsPage.xaml │ │ └── SettingsPage.xaml.cs │ ├── Dialogs │ │ ├── AddAppHashMismatchDialog.xaml │ │ ├── AddAppHashMismatchDialog.xaml.cs │ │ ├── ConfigureModDialog.xaml │ │ ├── ConfigureModDialog.xaml.cs │ │ ├── DownloadPackageDialog.xaml │ │ ├── DownloadPackageDialog.xaml.cs │ │ ├── EditModPackDialog.xaml │ │ ├── EditModPackDialog.xaml.cs │ │ ├── EditModPackPages │ │ │ ├── EditMainPackDetailsPage.xaml │ │ │ ├── EditMainPackDetailsPage.xaml.cs │ │ │ ├── EditModPackDetailsPage.xaml │ │ │ └── EditModPackDetailsPage.xaml.cs │ │ ├── EditModPages │ │ │ ├── Complete.xaml │ │ │ ├── Complete.xaml.cs │ │ │ ├── Dependencies.xaml │ │ │ ├── Dependencies.xaml.cs │ │ │ ├── Main.xaml │ │ │ ├── Main.xaml.cs │ │ │ ├── Updates.xaml │ │ │ └── Updates.xaml.cs │ │ ├── FirstLaunch.xaml │ │ ├── FirstLaunch.xaml.cs │ │ ├── FirstLaunchPages │ │ │ ├── AddApplication.xaml │ │ │ ├── AddApplication.xaml.cs │ │ │ ├── AddModExtract.xaml │ │ │ ├── AddModExtract.xaml.cs │ │ │ ├── Complete.xaml │ │ │ ├── Complete.xaml.cs │ │ │ ├── ModConfigPage.xaml │ │ │ ├── ModConfigPage.xaml.cs │ │ │ ├── ModEnablePage.xaml │ │ │ ├── ModEnablePage.xaml.cs │ │ │ └── VideoTutorialPage.cs │ │ ├── InstallModPackDialog.xaml │ │ ├── InstallModPackDialog.xaml.cs │ │ ├── InstallModPackPages │ │ │ ├── InstallModDownloadPage.xaml │ │ │ ├── InstallModDownloadPage.xaml.cs │ │ │ ├── InstallModPackEntryPage.xaml │ │ │ ├── InstallModPackEntryPage.xaml.cs │ │ │ ├── InstallModPackModPage.xaml │ │ │ └── InstallModPackModPage.xaml.cs │ │ ├── InstallPackageDialog.xaml │ │ ├── InstallPackageDialog.xaml.cs │ │ ├── MessageBox.xaml │ │ ├── MessageBox.xaml.cs │ │ ├── MessageBoxOkCancel.xaml │ │ ├── MessageBoxOkCancel.xaml.cs │ │ ├── MissingCoreDependencyDialog.xaml │ │ ├── MissingCoreDependencyDialog.xaml.cs │ │ ├── ModLoaderUpdateDialog.xaml │ │ ├── ModLoaderUpdateDialog.xaml.cs │ │ ├── ModUpdateDialog.xaml │ │ ├── ModUpdateDialog.xaml.cs │ │ ├── PublishModDialog.xaml │ │ ├── PublishModDialog.xaml.cs │ │ ├── RunAppViaWineDialog.xaml │ │ ├── RunAppViaWineDialog.xaml.cs │ │ ├── SelectAddedGameDialog.xaml │ │ ├── SelectAddedGameDialog.xaml.cs │ │ ├── SelectPackModDialog.xaml │ │ ├── SelectPackModDialog.xaml.cs │ │ ├── ShowApplicationWarningDialog.xaml │ │ ├── ShowApplicationWarningDialog.xaml.cs │ │ └── XamlResourceMessageBoxOkCancel.xaml.cs │ ├── ReloadedIIPage.cs │ ├── SplashPage.xaml │ └── SplashPage.xaml.cs ├── Properties │ └── launchSettings.json ├── Reloaded.Mod.Launcher.csproj ├── Theme │ ├── Default.xaml │ ├── Default │ │ ├── Fonts │ │ │ └── FontRegular.ttf │ │ └── R-II │ │ │ ├── Colours.xaml │ │ │ ├── Controls.xaml │ │ │ ├── Images.xaml │ │ │ ├── Images │ │ │ ├── ConfigureMod.mp4 │ │ │ ├── EnableMod.mp4 │ │ │ ├── IconAddApp.png │ │ │ ├── IconDiscord.png │ │ │ ├── IconDownloadMods.png │ │ │ ├── IconGameBanana.png │ │ │ ├── IconGitHub.png │ │ │ ├── IconInfo.png │ │ │ ├── IconMods.png │ │ │ ├── IconSearch.png │ │ │ ├── IconSettings.png │ │ │ ├── IconSponsor.png │ │ │ ├── IconTwitter.png │ │ │ ├── InstallMod.mp4 │ │ │ ├── LICENSE.txt │ │ │ ├── ModPlaceholder.png │ │ │ ├── ReloadedNoBrackets.png │ │ │ ├── Templates.zip │ │ │ └── TutorialAddAppExample.png │ │ │ ├── Markdown.xaml │ │ │ ├── Root.xaml │ │ │ ├── Settings.xaml │ │ │ ├── Styles.xaml │ │ │ ├── ThirdParty │ │ │ └── HandyControl.xaml │ │ │ └── Window_Settings.xaml │ ├── Halogen.xaml │ ├── Halogen │ │ ├── Colours.xaml │ │ ├── Controls.xaml │ │ ├── CustomStyles.xaml │ │ ├── Images.xaml │ │ ├── Images │ │ │ ├── IconAddApp.png │ │ │ ├── IconDiscord.png │ │ │ ├── IconDownloadMods.png │ │ │ ├── IconGitHub.png │ │ │ ├── IconInfo.png │ │ │ ├── IconMods.png │ │ │ ├── IconSearch.png │ │ │ ├── IconSettings.png │ │ │ ├── IconSponsor.png │ │ │ ├── IconTemplate.7z │ │ │ ├── IconTwitter.png │ │ │ ├── LICENSE.txt │ │ │ ├── ModPlaceholder.png │ │ │ └── ReloadedNoBrackets.png │ │ └── Styles.xaml │ ├── Helpers │ │ └── BackwardsCompatibilityHelpers.xaml │ └── NoCorners.xaml ├── Usings.cs ├── Utility │ ├── ApplicationResourceAcquirer.cs │ ├── CollectionExtensions.cs │ ├── ControllerSupport.cs │ ├── EmptyAutomationPeer.cs │ ├── HandyControlExtensions.cs │ ├── KeyboardUtils.cs │ ├── ListViewUtilities.cs │ ├── MarginSetter.cs │ ├── ReloadedInputLocalizationProvider.cs │ ├── ThemeHelpers.cs │ └── XamlFileSelector.cs └── appicon.ico ├── Reloaded.Mod.Loader.Bootstrapper ├── CoreCLR.cpp ├── CoreCLR.hpp ├── EntryPointParameter.h ├── LoaderConfig.cpp ├── LoaderConfig.h ├── Reloaded.Mod.Bootstrapper.vcxproj ├── Reloaded.Mod.Bootstrapper.vcxproj.filters ├── ReloadedPaths.h ├── Utilities.cpp ├── Utilities.h ├── core-setup │ ├── coreclr_delegates.h │ └── hostfxr.h ├── dllmain.cpp ├── exports.def ├── framework.h ├── nethost │ ├── Readme.md │ ├── nethost.h │ ├── x64-libs │ │ └── libnethost.lib │ └── x86-libs │ │ └── libnethost.lib ├── nlohmann │ └── json.hpp ├── pch.cpp ├── pch.h ├── resource.h ├── version.h └── version.rc ├── Reloaded.Mod.Loader.Community ├── Config │ ├── AppItem.cs │ └── Index.cs ├── IndexApi.cs ├── Reloaded.Mod.Loader.Community.csproj ├── Routes.cs ├── Usings.cs └── Utility │ ├── Compression.cs │ ├── Hashing.cs │ └── IO.cs ├── Reloaded.Mod.Loader.IO ├── Config │ ├── ApplicationConfig.cs │ ├── Contexts │ │ └── ConfigContexts.cs │ ├── IConfig.cs │ ├── LoaderConfig.cs │ ├── ModConfig.cs │ ├── ModSet.cs │ ├── ModUserConfig.cs │ └── Structs │ │ └── NugetFeed.cs ├── ConfigReader.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Paths.cs ├── Reloaded.Mod.Loader.IO.csproj ├── Services │ ├── ApplicationConfigService.cs │ ├── ConfigServiceBase.cs │ ├── ModConfigService.cs │ └── ModUserConfigService.cs ├── Structs │ ├── BooleanGenericTuple.cs │ ├── Dependencies │ │ └── ModDependencySet.cs │ ├── PathTuple.cs │ └── Sorting │ │ ├── Mark.cs │ │ └── Node.cs ├── Usings.cs └── Utility │ ├── BatchObservableCollection.cs │ ├── Collections.cs │ ├── EmptyArray.cs │ ├── Extensions.cs │ ├── FileSystemWatcherFactory.cs │ ├── IOEx.cs │ ├── ObservableObject.cs │ ├── Parsers │ ├── BasicPeParser.cs │ └── PeParser │ │ ├── DataDirectoryType.cs │ │ ├── DataSectionFlags.cs │ │ ├── IMAGE_DATA_DIRECTORY.cs │ │ ├── IMAGE_DOS_HEADER.cs │ │ ├── IMAGE_FILE_HEADER.cs │ │ ├── IMAGE_IMPORT_BY_NAME.cs │ │ ├── IMAGE_IMPORT_DESCRIPTOR.cs │ │ ├── IMAGE_OPTIONAL_HEADER32.cs │ │ ├── IMAGE_OPTIONAL_HEADER64.cs │ │ ├── IMAGE_SECTION_HEADER.cs │ │ ├── IMAGE_THUNK_DATA32.cs │ │ ├── IMAGE_THUNK_DATA64.cs │ │ ├── IMAGE_THUNK_DATA_NATIVE.cs │ │ └── Interfaces │ │ └── IThunk.cs │ └── Windows │ └── WindowsDirectorySearcher.cs ├── Reloaded.Mod.Loader.IPC ├── Reloaded.Mod.Loader.IPC.projitems ├── Reloaded.Mod.Loader.IPC.shproj └── ReloadedMappedFile.cs ├── Reloaded.Mod.Loader.Server ├── ClientBase.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Init.cs ├── LiteNetLibClient.cs ├── Messages │ ├── Interfaces │ │ ├── IKeyedMessage.cs │ │ ├── ILiteNetLibRefAction.cs │ │ └── IPackable.cs │ ├── MessageType.cs │ ├── Requests │ │ ├── GetLoadedMods.cs │ │ └── SetModState.cs │ ├── Responses │ │ ├── AcknowledgementOrExceptionResponse.cs │ │ ├── GetLoadedModsResponse.cs │ │ └── NullResponse.cs │ └── Structures │ │ ├── Config │ │ └── ModConfig.cs │ │ ├── MessageKey.cs │ │ ├── ModStateType.cs │ │ └── ServerModInfo.cs ├── Reloaded.Mod.Loader.Server.csproj ├── ServerUtility.cs └── Usings.cs ├── Reloaded.Mod.Loader.Tests ├── Assets.cs ├── Assets │ ├── Index │ │ ├── GameBananaOnly │ │ │ ├── Index.json.br │ │ │ └── Search │ │ │ │ └── GameBanana │ │ │ │ └── 6061 │ │ │ │ └── Index.json.br │ │ └── Sample │ │ │ ├── AllDependencies.json.br │ │ │ ├── AllPackages.json.br │ │ │ ├── Index.json.br │ │ │ └── Search │ │ │ ├── GameBanana │ │ │ ├── 6061 │ │ │ │ └── Index.json.br │ │ │ ├── 6218 │ │ │ │ └── Index.json.br │ │ │ ├── 6340 │ │ │ │ └── Index.json.br │ │ │ ├── 6355 │ │ │ │ └── Index.json.br │ │ │ ├── 6475 │ │ │ │ └── Index.json.br │ │ │ ├── 7486 │ │ │ │ └── Index.json.br │ │ │ ├── 7839 │ │ │ │ └── Index.json.br │ │ │ ├── 7862 │ │ │ │ └── Index.json.br │ │ │ ├── 7962 │ │ │ │ └── Index.json.br │ │ │ ├── 8263 │ │ │ │ └── Index.json.br │ │ │ ├── 8764 │ │ │ │ └── Index.json.br │ │ │ ├── 10243 │ │ │ │ └── Index.json.br │ │ │ ├── 16613 │ │ │ │ └── Index.json.br │ │ │ ├── 16951 │ │ │ │ └── Index.json.br │ │ │ ├── 17755 │ │ │ │ └── Index.json.br │ │ │ ├── 18557 │ │ │ │ └── Index.json.br │ │ │ └── 20794 │ │ │ │ └── Index.json.br │ │ │ └── NuGet │ │ │ ├── httppackages.sewer56.moe5000v3index.json │ │ │ └── Index.json.br │ │ │ └── httpspackages.sewer56.moev3index.json │ │ │ └── Index.json.br │ └── R2Pack │ │ └── heroes-preview.jxl ├── Community │ ├── FileSizeTest.cs │ ├── IndexTest.cs │ └── VerifyTest.cs ├── HelloWorld32.exe ├── HelloWorld64.exe ├── HeroesControllerPostProcess.zip ├── HeroesControllerPostProcessBad.zip ├── HeroesControllerPostProcessOld.zip ├── IO │ ├── Config │ │ └── ModConfigTest.cs │ ├── ConfigReaderTests.cs │ ├── LoaderConfigReaderTest.cs │ └── PeParserTests.cs ├── Index │ ├── BuildIndex.cs │ ├── IndexCommon.cs │ ├── IndexReadTests.cs │ └── SerializationTests.cs ├── Loader │ ├── LnlServerHost.cs │ ├── LoaderApiTests.cs │ └── LoaderTest.cs ├── Reloaded - Backup.Mod.Loader.Tests.csproj ├── Reloaded.Mod.Loader.Tests.csproj ├── SETUP │ └── TestEnvironmoent.cs ├── Update │ ├── DependencyMetadataWriterTests.cs │ ├── Mocks │ │ └── DummyDownloadablePackage.cs │ ├── NuGet │ │ ├── AggregateNuGetRepositoryTests.cs │ │ ├── Convert │ │ │ └── ConverterTests.cs │ │ ├── NugetRepositoryTests.cs │ │ ├── PublisherTests.cs │ │ └── Structs │ │ │ └── PackageSearchMetadata.cs │ ├── Pack │ │ ├── AutoPackageCreatorTests.cs │ │ ├── Mocks │ │ │ └── DummyImageConverter.cs │ │ └── PackagePackerTests.cs │ ├── Providers │ │ ├── AggregateDependencyResolverTests.cs │ │ ├── AggregatePackageProviderTests.cs │ │ ├── GameBanana │ │ │ ├── GameBananaApiTests.cs │ │ │ ├── GameBananaDependencyResolverTests.cs │ │ │ └── GameBananaPackageProviderTests.cs │ │ ├── GitHub │ │ │ └── GitHubDependencyResolverTests.cs │ │ ├── Index │ │ │ └── IndexDependencyResolverTests.cs │ │ └── NuGet │ │ │ ├── NuGetDependencyResolverTests.cs │ │ │ └── NuGetPackageProviderTests.cs │ ├── Resolvers │ │ ├── DependencyResolverTests.cs │ │ ├── GameBananaResolverFactoryTests.cs │ │ ├── GitHubReleasesResolverFactoryTests.cs │ │ ├── NuGetResolverFactoryTests.cs │ │ └── ResolverFactoryHelpers.cs │ ├── UpdaterTests.cs │ └── Utilities │ │ └── PaginationHelperTests.cs ├── Usings.cs └── xunit.runner.json ├── Reloaded.Mod.Loader.Update.Packaging ├── Converters │ └── NuGet │ │ └── Converter.cs ├── Extra │ └── ReleaseMetadataExtraData.cs ├── Publisher.cs ├── Reloaded.Mod.Loader.Update.Packaging.csproj └── Usings.cs ├── Reloaded.Mod.Loader.Update ├── Caching │ ├── AkavacheCache.cs │ ├── AkavacheContentStore.cs │ └── Caches.cs ├── DependencyMetadataWriterFactory.cs ├── DependencyResolverFactory.cs ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Index │ ├── IndexApi.cs │ ├── IndexBuilder.cs │ ├── Provider │ │ ├── IndexPackageProvider.cs │ │ ├── IndexedGameBananaPackageProvider.cs │ │ └── IndexedNuGetPackageProvider.cs │ ├── Routes.cs │ ├── Structures │ │ ├── Config │ │ │ └── IndexSourceEntry.cs │ │ ├── Index.cs │ │ ├── Package.cs │ │ └── PackageList.cs │ └── Utility │ │ ├── IO.cs │ │ ├── Serializer.cs │ │ └── Web.cs ├── Interfaces │ ├── Extensions │ │ └── IDownloadablePackageGetDownloadUrl.cs │ ├── IDependencyMetadataWriter.cs │ ├── IDependencyResolver.cs │ ├── IDownloadablePackage.cs │ ├── IDownloadablePackageProvider.cs │ ├── IModPackImageConverter.cs │ ├── IPackageProviderFactory.cs │ └── IUpdateResolverFactory.cs ├── PackageProviderFactory.cs ├── PackageResolverFactory.cs ├── Packs │ ├── AutoPackCreator.cs │ ├── ReloadedPack.cs │ ├── ReloadedPackBuilder.cs │ ├── ReloadedPackImage.cs │ ├── ReloadedPackItem.cs │ ├── ReloadedPackItemBuilder.cs │ ├── ReloadedPackReader.cs │ └── Routes.cs ├── Providers │ ├── AggregateDependencyResolver.cs │ ├── AggregatePackageProvider.cs │ ├── AggregatePackageResolverEx.cs │ ├── DependencyMetadataWriterBase.cs │ ├── GameBanana │ │ ├── GameBananaDependencyMetadataWriter.cs │ │ ├── GameBananaDependencyResolver.cs │ │ ├── GameBananaPackageProvider.cs │ │ ├── GameBananaPackageProviderFactory.cs │ │ ├── GameBananaUpdateResolverFactory.cs │ │ └── Structures │ │ │ └── GameBananaMod.cs │ ├── GitHub │ │ ├── GitHubDependencyResolver.cs │ │ ├── GitHubReleasesDependencyMetadataWriter.cs │ │ └── GitHubReleasesUpdateResolverFactory.cs │ ├── Index │ │ └── IndexDependencyResolver.cs │ ├── NuGet │ │ ├── NuGetDependencyResolver.cs │ │ ├── NuGetPackageProvider.cs │ │ └── NuGetUpdateResolverFactory.cs │ ├── ProxyPackageExtractor.cs │ ├── Update │ │ └── UpdateDownloadablePackage.cs │ └── Web │ │ └── WebDownloadablePackage.cs ├── Reloaded.Mod.Loader.Update.csproj ├── Structures │ ├── ManagerModResultPair.cs │ ├── ModUpdate.cs │ ├── ModUpdateSummary.cs │ ├── ResolverModPair.cs │ └── UpdaterData.cs ├── Updater.cs ├── Usings.cs └── Utilities │ ├── Compression.cs │ ├── Extensions.cs │ ├── HtmlUtilities.cs │ ├── ImageCacheService.cs │ ├── ItemCache.cs │ ├── Nuget │ ├── AggregateNugetRepository.cs │ ├── Interfaces │ │ └── INugetRepository.cs │ ├── Nuget.cs │ ├── NugetRepository.cs │ └── Structs │ │ ├── AggregateFindDependenciesResult.cs │ │ ├── FindDependenciesResult.cs │ │ └── NugetTuple.cs │ ├── PaginationHelper.cs │ ├── SharedHttpClient.cs │ ├── SpanList.cs │ └── StringWrapper.cs ├── Reloaded.Mod.Loader ├── DelayInjectHooks.json ├── EntryPoint.cs ├── Errors.cs ├── Exceptions │ └── ReloadedException.cs ├── Loader.cs ├── Logging │ ├── ColorfulConsoleProxy.cs │ ├── Console.cs │ ├── Init │ │ └── ConsoleAllocator.cs │ ├── Interfaces │ │ └── IConsoleProxy.cs │ ├── LogWriter.cs │ ├── Logger.cs │ ├── ReloadedBannerLogger.cs │ ├── Structs │ │ ├── CrashDumpInfo.cs │ │ └── LogMessage.cs │ └── SystemConsoleProxy.cs ├── Mods │ ├── LoaderAPI.cs │ ├── PluginManager.cs │ └── Structs │ │ ├── ModInstance.cs │ │ └── NativeMod.cs ├── Reloaded.Mod.Loader.csproj ├── Usings.cs └── Utilities │ ├── Asm │ └── Macros.cs │ ├── DRM │ └── SteamStubScanner.cs │ ├── DRMHelper.cs │ ├── DelayInjector.cs │ ├── LoadContext.cs │ ├── LogMessageExtensions.cs │ ├── Native │ ├── Kernel32.cs │ └── User32.cs │ ├── ProcessCrashHook.cs │ ├── ProcessExitHook.cs │ ├── Steam │ ├── SteamAppId.cs │ ├── SteamConstants.cs │ └── SteamHook.cs │ └── Wrappers.cs ├── Reloaded.Mod.Shared ├── EntryPointParameters.cs ├── Environment.cs ├── Reloaded.Mod.Shared.projitems ├── Reloaded.Mod.Shared.shproj └── Usings.cs ├── Reloaded.Mod.Template ├── Reloaded.Mod.Template.NuGet.csproj └── templates │ └── configurable │ ├── .github │ └── workflows │ │ └── reloaded.yml │ ├── .template.config │ ├── icon.png │ └── template.json │ ├── BuildLinked.ps1 │ ├── Config.cs │ ├── Mod.cs │ ├── ModConfig.json │ ├── Preview.png │ ├── Publish.ps1 │ ├── Reloaded.Checks.targets │ ├── Reloaded.Mod.Template.csproj │ ├── Reloaded.Trimming.targets │ └── Template │ ├── Configuration │ ├── Configurable.cs │ ├── Configurator.cs │ ├── ConfiguratorMixinBase.cs │ └── Utilities.cs │ ├── ModBase.cs │ ├── ModContext.cs │ └── Startup.cs ├── Robust.Trimming.targets ├── Testing ├── Apps │ └── TestAppA │ │ ├── AppConfig.json │ │ ├── Class1.cs │ │ ├── TestAppA.csproj │ │ └── Usings.cs ├── Mods │ ├── TestModA │ │ ├── Controller.cs │ │ ├── ModConfig.json │ │ ├── Program.cs │ │ ├── TestModA.csproj │ │ ├── TestModAPlugin.cs │ │ └── Usings.cs │ ├── TestModB │ │ ├── ModConfig.json │ │ ├── Program.cs │ │ ├── TestModB.csproj │ │ └── Usings.cs │ ├── TestModC │ │ ├── ModConfig.json │ │ ├── Program.cs │ │ ├── TestModC.csproj │ │ └── Usings.cs │ ├── TestModControlParams │ │ ├── BuildLinked.ps1 │ │ ├── Config.cs │ │ ├── Mod.cs │ │ ├── ModConfig.json │ │ ├── Preview.png │ │ ├── Publish.ps1 │ │ ├── Reloaded.Checks.targets │ │ ├── Reloaded.Trimming.targets │ │ ├── Template │ │ │ ├── Configuration │ │ │ │ ├── Configurable.cs │ │ │ │ ├── Configurator.cs │ │ │ │ ├── ConfiguratorMixinBase.cs │ │ │ │ └── Utilities.cs │ │ │ ├── ModBase.cs │ │ │ ├── ModContext.cs │ │ │ └── Startup.cs │ │ └── TestModControlParams.csproj │ ├── TestModD │ │ ├── Class1.cs │ │ ├── ModConfig.json │ │ ├── TestModD.csproj │ │ └── Usings.cs │ └── TestModE │ │ ├── Class1.cs │ │ ├── ModConfig.json │ │ ├── TestModE.csproj │ │ └── Usings.cs └── Other │ └── TestInterfaces │ ├── IController.cs │ ├── ITestHelper.cs │ ├── ITestModA.cs │ ├── ITestModAPlugin.cs │ ├── ITestModB.cs │ ├── TestInterfaces.csproj │ └── Usings.cs └── Tools ├── NuGetConverter ├── NuGetConverter.csproj ├── Program.cs └── Usings.cs ├── Reloaded.AutoIndexBuilder ├── Commands │ ├── AddSourceCommand.cs │ ├── ForceRunCommand.cs │ ├── RemoveSourceCommand.cs │ ├── ReportUptimeCommand.cs │ └── SetChannelCommand.cs ├── Config │ ├── Settings.cs │ ├── Stats.cs │ └── Structures │ │ └── SourceEntry.cs ├── Events │ ├── Handler │ │ ├── BuildFinishedDiscordNotificationHandler.cs │ │ └── DiscordReadyStartJobHandler.cs │ └── Notification │ │ ├── BuildFinishedNotification.cs │ │ └── DiscordReadyNotification.cs ├── Mixin │ ├── DiscordErrorLoggerSink.cs │ └── DiscordSocketHandler.cs ├── Paths.cs ├── Program.cs ├── Reloaded.AutoIndexBuilder.csproj ├── Services │ ├── GitPusherService.cs │ └── IndexBuilderService.cs ├── Usings.cs ├── Utilities │ └── Extensions.cs └── Validation │ └── SettingsValidator.cs ├── Reloaded.Community.Tool ├── Options.cs ├── Program.cs ├── Reloaded.Community.Tool.csproj ├── Samples.cs ├── Serialization │ └── GameBananaProviderConfig.cs └── Usings.cs └── Reloaded.Publisher ├── Options └── PublishModOptions.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Reloaded.Publisher.csproj └── Usings.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: Sewer56 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/.github/ISSUE_TEMPLATE/documentation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/.github/ISSUE_TEMPLATE/help.md -------------------------------------------------------------------------------- /.github/workflows/DeployMkDocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/.github/workflows/DeployMkDocs.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/.github/workflows/build-and-publish.yml -------------------------------------------------------------------------------- /.github/workflows/reloaded-utils-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/.github/workflows/reloaded-utils-server.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/README.md -------------------------------------------------------------------------------- /changelog-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/changelog-template.hbs -------------------------------------------------------------------------------- /docs/APIOverview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/APIOverview.md -------------------------------------------------------------------------------- /docs/AddingModFunctionality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/AddingModFunctionality.md -------------------------------------------------------------------------------- /docs/AddingUpdateSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/AddingUpdateSupport.md -------------------------------------------------------------------------------- /docs/BuildingReloaded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/BuildingReloaded.md -------------------------------------------------------------------------------- /docs/CheatSheet/CallingHookingGameFunctions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/CheatSheet/CallingHookingGameFunctions.md -------------------------------------------------------------------------------- /docs/CheatSheet/MemoryManipulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/CheatSheet/MemoryManipulation.md -------------------------------------------------------------------------------- /docs/CheatSheet/ReloadedIIApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/CheatSheet/ReloadedIIApi.md -------------------------------------------------------------------------------- /docs/CheatSheet/SignatureScanning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/CheatSheet/SignatureScanning.md -------------------------------------------------------------------------------- /docs/ContributingLocally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/ContributingLocally.md -------------------------------------------------------------------------------- /docs/ContributingOnline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/ContributingOnline.md -------------------------------------------------------------------------------- /docs/CreatingModPacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/CreatingModPacks.md -------------------------------------------------------------------------------- /docs/CreatingMods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/CreatingMods.md -------------------------------------------------------------------------------- /docs/CreatingRelease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/CreatingRelease.md -------------------------------------------------------------------------------- /docs/CreatingReleaseExtras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/CreatingReleaseExtras.md -------------------------------------------------------------------------------- /docs/Custom/Stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Custom/Stylesheets/extra.css -------------------------------------------------------------------------------- /docs/DependencyInjection_Consumer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/DependencyInjection_Consumer.md -------------------------------------------------------------------------------- /docs/DependencyInjection_ExtraFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/DependencyInjection_ExtraFeatures.md -------------------------------------------------------------------------------- /docs/DependencyInjection_HowItReallyWork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/DependencyInjection_HowItReallyWork.md -------------------------------------------------------------------------------- /docs/DependencyInjection_HowItWork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/DependencyInjection_HowItWork.md -------------------------------------------------------------------------------- /docs/DependencyInjection_Publisher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/DependencyInjection_Publisher.md -------------------------------------------------------------------------------- /docs/DevelopmentEnvironmentSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/DevelopmentEnvironmentSetup.md -------------------------------------------------------------------------------- /docs/Diagrams/Files/Architecture-Diagram-Reloaded-I.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Diagrams/Files/Architecture-Diagram-Reloaded-I.drawio -------------------------------------------------------------------------------- /docs/Diagrams/Files/Architecture-Diagram-Reloaded-II.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Diagrams/Files/Architecture-Diagram-Reloaded-II.drawio -------------------------------------------------------------------------------- /docs/Diagrams/Files/InterModCommunication-Internal.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Diagrams/Files/InterModCommunication-Internal.drawio -------------------------------------------------------------------------------- /docs/Diagrams/Files/InterModCommunication.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Diagrams/Files/InterModCommunication.drawio -------------------------------------------------------------------------------- /docs/Diagrams/Images/Architecture-Diagram-Reloaded-I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Diagrams/Images/Architecture-Diagram-Reloaded-I.png -------------------------------------------------------------------------------- /docs/Diagrams/Images/Architecture-Diagram-Reloaded-II.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Diagrams/Images/Architecture-Diagram-Reloaded-II.png -------------------------------------------------------------------------------- /docs/Diagrams/Images/InterModCommunication-Internal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Diagrams/Images/InterModCommunication-Internal.png -------------------------------------------------------------------------------- /docs/Diagrams/Images/InterModCommunication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Diagrams/Images/InterModCommunication.png -------------------------------------------------------------------------------- /docs/EnablingUpdateSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/EnablingUpdateSupport.md -------------------------------------------------------------------------------- /docs/ExperimentalFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/ExperimentalFeatures.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/Images/AddAnApplication_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/AddAnApplication_0.png -------------------------------------------------------------------------------- /docs/Images/AddAnApplication_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/AddAnApplication_1.png -------------------------------------------------------------------------------- /docs/Images/AddDependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/AddDependency.png -------------------------------------------------------------------------------- /docs/Images/AddGameInReloaded-OnWine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/AddGameInReloaded-OnWine.png -------------------------------------------------------------------------------- /docs/Images/AutoDocumentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/AutoDocumentation.png -------------------------------------------------------------------------------- /docs/Images/AutoInject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/AutoInject.png -------------------------------------------------------------------------------- /docs/Images/Bootstrapper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Bootstrapper.png -------------------------------------------------------------------------------- /docs/Images/ConfigureMod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/ConfigureMod.gif -------------------------------------------------------------------------------- /docs/Images/Contribute/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Contribute/1.png -------------------------------------------------------------------------------- /docs/Images/Contribute/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Contribute/2.png -------------------------------------------------------------------------------- /docs/Images/Contribute/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Contribute/3.png -------------------------------------------------------------------------------- /docs/Images/Contribute/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Contribute/GitHub.png -------------------------------------------------------------------------------- /docs/Images/Contribute/LocalRun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Contribute/LocalRun.png -------------------------------------------------------------------------------- /docs/Images/Contribute/VSCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Contribute/VSCode.png -------------------------------------------------------------------------------- /docs/Images/CreateConfigFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/CreateConfigFile.png -------------------------------------------------------------------------------- /docs/Images/CreateConfigFileDialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/CreateConfigFileDialog.png -------------------------------------------------------------------------------- /docs/Images/CustomLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/CustomLogo.png -------------------------------------------------------------------------------- /docs/Images/DebuggerLaunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/DebuggerLaunch.png -------------------------------------------------------------------------------- /docs/Images/DependencyPropagation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/DependencyPropagation.png -------------------------------------------------------------------------------- /docs/Images/DisableLaunchFromWine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/DisableLaunchFromWine.png -------------------------------------------------------------------------------- /docs/Images/DllLoaderExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/DllLoaderExample.png -------------------------------------------------------------------------------- /docs/Images/DllLoaderExample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/DllLoaderExample2.png -------------------------------------------------------------------------------- /docs/Images/DownloadMod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/DownloadMod.png -------------------------------------------------------------------------------- /docs/Images/DownloadPackages-IncompleteMetadata-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/DownloadPackages-IncompleteMetadata-1.png -------------------------------------------------------------------------------- /docs/Images/DownloadPackages-IncompleteMetadata-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/DownloadPackages-IncompleteMetadata-2.png -------------------------------------------------------------------------------- /docs/Images/DownloadPackages-IncompleteMetadata-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/DownloadPackages-IncompleteMetadata-3.png -------------------------------------------------------------------------------- /docs/Images/EditMod1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/EditMod1.png -------------------------------------------------------------------------------- /docs/Images/EditMod2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/EditMod2.png -------------------------------------------------------------------------------- /docs/Images/EditModPack_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/EditModPack_1.png -------------------------------------------------------------------------------- /docs/Images/EditModPack_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/EditModPack_2.png -------------------------------------------------------------------------------- /docs/Images/EditModPack_Blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/EditModPack_Blank.png -------------------------------------------------------------------------------- /docs/Images/EditModPack_Locator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/EditModPack_Locator.png -------------------------------------------------------------------------------- /docs/Images/EnableMod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/EnableMod.gif -------------------------------------------------------------------------------- /docs/Images/ExtractInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/ExtractInterface.png -------------------------------------------------------------------------------- /docs/Images/FileRedirectorFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/FileRedirectorFolder.png -------------------------------------------------------------------------------- /docs/Images/FileRedirectorGuide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/FileRedirectorGuide.png -------------------------------------------------------------------------------- /docs/Images/FlatPak-Discover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/FlatPak-Discover.png -------------------------------------------------------------------------------- /docs/Images/GameBananaPrivate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/GameBananaPrivate.png -------------------------------------------------------------------------------- /docs/Images/GameBananaUrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/GameBananaUrl.png -------------------------------------------------------------------------------- /docs/Images/GhidraFunctionRegisters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/GhidraFunctionRegisters.png -------------------------------------------------------------------------------- /docs/Images/GitHubActions1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/GitHubActions1.png -------------------------------------------------------------------------------- /docs/Images/GitHubActions2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/GitHubActions2.png -------------------------------------------------------------------------------- /docs/Images/GitHubActions3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/GitHubActions3.png -------------------------------------------------------------------------------- /docs/Images/GitHubCiCdRelease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/GitHubCiCdRelease.png -------------------------------------------------------------------------------- /docs/Images/GitHubTag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/GitHubTag.png -------------------------------------------------------------------------------- /docs/Images/Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Header.png -------------------------------------------------------------------------------- /docs/Images/Inject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Inject.png -------------------------------------------------------------------------------- /docs/Images/InstallMod.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/InstallMod.gif -------------------------------------------------------------------------------- /docs/Images/InstallModNew.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/InstallModNew.gif -------------------------------------------------------------------------------- /docs/Images/InstallModPack_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/InstallModPack_1.png -------------------------------------------------------------------------------- /docs/Images/InstallModPack_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/InstallModPack_2.png -------------------------------------------------------------------------------- /docs/Images/InstallModPack_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/InstallModPack_3.png -------------------------------------------------------------------------------- /docs/Images/InstallModPack_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/InstallModPack_4.png -------------------------------------------------------------------------------- /docs/Images/InstallModPack_File.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/InstallModPack_File.png -------------------------------------------------------------------------------- /docs/Images/InstallModPack_Web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/InstallModPack_Web.png -------------------------------------------------------------------------------- /docs/Images/InstallNetSdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/InstallNetSdk.png -------------------------------------------------------------------------------- /docs/Images/JsonFile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/JsonFile.png -------------------------------------------------------------------------------- /docs/Images/Launch-Flatseal-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Launch-Flatseal-3.png -------------------------------------------------------------------------------- /docs/Images/Launch-Flatseal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Launch-Flatseal.jpg -------------------------------------------------------------------------------- /docs/Images/Linux-ASILoader-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Linux-ASILoader-1.png -------------------------------------------------------------------------------- /docs/Images/Linux-ASILoader-Override.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Linux-ASILoader-Override.png -------------------------------------------------------------------------------- /docs/Images/Linux-VirtualBox-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Linux-VirtualBox-1.png -------------------------------------------------------------------------------- /docs/Images/ManualLaunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/ManualLaunch.png -------------------------------------------------------------------------------- /docs/Images/NewNugetFeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/NewNugetFeed.png -------------------------------------------------------------------------------- /docs/Images/NewProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/NewProject.png -------------------------------------------------------------------------------- /docs/Images/NewProject2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/NewProject2.png -------------------------------------------------------------------------------- /docs/Images/NewlyCreatedMod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/NewlyCreatedMod.png -------------------------------------------------------------------------------- /docs/Images/OnWine-InstallsToDesktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/OnWine-InstallsToDesktop.png -------------------------------------------------------------------------------- /docs/Images/OneClickInstallGb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/OneClickInstallGb.png -------------------------------------------------------------------------------- /docs/Images/OpenModFolder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/OpenModFolder.png -------------------------------------------------------------------------------- /docs/Images/OpenWithProtontricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/OpenWithProtontricks.png -------------------------------------------------------------------------------- /docs/Images/Palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Palette.png -------------------------------------------------------------------------------- /docs/Images/ProjectDependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/ProjectDependency.png -------------------------------------------------------------------------------- /docs/Images/Protontricks-BTD5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Protontricks-BTD5.png -------------------------------------------------------------------------------- /docs/Images/Protontricks-List-Games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Protontricks-List-Games.png -------------------------------------------------------------------------------- /docs/Images/ProtontricksLaunchGui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/ProtontricksLaunchGui.png -------------------------------------------------------------------------------- /docs/Images/Publish-Edit-GUI-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Publish-Edit-GUI-1.png -------------------------------------------------------------------------------- /docs/Images/Publish-GUI-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Publish-GUI-1.png -------------------------------------------------------------------------------- /docs/Images/Publish-GUI-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Publish-GUI-2.png -------------------------------------------------------------------------------- /docs/Images/PublishChangelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/PublishChangelog.png -------------------------------------------------------------------------------- /docs/Images/ReleaseMetadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/ReleaseMetadata.png -------------------------------------------------------------------------------- /docs/Images/Reloaded-PSD.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded-PSD.7z -------------------------------------------------------------------------------- /docs/Images/Reloaded/Reloaded BW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded/Reloaded BW.png -------------------------------------------------------------------------------- /docs/Images/Reloaded/Reloaded Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded/Reloaded Banner.png -------------------------------------------------------------------------------- /docs/Images/Reloaded/Reloaded Console Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded/Reloaded Console Logo.png -------------------------------------------------------------------------------- /docs/Images/Reloaded/Reloaded Hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded/Reloaded Hot.png -------------------------------------------------------------------------------- /docs/Images/Reloaded/Reloaded Logo Debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded/Reloaded Logo Debug.png -------------------------------------------------------------------------------- /docs/Images/Reloaded/Reloaded Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded/Reloaded Logo.png -------------------------------------------------------------------------------- /docs/Images/Reloaded/Reloaded No Brackets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded/Reloaded No Brackets.png -------------------------------------------------------------------------------- /docs/Images/Reloaded/Reloaded Original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded/Reloaded Original.png -------------------------------------------------------------------------------- /docs/Images/Reloaded/Reloaded Text Only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Reloaded/Reloaded Text Only.png -------------------------------------------------------------------------------- /docs/Images/Steam-LaunchOptions-ASILoader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Steam-LaunchOptions-ASILoader.png -------------------------------------------------------------------------------- /docs/Images/SteamShortcutSimple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/SteamShortcutSimple.png -------------------------------------------------------------------------------- /docs/Images/Wine-HoloISO-SonicHeroes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Wine-HoloISO-SonicHeroes.png -------------------------------------------------------------------------------- /docs/Images/Wine-HoloISO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Images/Wine-HoloISO.png -------------------------------------------------------------------------------- /docs/InjectionMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/InjectionMethods.md -------------------------------------------------------------------------------- /docs/InstallingModPacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/InstallingModPacks.md -------------------------------------------------------------------------------- /docs/InternalLibrariesCommunity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/InternalLibrariesCommunity.md -------------------------------------------------------------------------------- /docs/InternalLibrariesIO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/InternalLibrariesIO.md -------------------------------------------------------------------------------- /docs/InternalLibrariesIntro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/InternalLibrariesIntro.md -------------------------------------------------------------------------------- /docs/InternalLibrariesPackaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/InternalLibrariesPackaging.md -------------------------------------------------------------------------------- /docs/InternalLibrariesServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/InternalLibrariesServer.md -------------------------------------------------------------------------------- /docs/InternalLibrariesUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/InternalLibrariesUpdate.md -------------------------------------------------------------------------------- /docs/LinuxSetupGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/LinuxSetupGuide.md -------------------------------------------------------------------------------- /docs/LinuxSetupGuideNew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/LinuxSetupGuideNew.md -------------------------------------------------------------------------------- /docs/LinuxSetupGuideNewExtra.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/LinuxSetupGuideNewExtra.md -------------------------------------------------------------------------------- /docs/LocalizingReloaded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/LocalizingReloaded.md -------------------------------------------------------------------------------- /docs/ModTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/ModTemplate.md -------------------------------------------------------------------------------- /docs/NativeMods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/NativeMods.md -------------------------------------------------------------------------------- /docs/NuGetSources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/NuGetSources.md -------------------------------------------------------------------------------- /docs/OptimizingMods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/OptimizingMods.md -------------------------------------------------------------------------------- /docs/ProjectSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/ProjectSetup.md -------------------------------------------------------------------------------- /docs/ProjectStructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/ProjectStructure.md -------------------------------------------------------------------------------- /docs/QuickStart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/QuickStart.md -------------------------------------------------------------------------------- /docs/Reloaded-II-Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Reloaded-II-Architecture.md -------------------------------------------------------------------------------- /docs/Reloaded-vs-Reloaded-II.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Reloaded-vs-Reloaded-II.md -------------------------------------------------------------------------------- /docs/Troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/Troubleshooting.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /source/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/.gitignore -------------------------------------------------------------------------------- /source/Chocolatey/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Chocolatey/LICENSE.txt -------------------------------------------------------------------------------- /source/Chocolatey/VERIFICATION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Chocolatey/VERIFICATION.txt -------------------------------------------------------------------------------- /source/Chocolatey/reloaded-ii-tools.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Chocolatey/reloaded-ii-tools.nuspec -------------------------------------------------------------------------------- /source/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Directory.Build.props -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/BuildLinked.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/BuildLinked.ps1 -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/Configuration/Config.cs -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/Configuration/LiteNetLibConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/Configuration/LiteNetLibConfig.cs -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/LiteNetLibServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/LiteNetLibServer.cs -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/ModConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/ModConfig.json -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/Program.cs -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/Publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/Publish.ps1 -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/Reloaded.Utils.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/Reloaded.Utils.Server.csproj -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/Robust.Trimming.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/Robust.Trimming.targets -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/Server.cs -------------------------------------------------------------------------------- /source/Mods/Reloaded.Utils.Server/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Mods/Reloaded.Utils.Server/Usings.cs -------------------------------------------------------------------------------- /source/NuGet-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/NuGet-Icon.png -------------------------------------------------------------------------------- /source/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/NuGet.Config -------------------------------------------------------------------------------- /source/Packages/Colorful.Console.1.2.2-reloaded.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Packages/Colorful.Console.1.2.2-reloaded.nupkg -------------------------------------------------------------------------------- /source/Packages/HandyControl.3.2.0-reloaded-1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Packages/HandyControl.3.2.0-reloaded-1.1.0.nupkg -------------------------------------------------------------------------------- /source/Packages/Indieteur.SteamAppsManAndVDFAPI.1.0.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Packages/Indieteur.SteamAppsManAndVDFAPI.1.0.5.nupkg -------------------------------------------------------------------------------- /source/Packages/PhotoSauce.MagicScaler.0.13.2-ci222723.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Packages/PhotoSauce.MagicScaler.0.13.2-ci222723.nupkg -------------------------------------------------------------------------------- /source/Packages/PhotoSauce.NativeCodecs.Libjxl.0.6.1-ci222723.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Packages/PhotoSauce.NativeCodecs.Libjxl.0.6.1-ci222723.nupkg -------------------------------------------------------------------------------- /source/Packages/dll_syringe.Net.Sys.0.16.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Packages/dll_syringe.Net.Sys.0.16.0.nupkg -------------------------------------------------------------------------------- /source/Publish-Settings/Ignore-Regexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Publish-Settings/Ignore-Regexes.txt -------------------------------------------------------------------------------- /source/Publish-Settings/Include-Regexes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Publish-Settings/Include-Regexes.txt -------------------------------------------------------------------------------- /source/Publish-Settings/Packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Publish-Settings/Packages.txt -------------------------------------------------------------------------------- /source/Publish.Reloaded.Release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Publish.Reloaded.Release.ps1 -------------------------------------------------------------------------------- /source/Publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Publish.ps1 -------------------------------------------------------------------------------- /source/Reloaded-II.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded-II.sln -------------------------------------------------------------------------------- /source/Reloaded-II.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded-II.sln.DotSettings -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Cli/Cli.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Cli/Cli.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Cli/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Cli/Program.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Cli/Reloaded.Mod.Installer.Cli.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Cli/Reloaded.Mod.Installer.Cli.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Cli/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Cli/app.manifest -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Cli/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Cli/appicon.ico -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.DependencyInstaller/DependencyInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.DependencyInstaller/DependencyInstaller.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.DependencyInstaller/ProgressSlicer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.DependencyInstaller/ProgressSlicer.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.DependencyInstaller/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.DependencyInstaller/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/MainWindowViewModel.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/NativeMethods.txt -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/Reloaded.Mod.Installer.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/Reloaded.Mod.Installer.Lib.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/Settings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/Utilities/IOEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/Utilities/IOEx.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/Utilities/Native.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/Utilities/Native.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/Utilities/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/Utilities/ObservableObject.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/Utilities/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/Utilities/ShellLink.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer.Lib/WineDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer.Lib/WineDetector.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/App.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/App.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/FodyWeavers.xsd -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/HandyControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/HandyControl.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/MainWindow.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/NativeImports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/NativeImports.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/Program.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/Reloaded.Mod.Installer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/Reloaded.Mod.Installer.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/app.manifest -------------------------------------------------------------------------------- /source/Reloaded.Mod.Installer/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Installer/appicon.ico -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IApplicationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IApplicationConfig.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IConfigurable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IConfigurable.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IConfigurator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IConfigurator.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IConfiguratorV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IConfiguratorV1.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IConfiguratorV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IConfiguratorV2.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IConfiguratorV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IConfiguratorV3.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IExports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IExports.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/ILogger.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IMod.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IModConfig.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IModLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IModLoader.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IModUserConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IModUserConfig.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IPluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IPluginConfig.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/IUpdatableConfigurable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/IUpdatableConfigurable.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IApplicationConfigV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IApplicationConfigV1.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IApplicationConfigV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IApplicationConfigV2.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/ILoggerV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/ILoggerV1.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/ILoggerV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/ILoggerV2.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/ILoggerV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/ILoggerV3.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/ILoggerV4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/ILoggerV4.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModConfigV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModConfigV1.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModConfigV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModConfigV2.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModConfigV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModConfigV3.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModConfigV4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModConfigV4.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModConfigV5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModConfigV5.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModLoaderV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModLoaderV1.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModLoaderV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModLoaderV2.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModLoaderV3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModLoaderV3.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModLoaderV4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModLoaderV4.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModUserConfigV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModUserConfigV1.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModV1.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IModV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IModV2.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Internal/IPluginConfigV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Internal/IPluginConfigV1.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Reloaded.Mod.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Reloaded.Mod.Interfaces.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Structs/ControlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Structs/ControlAttribute.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Structs/Enums/ModState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Structs/Enums/ModState.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Structs/ModInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Structs/ModInfo.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Interfaces/Utilities/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Interfaces/Utilities/Extensions.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Assets/Loader/Asi/UltimateAsiLoader.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Assets/Loader/Asi/UltimateAsiLoader.7z -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Commands/General/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Commands/General/RelayCommand.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Commands/Mod/ConfigureModCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Commands/Mod/ConfigureModCommand.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Commands/Mod/CreateModPackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Commands/Mod/CreateModPackCommand.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Commands/Mod/DeleteModCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Commands/Mod/DeleteModCommand.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Commands/Mod/EditModCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Commands/Mod/EditModCommand.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Commands/Mod/OpenModFolderCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Commands/Mod/OpenModFolderCommand.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Commands/Mod/PublishModCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Commands/Mod/PublishModCommand.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Commands/Mod/SetModImageCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Commands/Mod/SetModImageCommand.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Commands/Templates/CallbackCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Commands/Templates/CallbackCommand.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/FodyWeavers.xml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/FodyWeavers.xsd -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Interop/IDictionaryResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Interop/IDictionaryResource.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Interop/IDictionaryResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Interop/IDictionaryResourceProvider.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Interop/IIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Interop/IIconConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Interop/IResourceFileSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Interop/IResourceFileSelector.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/IoC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/IoC.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Lib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Lib.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Misc/CompatibilityDialogs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Misc/CompatibilityDialogs.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Misc/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Misc/Constants.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Misc/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Misc/ShellLink.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/Model/Application/ModEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/Model/Application/ModEntry.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/Model/Dialog/ObservablePack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/Model/Dialog/ObservablePack.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/Model/Pages/EditModPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/Model/Pages/EditModPage.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/Model/Pages/FirstLaunchPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/Model/Pages/FirstLaunchPage.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/Model/Pages/Page.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/Model/Pages/Page.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/Model/Pages/PageBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/Model/Pages/PageBase.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/ViewModel/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/ViewModel/MainPageViewModel.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/ViewModel/ManageModsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/ViewModel/ManageModsViewModel.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/ViewModel/SplashViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/ViewModel/SplashViewModel.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Models/ViewModel/WindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Models/ViewModel/WindowViewModel.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Reloaded.Mod.Launcher.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Reloaded.Mod.Launcher.Lib.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Setup.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Startup.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Static/Actions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Static/Actions.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Static/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Static/Errors.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Static/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Static/Resources.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Update.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Update.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/ActionWrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/ActionWrappers.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/ApplicationInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/ApplicationInjector.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/ApplicationInstanceTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/ApplicationInstanceTracker.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/ApplicationLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/ApplicationLauncher.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/AsiLoaderDeployer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/AsiLoaderDeployer.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/AutoInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/AutoInjector.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/BmpImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/BmpImageConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/BootstrapperUpdateChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/BootstrapperUpdateChecker.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/EnumValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/EnumValues.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/FileSelectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/FileSelectors.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/Interfaces/IProcessWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/Interfaces/IProcessWatcher.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/JxlImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/JxlImageConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/LogFileCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/LogFileCompressor.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/NavigationUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/NavigationUtils.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/ProcessExtensions.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/ProcessWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/ProcessWatcher.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/SymlinkResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/SymlinkResolver.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/TryUnprotectGamePassGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/TryUnprotectGamePassGame.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/Version.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher.Lib/Utility/WmiProcessWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher.Lib/Utility/WmiProcessWatcher.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/App.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/App.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/DefaultSettings/Controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/DefaultSettings/Controller.json -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/de-DE.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/de-DE.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/en-GB.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/en-GB.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/es-419.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/es-419.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/es-ES.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/es-ES.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/fr-FR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/fr-FR.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/nl-NL.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/nl-NL.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/pirate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/pirate.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/pt-BR.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/pt-BR.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/pt-PT.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/pt-PT.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/ru-RU.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/ru-RU.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/uwu.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/uwu.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/zh-CN.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/zh-CN.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Assets/Languages/zh-TW.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Assets/Languages/zh-TW.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Controls/Panels/OverlappingElementsPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Controls/Panels/OverlappingElementsPanel.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Controls/Panels/VirtualizedCardPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Controls/Panels/VirtualizedCardPanel.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Controls/PopupLabel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Controls/PopupLabel.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Controls/PopupLabel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Controls/PopupLabel.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Controls/Properties/MoveTooltipWithMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Controls/Properties/MoveTooltipWithMouse.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Controls/PropertyGridEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Controls/PropertyGridEx.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/BooleanInverterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/BooleanInverterConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/DateTimeToHumanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/DateTimeToHumanConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/DownloadModStatusToString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/DownloadModStatusToString.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/EditModPageToPageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/EditModPageToPageConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/FilePathToFileConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/FilePathToFileConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/FirstLaunchPageToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/FirstLaunchPageToIntConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/FloatToThreeDecimalPlaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/FloatToThreeDecimalPlaces.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/ModConfigToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/ModConfigToImageConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/NotNullToVisibleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/NotNullToVisibleConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/ObjectToIntConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/ObjectToIntConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/PackageToDescriptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/PackageToDescriptionConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/ProcessToNameStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/ProcessToNameStringConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/StringToUriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/StringToUriConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Converters/StringToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Converters/StringToVisibilityConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Dependencies/PropertyChanged.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Dependencies/PropertyChanged.dll -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/FodyWeavers.xml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/FodyWeavers.xsd -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Interop/IconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Interop/IconConverter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Interop/XamlResourceEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Interop/XamlResourceEx.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Interop/XamlResourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Interop/XamlResourceProvider.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/LICENSE.txt -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/LibraryBindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/LibraryBindings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/MainWindow.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/MainWindow.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Misc/FixDataGridColumnWidths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Misc/FixDataGridColumnWidths.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Misc/Imaging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Misc/Imaging.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Misc/WpfConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Misc/WpfConstants.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/BasePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/BasePage.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/BasePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/BasePage.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/BaseSubpages/ApplicationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/BaseSubpages/ApplicationPage.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/BaseSubpages/ApplicationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/BaseSubpages/ApplicationPage.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/BaseSubpages/ManageModsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/BaseSubpages/ManageModsPage.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/BaseSubpages/ManageModsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/BaseSubpages/ManageModsPage.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/BaseSubpages/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/BaseSubpages/SettingsPage.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/BaseSubpages/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/BaseSubpages/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/AddAppHashMismatchDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/AddAppHashMismatchDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/ConfigureModDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/ConfigureModDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/ConfigureModDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/ConfigureModDialog.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/DownloadPackageDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/DownloadPackageDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/DownloadPackageDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/DownloadPackageDialog.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPackDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPackDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPackDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPackDialog.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPages/Complete.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPages/Complete.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPages/Main.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPages/Main.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPages/Main.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPages/Main.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPages/Updates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/EditModPages/Updates.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/FirstLaunch.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/FirstLaunch.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/FirstLaunch.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/FirstLaunch.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/InstallModPackDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/InstallModPackDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/InstallPackageDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/InstallPackageDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/MessageBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/MessageBox.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/MessageBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/MessageBox.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/MessageBoxOkCancel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/MessageBoxOkCancel.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/MessageBoxOkCancel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/MessageBoxOkCancel.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/ModLoaderUpdateDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/ModLoaderUpdateDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/ModUpdateDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/ModUpdateDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/ModUpdateDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/ModUpdateDialog.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/PublishModDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/PublishModDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/PublishModDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/PublishModDialog.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/RunAppViaWineDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/RunAppViaWineDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/SelectAddedGameDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/SelectAddedGameDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/Dialogs/SelectPackModDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/Dialogs/SelectPackModDialog.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/ReloadedIIPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/ReloadedIIPage.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/SplashPage.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Pages/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Pages/SplashPage.xaml.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Properties/launchSettings.json -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Reloaded.Mod.Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Reloaded.Mod.Launcher.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/Fonts/FontRegular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/Fonts/FontRegular.ttf -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Colours.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Colours.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Controls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Controls.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/EnableMod.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/EnableMod.mp4 -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconAddApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconAddApp.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconGitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconGitHub.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconInfo.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconMods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconMods.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/IconSearch.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/InstallMod.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/InstallMod.mp4 -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/LICENSE.txt -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/Templates.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Images/Templates.zip -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Markdown.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Markdown.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Root.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Root.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Settings.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Styles.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Default/R-II/Window_Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Default/R-II/Window_Settings.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Colours.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Colours.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Controls.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Controls.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/CustomStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/CustomStyles.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconAddApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconAddApp.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconDiscord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconDiscord.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconGitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconGitHub.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconInfo.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconMods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconMods.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconSearch.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconSettings.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconSponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconSponsor.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconTemplate.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconTemplate.7z -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconTwitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/IconTwitter.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/LICENSE.txt -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Images/ModPlaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Images/ModPlaceholder.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/Halogen/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/Halogen/Styles.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Theme/NoCorners.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Theme/NoCorners.xaml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/ApplicationResourceAcquirer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/ApplicationResourceAcquirer.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/CollectionExtensions.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/ControllerSupport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/ControllerSupport.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/EmptyAutomationPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/EmptyAutomationPeer.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/HandyControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/HandyControlExtensions.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/KeyboardUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/KeyboardUtils.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/ListViewUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/ListViewUtilities.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/MarginSetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/MarginSetter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/ThemeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/ThemeHelpers.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/Utility/XamlFileSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/Utility/XamlFileSelector.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Launcher/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Launcher/appicon.ico -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/CoreCLR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/CoreCLR.cpp -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/CoreCLR.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/CoreCLR.hpp -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/EntryPointParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/EntryPointParameter.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/LoaderConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/LoaderConfig.cpp -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/LoaderConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/LoaderConfig.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/ReloadedPaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/ReloadedPaths.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/Utilities.cpp -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/Utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/Utilities.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/core-setup/hostfxr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/core-setup/hostfxr.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/dllmain.cpp -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/exports.def -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/framework.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/nethost/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/nethost/Readme.md -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/nethost/nethost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/nethost/nethost.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/nlohmann/json.hpp -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/pch.cpp -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/pch.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/resource.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/version.h -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Bootstrapper/version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Bootstrapper/version.rc -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Community/Config/AppItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Community/Config/AppItem.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Community/Config/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Community/Config/Index.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Community/IndexApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Community/IndexApi.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Community/Routes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Community/Routes.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Community/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Community/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Community/Utility/Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Community/Utility/Compression.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Community/Utility/Hashing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Community/Utility/Hashing.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Community/Utility/IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Community/Utility/IO.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Config/ApplicationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Config/ApplicationConfig.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Config/Contexts/ConfigContexts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Config/Contexts/ConfigContexts.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Config/IConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Config/IConfig.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Config/LoaderConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Config/LoaderConfig.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Config/ModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Config/ModConfig.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Config/ModSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Config/ModSet.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Config/ModUserConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Config/ModUserConfig.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Config/Structs/NugetFeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Config/Structs/NugetFeed.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/ConfigReader.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/FodyWeavers.xml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/FodyWeavers.xsd -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Paths.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Reloaded.Mod.Loader.IO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Reloaded.Mod.Loader.IO.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Services/ApplicationConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Services/ApplicationConfigService.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Services/ConfigServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Services/ConfigServiceBase.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Services/ModConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Services/ModConfigService.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Services/ModUserConfigService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Services/ModUserConfigService.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Structs/BooleanGenericTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Structs/BooleanGenericTuple.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Structs/PathTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Structs/PathTuple.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Structs/Sorting/Mark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Structs/Sorting/Mark.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Structs/Sorting/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Structs/Sorting/Node.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Utility/BatchObservableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Utility/BatchObservableCollection.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Utility/Collections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Utility/Collections.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Utility/EmptyArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Utility/EmptyArray.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Utility/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Utility/Extensions.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Utility/FileSystemWatcherFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Utility/FileSystemWatcherFactory.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Utility/IOEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Utility/IOEx.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Utility/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Utility/ObservableObject.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IO/Utility/Parsers/BasicPeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IO/Utility/Parsers/BasicPeParser.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IPC/Reloaded.Mod.Loader.IPC.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IPC/Reloaded.Mod.Loader.IPC.projitems -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IPC/Reloaded.Mod.Loader.IPC.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IPC/Reloaded.Mod.Loader.IPC.shproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.IPC/ReloadedMappedFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.IPC/ReloadedMappedFile.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/ClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/ClientBase.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/FodyWeavers.xml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/FodyWeavers.xsd -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Init.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/LiteNetLibClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/LiteNetLibClient.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Messages/Interfaces/IPackable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Messages/Interfaces/IPackable.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Messages/MessageType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Messages/MessageType.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Messages/Requests/GetLoadedMods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Messages/Requests/GetLoadedMods.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Messages/Requests/SetModState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Messages/Requests/SetModState.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Messages/Responses/NullResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Messages/Responses/NullResponse.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Messages/Structures/MessageKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Messages/Structures/MessageKey.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Messages/Structures/ModStateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Messages/Structures/ModStateType.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Reloaded.Mod.Loader.Server.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Reloaded.Mod.Loader.Server.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/ServerUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/ServerUtility.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Server/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Server/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Assets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Assets.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Assets/Index/Sample/Index.json.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Assets/Index/Sample/Index.json.br -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Assets/R2Pack/heroes-preview.jxl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Assets/R2Pack/heroes-preview.jxl -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Community/FileSizeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Community/FileSizeTest.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Community/IndexTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Community/IndexTest.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Community/VerifyTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Community/VerifyTest.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/HelloWorld32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/HelloWorld32.exe -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/HelloWorld64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/HelloWorld64.exe -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/HeroesControllerPostProcess.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/HeroesControllerPostProcess.zip -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/HeroesControllerPostProcessBad.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/HeroesControllerPostProcessBad.zip -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/HeroesControllerPostProcessOld.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/HeroesControllerPostProcessOld.zip -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/IO/Config/ModConfigTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/IO/Config/ModConfigTest.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/IO/ConfigReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/IO/ConfigReaderTests.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/IO/LoaderConfigReaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/IO/LoaderConfigReaderTest.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/IO/PeParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/IO/PeParserTests.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Index/BuildIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Index/BuildIndex.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Index/IndexCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Index/IndexCommon.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Index/IndexReadTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Index/IndexReadTests.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Index/SerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Index/SerializationTests.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Loader/LnlServerHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Loader/LnlServerHost.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Loader/LoaderApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Loader/LoaderApiTests.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Loader/LoaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Loader/LoaderTest.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Reloaded.Mod.Loader.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Reloaded.Mod.Loader.Tests.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/SETUP/TestEnvironmoent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/SETUP/TestEnvironmoent.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Update/NuGet/NugetRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Update/NuGet/NugetRepositoryTests.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Update/NuGet/PublisherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Update/NuGet/PublisherTests.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Update/Pack/PackagePackerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Update/Pack/PackagePackerTests.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Update/UpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Update/UpdaterTests.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Tests/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Tests/xunit.runner.json -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update.Packaging/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update.Packaging/Publisher.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update.Packaging/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update.Packaging/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Caching/AkavacheCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Caching/AkavacheCache.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Caching/AkavacheContentStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Caching/AkavacheContentStore.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Caching/Caches.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Caching/Caches.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/DependencyMetadataWriterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/DependencyMetadataWriterFactory.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/DependencyResolverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/DependencyResolverFactory.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/FodyWeavers.xml -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/FodyWeavers.xsd -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Index/IndexApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Index/IndexApi.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Index/IndexBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Index/IndexBuilder.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Index/Routes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Index/Routes.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Index/Structures/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Index/Structures/Index.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Index/Structures/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Index/Structures/Package.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Index/Structures/PackageList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Index/Structures/PackageList.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Index/Utility/IO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Index/Utility/IO.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Index/Utility/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Index/Utility/Serializer.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Index/Utility/Web.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Index/Utility/Web.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Interfaces/IDependencyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Interfaces/IDependencyResolver.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Interfaces/IDownloadablePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Interfaces/IDownloadablePackage.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/PackageProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/PackageProviderFactory.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/PackageResolverFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/PackageResolverFactory.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Packs/AutoPackCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Packs/AutoPackCreator.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Packs/ReloadedPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Packs/ReloadedPack.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackBuilder.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackImage.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackItem.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackItemBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackItemBuilder.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Packs/ReloadedPackReader.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Packs/Routes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Packs/Routes.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Providers/ProxyPackageExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Providers/ProxyPackageExtractor.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Reloaded.Mod.Loader.Update.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Reloaded.Mod.Loader.Update.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Structures/ManagerModResultPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Structures/ManagerModResultPair.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Structures/ModUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Structures/ModUpdate.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Structures/ModUpdateSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Structures/ModUpdateSummary.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Structures/ResolverModPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Structures/ResolverModPair.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Structures/UpdaterData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Structures/UpdaterData.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Updater.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/Compression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/Compression.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/Extensions.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/HtmlUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/HtmlUtilities.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/ImageCacheService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/ImageCacheService.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/ItemCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/ItemCache.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/Nuget/Nuget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/Nuget/Nuget.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/Nuget/NugetRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/Nuget/NugetRepository.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/PaginationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/PaginationHelper.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/SharedHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/SharedHttpClient.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/SpanList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/SpanList.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader.Update/Utilities/StringWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader.Update/Utilities/StringWrapper.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/DelayInjectHooks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/DelayInjectHooks.json -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/EntryPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/EntryPoint.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Errors.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Exceptions/ReloadedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Exceptions/ReloadedException.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Loader.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/ColorfulConsoleProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/ColorfulConsoleProxy.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/Console.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/Init/ConsoleAllocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/Init/ConsoleAllocator.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/Interfaces/IConsoleProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/Interfaces/IConsoleProxy.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/LogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/LogWriter.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/Logger.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/ReloadedBannerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/ReloadedBannerLogger.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/Structs/CrashDumpInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/Structs/CrashDumpInfo.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/Structs/LogMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/Structs/LogMessage.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Logging/SystemConsoleProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Logging/SystemConsoleProxy.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Mods/LoaderAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Mods/LoaderAPI.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Mods/PluginManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Mods/PluginManager.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Mods/Structs/ModInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Mods/Structs/ModInstance.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Mods/Structs/NativeMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Mods/Structs/NativeMod.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Reloaded.Mod.Loader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Reloaded.Mod.Loader.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/Asm/Macros.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/Asm/Macros.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/DRM/SteamStubScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/DRM/SteamStubScanner.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/DRMHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/DRMHelper.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/DelayInjector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/DelayInjector.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/LoadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/LoadContext.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/LogMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/LogMessageExtensions.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/Native/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/Native/Kernel32.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/Native/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/Native/User32.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/ProcessCrashHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/ProcessCrashHook.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/ProcessExitHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/ProcessExitHook.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/Steam/SteamAppId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/Steam/SteamAppId.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/Steam/SteamConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/Steam/SteamConstants.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/Steam/SteamHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/Steam/SteamHook.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Loader/Utilities/Wrappers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Loader/Utilities/Wrappers.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Shared/EntryPointParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Shared/EntryPointParameters.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Shared/Environment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Shared/Environment.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Shared/Reloaded.Mod.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Shared/Reloaded.Mod.Shared.projitems -------------------------------------------------------------------------------- /source/Reloaded.Mod.Shared/Reloaded.Mod.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Shared/Reloaded.Mod.Shared.shproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Shared/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Shared/Usings.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Template/Reloaded.Mod.Template.NuGet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Template/Reloaded.Mod.Template.NuGet.csproj -------------------------------------------------------------------------------- /source/Reloaded.Mod.Template/templates/configurable/BuildLinked.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Template/templates/configurable/BuildLinked.ps1 -------------------------------------------------------------------------------- /source/Reloaded.Mod.Template/templates/configurable/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Template/templates/configurable/Config.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Template/templates/configurable/Mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Template/templates/configurable/Mod.cs -------------------------------------------------------------------------------- /source/Reloaded.Mod.Template/templates/configurable/ModConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Template/templates/configurable/ModConfig.json -------------------------------------------------------------------------------- /source/Reloaded.Mod.Template/templates/configurable/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Template/templates/configurable/Preview.png -------------------------------------------------------------------------------- /source/Reloaded.Mod.Template/templates/configurable/Publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Reloaded.Mod.Template/templates/configurable/Publish.ps1 -------------------------------------------------------------------------------- /source/Robust.Trimming.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Robust.Trimming.targets -------------------------------------------------------------------------------- /source/Testing/Apps/TestAppA/AppConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Apps/TestAppA/AppConfig.json -------------------------------------------------------------------------------- /source/Testing/Apps/TestAppA/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Apps/TestAppA/Class1.cs -------------------------------------------------------------------------------- /source/Testing/Apps/TestAppA/TestAppA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Apps/TestAppA/TestAppA.csproj -------------------------------------------------------------------------------- /source/Testing/Apps/TestAppA/Usings.cs: -------------------------------------------------------------------------------- 1 | global using System; -------------------------------------------------------------------------------- /source/Testing/Mods/TestModA/Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModA/Controller.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModA/ModConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModA/ModConfig.json -------------------------------------------------------------------------------- /source/Testing/Mods/TestModA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModA/Program.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModA/TestModA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModA/TestModA.csproj -------------------------------------------------------------------------------- /source/Testing/Mods/TestModA/TestModAPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModA/TestModAPlugin.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModA/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModA/Usings.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModB/ModConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModB/ModConfig.json -------------------------------------------------------------------------------- /source/Testing/Mods/TestModB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModB/Program.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModB/TestModB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModB/TestModB.csproj -------------------------------------------------------------------------------- /source/Testing/Mods/TestModB/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModB/Usings.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModC/ModConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModC/ModConfig.json -------------------------------------------------------------------------------- /source/Testing/Mods/TestModC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModC/Program.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModC/TestModC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModC/TestModC.csproj -------------------------------------------------------------------------------- /source/Testing/Mods/TestModC/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModC/Usings.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/BuildLinked.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/BuildLinked.ps1 -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/Config.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/Mod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/Mod.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/ModConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/ModConfig.json -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/Preview.png -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/Publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/Publish.ps1 -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/Reloaded.Checks.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/Reloaded.Checks.targets -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/Reloaded.Trimming.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/Reloaded.Trimming.targets -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/Template/ModBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/Template/ModBase.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/Template/ModContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/Template/ModContext.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/Template/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/Template/Startup.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModControlParams/TestModControlParams.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModControlParams/TestModControlParams.csproj -------------------------------------------------------------------------------- /source/Testing/Mods/TestModD/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModD/Class1.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModD/ModConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModD/ModConfig.json -------------------------------------------------------------------------------- /source/Testing/Mods/TestModD/TestModD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModD/TestModD.csproj -------------------------------------------------------------------------------- /source/Testing/Mods/TestModD/Usings.cs: -------------------------------------------------------------------------------- 1 | global using System; -------------------------------------------------------------------------------- /source/Testing/Mods/TestModE/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModE/Class1.cs -------------------------------------------------------------------------------- /source/Testing/Mods/TestModE/ModConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModE/ModConfig.json -------------------------------------------------------------------------------- /source/Testing/Mods/TestModE/TestModE.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Mods/TestModE/TestModE.csproj -------------------------------------------------------------------------------- /source/Testing/Mods/TestModE/Usings.cs: -------------------------------------------------------------------------------- 1 | global using System; -------------------------------------------------------------------------------- /source/Testing/Other/TestInterfaces/IController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Other/TestInterfaces/IController.cs -------------------------------------------------------------------------------- /source/Testing/Other/TestInterfaces/ITestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Other/TestInterfaces/ITestHelper.cs -------------------------------------------------------------------------------- /source/Testing/Other/TestInterfaces/ITestModA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Other/TestInterfaces/ITestModA.cs -------------------------------------------------------------------------------- /source/Testing/Other/TestInterfaces/ITestModAPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Other/TestInterfaces/ITestModAPlugin.cs -------------------------------------------------------------------------------- /source/Testing/Other/TestInterfaces/ITestModB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Other/TestInterfaces/ITestModB.cs -------------------------------------------------------------------------------- /source/Testing/Other/TestInterfaces/TestInterfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Testing/Other/TestInterfaces/TestInterfaces.csproj -------------------------------------------------------------------------------- /source/Testing/Other/TestInterfaces/Usings.cs: -------------------------------------------------------------------------------- 1 | global using System; -------------------------------------------------------------------------------- /source/Tools/NuGetConverter/NuGetConverter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/NuGetConverter/NuGetConverter.csproj -------------------------------------------------------------------------------- /source/Tools/NuGetConverter/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/NuGetConverter/Program.cs -------------------------------------------------------------------------------- /source/Tools/NuGetConverter/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/NuGetConverter/Usings.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Commands/AddSourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Commands/AddSourceCommand.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Commands/ForceRunCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Commands/ForceRunCommand.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Commands/SetChannelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Commands/SetChannelCommand.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Config/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Config/Settings.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Config/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Config/Stats.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Mixin/DiscordSocketHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Mixin/DiscordSocketHandler.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Paths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Paths.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Program.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Services/GitPusherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Services/GitPusherService.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Usings.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.AutoIndexBuilder/Utilities/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.AutoIndexBuilder/Utilities/Extensions.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.Community.Tool/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Community.Tool/Options.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.Community.Tool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Community.Tool/Program.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.Community.Tool/Reloaded.Community.Tool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Community.Tool/Reloaded.Community.Tool.csproj -------------------------------------------------------------------------------- /source/Tools/Reloaded.Community.Tool/Samples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Community.Tool/Samples.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.Community.Tool/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Community.Tool/Usings.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.Publisher/Options/PublishModOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Publisher/Options/PublishModOptions.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.Publisher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Publisher/Program.cs -------------------------------------------------------------------------------- /source/Tools/Reloaded.Publisher/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Publisher/Properties/launchSettings.json -------------------------------------------------------------------------------- /source/Tools/Reloaded.Publisher/Reloaded.Publisher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Publisher/Reloaded.Publisher.csproj -------------------------------------------------------------------------------- /source/Tools/Reloaded.Publisher/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reloaded-Project/Reloaded-II/HEAD/source/Tools/Reloaded.Publisher/Usings.cs --------------------------------------------------------------------------------