diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..0d72251 Binary files /dev/null and b/.DS_Store differ diff --git a/.idea/.idea.MyFirstPlugin.dir/.idea/.gitignore b/.idea/.idea.MyFirstPlugin.dir/.idea/.gitignore new file mode 100644 index 0000000..0ab9736 --- /dev/null +++ b/.idea/.idea.MyFirstPlugin.dir/.idea/.gitignore @@ -0,0 +1,15 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/projectSettingsUpdater.xml +/.idea.MyFirstPlugin.iml +/modules.xml +/contentModel.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/.idea.MyFirstPlugin.dir/.idea/encodings.xml b/.idea/.idea.MyFirstPlugin.dir/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.MyFirstPlugin.dir/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.MyFirstPlugin.dir/.idea/indexLayout.xml b/.idea/.idea.MyFirstPlugin.dir/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.MyFirstPlugin.dir/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.UnlockAllPlugin.dir/.idea/.gitignore b/.idea/.idea.UnlockAllPlugin.dir/.idea/.gitignore new file mode 100644 index 0000000..ebe5b7f --- /dev/null +++ b/.idea/.idea.UnlockAllPlugin.dir/.idea/.gitignore @@ -0,0 +1,15 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/contentModel.xml +/modules.xml +/projectSettingsUpdater.xml +/.idea.UnlockAllPlugin.iml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/.idea.UnlockAllPlugin.dir/.idea/encodings.xml b/.idea/.idea.UnlockAllPlugin.dir/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.UnlockAllPlugin.dir/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.UnlockAllPlugin.dir/.idea/indexLayout.xml b/.idea/.idea.UnlockAllPlugin.dir/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.UnlockAllPlugin.dir/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Folder.DotSettings.user b/Folder.DotSettings.user new file mode 100644 index 0000000..c92888c --- /dev/null +++ b/Folder.DotSettings.user @@ -0,0 +1,23 @@ + + True + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + ForceIncluded + <AssemblyExplorer> + <Assembly Path="/Users/ryanmacham/CXPBottles/Steam/drive_c/Program Files (x86)/Steam/steamapps/common/Animalkind/Animalkind_Data/Managed/Assembly-CSharp.dll" /> +</AssemblyExplorer> \ No newline at end of file diff --git a/Patches/InventoryPatches.cs b/Patches/InventoryPatches.cs new file mode 100644 index 0000000..bbf3da6 --- /dev/null +++ b/Patches/InventoryPatches.cs @@ -0,0 +1,36 @@ +using System.Collections.Generic; +using HarmonyLib; + +namespace UnlockAll.Patches; + +public static class InventoryPatches +{ + public static CraftingMode ActiveCraftingMode; + + [HarmonyPatch(typeof(InventoryUI), "updateCraftingRecipes")] + [HarmonyPrefix] + public static bool UpdateCraftingRecipesPrefix() + { + return false; + } + + [HarmonyPatch(typeof(InventoryUI), "updateCraftingRecipes")] + [HarmonyPostfix] + public static void UpdateCraftingRecipesPostfix(InventoryUI __instance, ref int __result) + { + List allRecipes = ConfigManager.GetAllByType(); + List validRecipes = new(); + + List _inventoryRows = Traverse.Create(__instance).Field("_inventoryRows").GetValue>(); + + for (int index = 0; index < allRecipes.Count; ++index) + { + RecipeConfig recipe = allRecipes[index]; + + if (recipe != null) + { + CraftingMode recipeMode + } + } + } +} \ No newline at end of file diff --git a/Patches/PlayerFishingControllerPatches.cs b/Patches/PlayerFishingControllerPatches.cs new file mode 100644 index 0000000..a97c57e --- /dev/null +++ b/Patches/PlayerFishingControllerPatches.cs @@ -0,0 +1,12 @@ +using HarmonyLib; + +namespace UnlockAll.Patches; + +public class PlayerFishingControllerPatches +{ + [HarmonyPatch(typeof(PlayerFishingController), "pickFish")] + public static bool PickFishPrefix() + { + return false; + } +} \ No newline at end of file diff --git a/Patches/PlayerPatches.cs b/Patches/PlayerPatches.cs new file mode 100644 index 0000000..d8ad2cb --- /dev/null +++ b/Patches/PlayerPatches.cs @@ -0,0 +1,15 @@ +using HarmonyLib; + +namespace UnlockAll.Patches; + +public static class PlayerPatches +{ + [HarmonyPatch(typeof(Player), "CanCraftRecipe")] + [HarmonyPrefix] + public static bool PlayerPrefix(ref bool __result) + { + __result = true; + + return false; + } +} \ No newline at end of file diff --git a/Patches/RecipeConfigPatches.cs b/Patches/RecipeConfigPatches.cs new file mode 100644 index 0000000..7c599ec --- /dev/null +++ b/Patches/RecipeConfigPatches.cs @@ -0,0 +1,25 @@ +using HarmonyLib; + +namespace UnlockAll.Patches; + +public static class RecipeConfigPatches +{ + [HarmonyPatch(typeof(RecipeConfig), "CraftingRequirementsMet")] + [HarmonyPrefix] + public static bool UnlockPrefix(ref bool __result) + { + __result = true; + + return false; + } + + [HarmonyPatch(typeof(RecipeConfig), "IsUnlocked")] + [HarmonyPrefix] + public static bool RecipeIsUnlockedPrefix(ref bool __result) + { + __result = true; + + return false; + } + +} \ No newline at end of file diff --git a/Plugin.cs b/Plugin.cs new file mode 100644 index 0000000..2a3b3db --- /dev/null +++ b/Plugin.cs @@ -0,0 +1,24 @@ +using BepInEx; +using BepInEx.Logging; +using HarmonyLib; +using UnlockAll.Patches; + +namespace UnlockAll; + +[BepInPlugin(MyPluginInfo.PLUGIN_GUID, MyPluginInfo.PLUGIN_NAME, MyPluginInfo.PLUGIN_VERSION)] +public class Plugin : BaseUnityPlugin +{ + internal static new ManualLogSource Logger; + + private const string HARMONYID = "com.celisuis.unlockall"; + + private void Awake() + { + // Plugin startup logic + Logger = base.Logger; + Logger.LogInfo($"Plugin {MyPluginInfo.PLUGIN_GUID} is loaded!"); + + Harmony.CreateAndPatchAll(typeof(PlayerPatches), HARMONYID); + Harmony.CreateAndPatchAll(typeof(RecipeConfigPatches), HARMONYID); + } +} diff --git a/README.md b/README.md new file mode 100644 index 0000000..baf6a84 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Unlock-All + +Unlock All Recipes for Animalkind \ No newline at end of file diff --git a/UnlockAllPlugin.csproj b/UnlockAllPlugin.csproj new file mode 100644 index 0000000..eb26a08 --- /dev/null +++ b/UnlockAllPlugin.csproj @@ -0,0 +1,34 @@ + + + + netstandard2.1 + UnlockAllRecipes + Unlock All Recipes + 1.0.0 + true + latest + + https://api.nuget.org/v3/index.json; + https://nuget.bepinex.dev/v3/index.json; + https://nuget.samboy.dev/v3/index.json + + UnlockAll + + + + + + + + + + + + + + + + ..\..\..\..\CXPBottles\Steam\drive_c\Program Files (x86)\Steam\steamapps\common\Animalkind\Animalkind_Data\Managed\Assembly-CSharp.dll + + + diff --git a/gitignore b/gitignore new file mode 100644 index 0000000..22e7db6 --- /dev/null +++ b/gitignore @@ -0,0 +1,75 @@ +# ---> Unity +# This .gitignore file should be placed at the root of your Unity project directory +# +# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore +# +/[Ll]ibrary/ +/[Tt]emp/ +/[Oo]bj/ +/[Bb]uild/ +/[Bb]uilds/ +/[Ll]ogs/ +/[Uu]ser[Ss]ettings/ + +# MemoryCaptures can get excessive in size. +# They also could contain extremely sensitive data +/[Mm]emoryCaptures/ + +# Recordings can get excessive in size +/[Rr]ecordings/ + +# Uncomment this line if you wish to ignore the asset store tools plugin +# /[Aa]ssets/AssetStoreTools* + +# Autogenerated Jetbrains Rider plugin +/[Aa]ssets/Plugins/Editor/JetBrains* + +# Visual Studio cache directory +.vs/ + +# Gradle cache directory +.gradle/ + +# Autogenerated VS/MD/Consulo solution and project files +ExportedObj/ +.consulo/ +*.csproj +*.unityproj +*.sln +*.suo +*.tmp +*.user +*.userprefs +*.pidb +*.booproj +*.svd +*.pdb +*.mdb +*.opendb +*.VC.db + +# Unity3D generated meta files +*.pidb.meta +*.pdb.meta +*.mdb.meta + +# Unity3D generated file on crash reports +sysinfo.txt + +# Builds +*.apk +*.aab +*.unitypackage +*.unitypackage.meta +*.app + +# Crashlytics generated file +crashlytics-build.properties + +# Packed Addressables +/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* + +# Temporary auto-generated Android Assets +/[Aa]ssets/[Ss]treamingAssets/aa.meta +/[Aa]ssets/[Ss]treamingAssets/aa/* + diff --git a/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs b/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs new file mode 100644 index 0000000..8bf3a42 --- /dev/null +++ b/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")] diff --git a/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfo.cs b/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfo.cs new file mode 100644 index 0000000..1909179 --- /dev/null +++ b/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("MyFirstPlugin")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("My first plugin")] +[assembly: System.Reflection.AssemblyTitleAttribute("MyFirstPlugin")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfoInputs.cache b/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfoInputs.cache new file mode 100644 index 0000000..22cb6f5 --- /dev/null +++ b/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b5aa27fe25b3bba75f49e26e236c64a1a702c4d03e838dbfcd1478f092ca6cd5 diff --git a/obj/Debug/netstandard2.0/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netstandard2.0/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..697afb0 --- /dev/null +++ b/obj/Debug/netstandard2.0/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.RootNamespace = MyFirstPlugin +build_property.ProjectDir = /Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/netstandard2.0/MyFirstPlugin.assets.cache b/obj/Debug/netstandard2.0/MyFirstPlugin.assets.cache new file mode 100644 index 0000000..3f32a86 Binary files /dev/null and b/obj/Debug/netstandard2.0/MyFirstPlugin.assets.cache differ diff --git a/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.AssemblyReference.cache b/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4cb4980 Binary files /dev/null and b/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.CoreCompileInputs.cache b/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5eb5e21 --- /dev/null +++ b/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e8eb08761a7582d0862948f010b9fb6432af35f7fcc23908fd3000f15d544a6d diff --git a/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.FileListAbsolute.txt b/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5f95897 --- /dev/null +++ b/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.FileListAbsolute.txt @@ -0,0 +1,6 @@ +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.AssemblyReference.cache +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyPluginInfo.cs +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfoInputs.cache +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfo.cs +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.0/MyFirstPlugin.csproj.CoreCompileInputs.cache diff --git a/obj/Debug/netstandard2.0/MyPluginInfo.cs b/obj/Debug/netstandard2.0/MyPluginInfo.cs new file mode 100644 index 0000000..9f46db7 --- /dev/null +++ b/obj/Debug/netstandard2.0/MyPluginInfo.cs @@ -0,0 +1,9 @@ +namespace MyFirstPlugin +{ + public static class MyPluginInfo + { + public const string PLUGIN_GUID = "UnlockAllRecipes"; + public const string PLUGIN_NAME = "Unlock All Recipes"; + public const string PLUGIN_VERSION = "1.0.0"; + } +} diff --git a/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs b/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs new file mode 100644 index 0000000..348b87f --- /dev/null +++ b/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] diff --git a/obj/Debug/netstandard2.1/MyFirstP.867612DA.Up2Date b/obj/Debug/netstandard2.1/MyFirstP.867612DA.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfo.cs b/obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfo.cs new file mode 100644 index 0000000..93aa7df --- /dev/null +++ b/obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("UnlockAllRecipes")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Unlock All Recipes")] +[assembly: System.Reflection.AssemblyTitleAttribute("UnlockAllRecipes")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfoInputs.cache b/obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfoInputs.cache new file mode 100644 index 0000000..432ff1a --- /dev/null +++ b/obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5e4dfcaa0a6d8efd04812afba1d3a1cc15386403d0e4825369536e381b27dfcb diff --git a/obj/Debug/netstandard2.1/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netstandard2.1/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9a5aa9d --- /dev/null +++ b/obj/Debug/netstandard2.1/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.RootNamespace = UnlockAll +build_property.ProjectDir = /Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/netstandard2.1/MyFirstPlugin.assets.cache b/obj/Debug/netstandard2.1/MyFirstPlugin.assets.cache new file mode 100644 index 0000000..4266b9a Binary files /dev/null and b/obj/Debug/netstandard2.1/MyFirstPlugin.assets.cache differ diff --git a/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.AssemblyReference.cache b/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1698805 Binary files /dev/null and b/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.CoreCompileInputs.cache b/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0f904ae --- /dev/null +++ b/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +de827ad6fbb318db10a528a8053bfbb3a8b9247cd89f860ccabda2b0aa39b31d diff --git a/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.FileListAbsolute.txt b/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..7231bf1 --- /dev/null +++ b/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.FileListAbsolute.txt @@ -0,0 +1,94 @@ +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Assembly-CSharp.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Cinemachine.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.TextMeshPro.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Netcode.Runtime.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/UnityEngine.UI.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.RenderPipelines.Universal.Runtime.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/BehaviorDesigner.Runtime.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.AI.Navigation.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Newtonsoft.Json.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Collections.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/DOTween.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/DistantLands.Cozy.Runtime.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/OccaSoftware.Buto.Runtime.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.RenderPipelines.Core.Runtime.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Assembly-CSharp-firstpass.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Netcode.Components.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/YarnSpinner.Unity.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/QFSW.QC.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/YarnSpinner.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.InputSystem.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/DissonanceVoip.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Facepunch.Steamworks.Win64.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/BoingKit.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/ShapesRuntime.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Dreamteck.Splines.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Heathen.UnityPhysics.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/ZstdNet.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Splines.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Mathematics.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Kamgam.SettingsGenerator.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Burst.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/SALSA-LipSync.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Kamgam.UGUIComponentsForSettings.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Dreamteck.Utilities.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Timeline.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.NetStats.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.MetricTypes.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.NetworkSolutionInterface.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Networking.Transport.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.NetStatsReporting.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.RenderPipeline.Universal.ShaderLibrary.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Collections.LowLevel.ILSupport.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/DOTweenPro.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Yarn.CsvHelper.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Yarn.Google.Protobuf.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Heathen.Core.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/LocalizationsForSettings.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Burst.Unsafe.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.Common.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.MetricEvents.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Assembly-CSharp.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Cinemachine.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.TextMeshPro.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Netcode.Runtime.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/UnityEngine.UI.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.RenderPipelines.Universal.Runtime.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.AI.Navigation.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Newtonsoft.Json.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Collections.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/DistantLands.Cozy.Runtime.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.RenderPipelines.Core.Runtime.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Assembly-CSharp-firstpass.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Netcode.Components.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/YarnSpinner.Unity.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/QFSW.QC.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.InputSystem.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/BoingKit.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/ShapesRuntime.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Heathen.UnityPhysics.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Splines.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Mathematics.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Burst.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Timeline.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.NetStats.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.MetricTypes.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.NetworkSolutionInterface.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Networking.Transport.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.NetStatsReporting.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.RenderPipeline.Universal.ShaderLibrary.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Heathen.Core.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.Common.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/Unity.Multiplayer.Tools.MetricEvents.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.AssemblyReference.cache +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.1/MyPluginInfo.cs +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.1/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfoInputs.cache +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfo.cs +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.1/MyFirstPlugin.csproj.CoreCompileInputs.cache +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.1/MyFirstP.867612DA.Up2Date +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/UnlockAllRecipes.deps.json +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/UnlockAllRecipes.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/bin/Debug/netstandard2.1/UnlockAllRecipes.pdb +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.1/UnlockAllRecipes.dll +/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/Debug/netstandard2.1/UnlockAllRecipes.pdb diff --git a/obj/Debug/netstandard2.1/MyPluginInfo.cs b/obj/Debug/netstandard2.1/MyPluginInfo.cs new file mode 100644 index 0000000..e580bee --- /dev/null +++ b/obj/Debug/netstandard2.1/MyPluginInfo.cs @@ -0,0 +1,9 @@ +namespace UnlockAll +{ + public static class MyPluginInfo + { + public const string PLUGIN_GUID = "UnlockAllRecipes"; + public const string PLUGIN_NAME = "Unlock All Recipes"; + public const string PLUGIN_VERSION = "1.0.0"; + } +} diff --git a/obj/Debug/netstandard2.1/UnlockAllPlugin.AssemblyInfo.cs b/obj/Debug/netstandard2.1/UnlockAllPlugin.AssemblyInfo.cs new file mode 100644 index 0000000..93aa7df --- /dev/null +++ b/obj/Debug/netstandard2.1/UnlockAllPlugin.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("UnlockAllRecipes")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Unlock All Recipes")] +[assembly: System.Reflection.AssemblyTitleAttribute("UnlockAllRecipes")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/netstandard2.1/UnlockAllPlugin.AssemblyInfoInputs.cache b/obj/Debug/netstandard2.1/UnlockAllPlugin.AssemblyInfoInputs.cache new file mode 100644 index 0000000..432ff1a --- /dev/null +++ b/obj/Debug/netstandard2.1/UnlockAllPlugin.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5e4dfcaa0a6d8efd04812afba1d3a1cc15386403d0e4825369536e381b27dfcb diff --git a/obj/Debug/netstandard2.1/UnlockAllPlugin.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netstandard2.1/UnlockAllPlugin.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d2216eb --- /dev/null +++ b/obj/Debug/netstandard2.1/UnlockAllPlugin.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.RootNamespace = UnlockAll +build_property.ProjectDir = /Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = +build_property.EnableCodeStyleSeverity = diff --git a/obj/Debug/netstandard2.1/UnlockAllPlugin.assets.cache b/obj/Debug/netstandard2.1/UnlockAllPlugin.assets.cache new file mode 100644 index 0000000..bc7e537 Binary files /dev/null and b/obj/Debug/netstandard2.1/UnlockAllPlugin.assets.cache differ diff --git a/obj/Debug/netstandard2.1/UnlockAllPlugin.csproj.AssemblyReference.cache b/obj/Debug/netstandard2.1/UnlockAllPlugin.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9d4de84 Binary files /dev/null and b/obj/Debug/netstandard2.1/UnlockAllPlugin.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/netstandard2.1/UnlockAllRecipes.dll b/obj/Debug/netstandard2.1/UnlockAllRecipes.dll new file mode 100644 index 0000000..a465729 Binary files /dev/null and b/obj/Debug/netstandard2.1/UnlockAllRecipes.dll differ diff --git a/obj/Debug/netstandard2.1/UnlockAllRecipes.pdb b/obj/Debug/netstandard2.1/UnlockAllRecipes.pdb new file mode 100644 index 0000000..089b973 Binary files /dev/null and b/obj/Debug/netstandard2.1/UnlockAllRecipes.pdb differ diff --git a/obj/MyFirstPlugin.csproj.nuget.dgspec.json b/obj/MyFirstPlugin.csproj.nuget.dgspec.json new file mode 100644 index 0000000..99bfefe --- /dev/null +++ b/obj/MyFirstPlugin.csproj.nuget.dgspec.json @@ -0,0 +1,96 @@ +{ + "format": 1, + "restore": { + "/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/MyFirstPlugin.csproj": {} + }, + "projects": { + "/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/MyFirstPlugin.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/MyFirstPlugin.csproj", + "projectName": "UnlockAllRecipes", + "projectPath": "/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/MyFirstPlugin.csproj", + "packagesPath": "/Users/ryanmacham/.nuget/packages/", + "outputPath": "/Users/ryanmacham/Documents/Mods/Unlock All/MyFirstPlugin/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/ryanmacham/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard2.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.bepinex.dev/v3/index.json": {}, + "https://nuget.samboy.dev/v3/index.json": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "dependencies": { + "BepInEx.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.*, )" + }, + "BepInEx.Core": { + "target": "Package", + "version": "[5.*, )" + }, + "BepInEx.PluginInfoProps": { + "target": "Package", + "version": "[2.*, )" + }, + "UnityEngine.Modules": { + "include": "Compile", + "target": "Package", + "version": "[2022.3.62, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "NETStandard.Library.Ref", + "version": "[2.1.0, 2.1.0]" + } + ], + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/MyFirstPlugin.csproj.nuget.g.props b/obj/MyFirstPlugin.csproj.nuget.g.props new file mode 100644 index 0000000..1a72b94 --- /dev/null +++ b/obj/MyFirstPlugin.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/ryanmacham/.nuget/packages/ + /Users/ryanmacham/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + + /Users/ryanmacham/.nuget/packages/bepinex.core/5.4.21 + /Users/ryanmacham/.nuget/packages/bepinex.analyzers/1.0.8 + + \ No newline at end of file diff --git a/obj/MyFirstPlugin.csproj.nuget.g.targets b/obj/MyFirstPlugin.csproj.nuget.g.targets new file mode 100644 index 0000000..3c0a73d --- /dev/null +++ b/obj/MyFirstPlugin.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/UnlockAllPlugin.csproj.nuget.dgspec.json b/obj/UnlockAllPlugin.csproj.nuget.dgspec.json new file mode 100644 index 0000000..0c47f5b --- /dev/null +++ b/obj/UnlockAllPlugin.csproj.nuget.dgspec.json @@ -0,0 +1,96 @@ +{ + "format": 1, + "restore": { + "/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/UnlockAllPlugin.csproj": {} + }, + "projects": { + "/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/UnlockAllPlugin.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/UnlockAllPlugin.csproj", + "projectName": "UnlockAllRecipes", + "projectPath": "/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/UnlockAllPlugin.csproj", + "packagesPath": "/Users/ryanmacham/.nuget/packages/", + "outputPath": "/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/ryanmacham/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard2.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.bepinex.dev/v3/index.json": {}, + "https://nuget.samboy.dev/v3/index.json": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "dependencies": { + "BepInEx.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.*, )" + }, + "BepInEx.Core": { + "target": "Package", + "version": "[5.*, )" + }, + "BepInEx.PluginInfoProps": { + "target": "Package", + "version": "[2.*, )" + }, + "UnityEngine.Modules": { + "include": "Compile", + "target": "Package", + "version": "[2022.3.62, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "NETStandard.Library.Ref", + "version": "[2.1.0, 2.1.0]" + } + ], + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/UnlockAllPlugin.csproj.nuget.g.props b/obj/UnlockAllPlugin.csproj.nuget.g.props new file mode 100644 index 0000000..1a72b94 --- /dev/null +++ b/obj/UnlockAllPlugin.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/ryanmacham/.nuget/packages/ + /Users/ryanmacham/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + + /Users/ryanmacham/.nuget/packages/bepinex.core/5.4.21 + /Users/ryanmacham/.nuget/packages/bepinex.analyzers/1.0.8 + + \ No newline at end of file diff --git a/obj/UnlockAllPlugin.csproj.nuget.g.targets b/obj/UnlockAllPlugin.csproj.nuget.g.targets new file mode 100644 index 0000000..3c0a73d --- /dev/null +++ b/obj/UnlockAllPlugin.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..d37e1c9 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,2777 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v2.1": { + "BepInEx.Analyzers/1.0.8": { + "type": "package" + }, + "BepInEx.BaseLib/5.4.20": { + "type": "package", + "compile": { + "lib/netstandard2.0/BepInEx.dll": {} + }, + "runtime": { + "lib/netstandard2.0/BepInEx.dll": {} + } + }, + "BepInEx.Core/5.4.21": { + "type": "package", + "dependencies": { + "BepInEx.BaseLib": "5.4.20", + "HarmonyX": "2.7.0" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "build/BepInEx.Core.targets": {} + } + }, + "BepInEx.PluginInfoProps/2.1.0": { + "type": "package", + "build": { + "build/BepInEx.PluginInfoProps.props": {} + } + }, + "HarmonyX/2.7.0": { + "type": "package", + "dependencies": { + "MonoMod.RuntimeDetour": "21.12.13.1", + "System.Reflection.Emit": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/0Harmony.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/0Harmony.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Mono.Cecil/0.11.4": { + "type": "package", + "compile": { + "lib/netstandard2.0/Mono.Cecil.Mdb.dll": { + "related": ".pdb" + }, + "lib/netstandard2.0/Mono.Cecil.Pdb.dll": { + "related": ".pdb" + }, + "lib/netstandard2.0/Mono.Cecil.Rocks.dll": { + "related": ".pdb" + }, + "lib/netstandard2.0/Mono.Cecil.dll": { + "related": ".Mdb.pdb;.pdb;.Pdb.pdb;.Rocks.pdb" + } + }, + "runtime": { + "lib/netstandard2.0/Mono.Cecil.Mdb.dll": { + "related": ".pdb" + }, + "lib/netstandard2.0/Mono.Cecil.Pdb.dll": { + "related": ".pdb" + }, + "lib/netstandard2.0/Mono.Cecil.Rocks.dll": { + "related": ".pdb" + }, + "lib/netstandard2.0/Mono.Cecil.dll": { + "related": ".Mdb.pdb;.pdb;.Pdb.pdb;.Rocks.pdb" + } + } + }, + "MonoMod.RuntimeDetour/21.12.13.1": { + "type": "package", + "dependencies": { + "Mono.Cecil": "0.11.4", + "MonoMod.Utils": "21.12.13.1", + "System.Collections.NonGeneric": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.7.0", + "System.Reflection.Emit.Lightweight": "4.7.0", + "System.Reflection.TypeExtensions": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/MonoMod.RuntimeDetour.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MonoMod.RuntimeDetour.dll": { + "related": ".xml" + } + } + }, + "MonoMod.Utils/21.12.13.1": { + "type": "package", + "dependencies": { + "Mono.Cecil": "0.11.4", + "System.Collections.NonGeneric": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.7.0", + "System.Reflection.Emit.Lightweight": "4.7.0", + "System.Reflection.TypeExtensions": "4.7.0" + }, + "compile": { + "lib/netstandard2.0/MonoMod.Utils.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MonoMod.Utils.dll": { + "related": ".xml" + } + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/_._": {} + }, + "runtime": { + "lib/netstandard2.1/_._": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/_._": {} + }, + "runtime": { + "lib/netstandard2.1/_._": {} + } + }, + "System.Reflection.Emit.Lightweight/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/_._": {} + }, + "runtime": { + "lib/netstandard2.1/_._": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.7.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll": { + "related": ".xml" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "UnityEngine.Modules/2022.3.62": { + "type": "package", + "compile": { + "lib/netstandard2.0/UnityEngine.AIModule.dll": {}, + "lib/netstandard2.0/UnityEngine.AccessibilityModule.dll": {}, + "lib/netstandard2.0/UnityEngine.AndroidJNIModule.dll": {}, + "lib/netstandard2.0/UnityEngine.AnimationModule.dll": {}, + "lib/netstandard2.0/UnityEngine.AssetBundleModule.dll": {}, + "lib/netstandard2.0/UnityEngine.AudioModule.dll": {}, + "lib/netstandard2.0/UnityEngine.ClothModule.dll": {}, + "lib/netstandard2.0/UnityEngine.ClusterInputModule.dll": {}, + "lib/netstandard2.0/UnityEngine.ClusterRendererModule.dll": {}, + "lib/netstandard2.0/UnityEngine.ContentLoadModule.dll": {}, + "lib/netstandard2.0/UnityEngine.CoreModule.dll": {}, + "lib/netstandard2.0/UnityEngine.CrashReportingModule.dll": {}, + "lib/netstandard2.0/UnityEngine.DSPGraphModule.dll": {}, + "lib/netstandard2.0/UnityEngine.DirectorModule.dll": {}, + "lib/netstandard2.0/UnityEngine.GIModule.dll": {}, + "lib/netstandard2.0/UnityEngine.GameCenterModule.dll": {}, + "lib/netstandard2.0/UnityEngine.GridModule.dll": {}, + "lib/netstandard2.0/UnityEngine.HotReloadModule.dll": {}, + "lib/netstandard2.0/UnityEngine.IMGUIModule.dll": {}, + "lib/netstandard2.0/UnityEngine.ImageConversionModule.dll": {}, + "lib/netstandard2.0/UnityEngine.InputLegacyModule.dll": {}, + "lib/netstandard2.0/UnityEngine.InputModule.dll": {}, + "lib/netstandard2.0/UnityEngine.JSONSerializeModule.dll": {}, + "lib/netstandard2.0/UnityEngine.LocalizationModule.dll": {}, + "lib/netstandard2.0/UnityEngine.ParticleSystemModule.dll": {}, + "lib/netstandard2.0/UnityEngine.PerformanceReportingModule.dll": {}, + "lib/netstandard2.0/UnityEngine.Physics2DModule.dll": {}, + "lib/netstandard2.0/UnityEngine.PhysicsModule.dll": {}, + "lib/netstandard2.0/UnityEngine.ProfilerModule.dll": {}, + "lib/netstandard2.0/UnityEngine.PropertiesModule.dll": {}, + "lib/netstandard2.0/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll": {}, + "lib/netstandard2.0/UnityEngine.ScreenCaptureModule.dll": {}, + "lib/netstandard2.0/UnityEngine.SharedInternalsModule.dll": {}, + "lib/netstandard2.0/UnityEngine.SpriteMaskModule.dll": {}, + "lib/netstandard2.0/UnityEngine.SpriteShapeModule.dll": {}, + "lib/netstandard2.0/UnityEngine.StreamingModule.dll": {}, + "lib/netstandard2.0/UnityEngine.SubstanceModule.dll": {}, + "lib/netstandard2.0/UnityEngine.SubsystemsModule.dll": {}, + "lib/netstandard2.0/UnityEngine.TLSModule.dll": {}, + "lib/netstandard2.0/UnityEngine.TerrainModule.dll": {}, + "lib/netstandard2.0/UnityEngine.TerrainPhysicsModule.dll": {}, + "lib/netstandard2.0/UnityEngine.TextCoreFontEngineModule.dll": {}, + "lib/netstandard2.0/UnityEngine.TextCoreTextEngineModule.dll": {}, + "lib/netstandard2.0/UnityEngine.TextRenderingModule.dll": {}, + "lib/netstandard2.0/UnityEngine.TilemapModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UIElementsModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UIModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UmbraModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityAnalyticsCommonModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityAnalyticsModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityConnectModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityCurlModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityTestProtocolModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityWebRequestAssetBundleModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityWebRequestAudioModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityWebRequestModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityWebRequestTextureModule.dll": {}, + "lib/netstandard2.0/UnityEngine.UnityWebRequestWWWModule.dll": {}, + "lib/netstandard2.0/UnityEngine.VFXModule.dll": {}, + "lib/netstandard2.0/UnityEngine.VRModule.dll": {}, + "lib/netstandard2.0/UnityEngine.VehiclesModule.dll": {}, + "lib/netstandard2.0/UnityEngine.VideoModule.dll": {}, + "lib/netstandard2.0/UnityEngine.VirtualTexturingModule.dll": {}, + "lib/netstandard2.0/UnityEngine.WindModule.dll": {}, + "lib/netstandard2.0/UnityEngine.XRModule.dll": {}, + "lib/netstandard2.0/UnityEngine.dll": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + } + } + }, + "libraries": { + "BepInEx.Analyzers/1.0.8": { + "sha512": "xrfNmunsPhBx+vStTxLonq/aHkRrDH77c9tG/x3m5eejrKe5B0nf7cJPRRt6x330sGI0bLaPTtygdeHUgvI3wQ==", + "type": "package", + "path": "bepinex.analyzers/1.0.8", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "analyzers/dotnet/cs/BepInEx.Analyzers.CodeFixes.dll", + "analyzers/dotnet/cs/BepInEx.Analyzers.dll", + "bepinex.analyzers.1.0.8.nupkg.sha512", + "bepinex.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "BepInEx.BaseLib/5.4.20": { + "sha512": "0bXgYxbCEN2Ixp3kiFEhyw+RASeFQeg/ww+lbMt7if6XMeVS60eg6epNsMA8Jbx57dmNOzNevkKKw8mP8SUMqw==", + "type": "package", + "path": "bepinex.baselib/5.4.20", + "files": [ + ".nupkg.metadata", + "bepinex.baselib.5.4.20.nupkg.sha512", + "bepinex.baselib.nuspec", + "images/icon.png", + "lib/net35/BepInEx.dll", + "lib/netstandard2.0/BepInEx.dll" + ] + }, + "BepInEx.Core/5.4.21": { + "sha512": "NMUPlbHTTfJ+qIQCI90uIvjuUQ4wnwt4cpRsK3ItBh1DhsWFzAHXNiZjBxZkPysljEKQ2iu89sxMTga4bxBXVQ==", + "type": "package", + "path": "bepinex.core/5.4.21", + "hasTools": true, + "files": [ + ".nupkg.metadata", + "bepinex.core.5.4.21.nupkg.sha512", + "bepinex.core.nuspec", + "build/BepInEx.Core.targets", + "images/icon.png", + "lib/net35/_._", + "lib/netstandard2.0/_._", + "tools/Install.ps1" + ] + }, + "BepInEx.PluginInfoProps/2.1.0": { + "sha512": "VCG3QRiqNdW9ku2FEcNsbK+HKxrZmW0VxwMNyLNO7h0xGorU+C6vBHN8Qq4eAL5fU11Uks5x2uoYdqEoKD3P8A==", + "type": "package", + "path": "bepinex.plugininfoprops/2.1.0", + "files": [ + ".nupkg.metadata", + "bepinex.plugininfoprops.2.1.0.nupkg.sha512", + "bepinex.plugininfoprops.nuspec", + "build/BepInEx.PluginInfoProps.props" + ] + }, + "HarmonyX/2.7.0": { + "sha512": "lec/SkduQspMa3Pi/nM/NSvA84Za8HCCWA8ybdToKiTqnBZa+JC5g6rxoFQCg/1vNuYcvjy77edePZzIEsRmvw==", + "type": "package", + "path": "harmonyx/2.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "harmonyx.2.7.0.nupkg.sha512", + "harmonyx.nuspec", + "lib/net35/0Harmony.dll", + "lib/net35/0Harmony.xml", + "lib/net45/0Harmony.dll", + "lib/net45/0Harmony.xml", + "lib/netstandard2.0/0Harmony.dll", + "lib/netstandard2.0/0Harmony.xml", + "logo_mini.png" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Mono.Cecil/0.11.4": { + "sha512": "IC1h5g0NeJGHIUgzM1P82ld57knhP0IcQfrYITDPXlNpMYGUrsG5TxuaWTjaeqDNQMBDNZkB8L0rBnwsY6JHuQ==", + "type": "package", + "path": "mono.cecil/0.11.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/Mono.Cecil.Mdb.dll", + "lib/net40/Mono.Cecil.Mdb.pdb", + "lib/net40/Mono.Cecil.Pdb.dll", + "lib/net40/Mono.Cecil.Pdb.pdb", + "lib/net40/Mono.Cecil.Rocks.dll", + "lib/net40/Mono.Cecil.Rocks.pdb", + "lib/net40/Mono.Cecil.dll", + "lib/net40/Mono.Cecil.pdb", + "lib/netstandard2.0/Mono.Cecil.Mdb.dll", + "lib/netstandard2.0/Mono.Cecil.Mdb.pdb", + "lib/netstandard2.0/Mono.Cecil.Pdb.dll", + "lib/netstandard2.0/Mono.Cecil.Pdb.pdb", + "lib/netstandard2.0/Mono.Cecil.Rocks.dll", + "lib/netstandard2.0/Mono.Cecil.Rocks.pdb", + "lib/netstandard2.0/Mono.Cecil.dll", + "lib/netstandard2.0/Mono.Cecil.pdb", + "mono.cecil.0.11.4.nupkg.sha512", + "mono.cecil.nuspec" + ] + }, + "MonoMod.RuntimeDetour/21.12.13.1": { + "sha512": "65mB+bHjT6UCGCgO+/pYhpuGPf96rQ1Whwkut/x7cqVIW0DTndDFyWc/3bngzhnY/Y6IYtBMlXsU2ATq+CxpHg==", + "type": "package", + "path": "monomod.runtimedetour/21.12.13.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/MonoMod.RuntimeDetour.dll", + "lib/net35/MonoMod.RuntimeDetour.xml", + "lib/net452/MonoMod.RuntimeDetour.dll", + "lib/net452/MonoMod.RuntimeDetour.xml", + "lib/net5.0/MonoMod.RuntimeDetour.dll", + "lib/net5.0/MonoMod.RuntimeDetour.xml", + "lib/netstandard2.0/MonoMod.RuntimeDetour.dll", + "lib/netstandard2.0/MonoMod.RuntimeDetour.xml", + "monomod.runtimedetour.21.12.13.1.nupkg.sha512", + "monomod.runtimedetour.nuspec" + ] + }, + "MonoMod.Utils/21.12.13.1": { + "sha512": "/H+0RMWqx/D1/fSuY5jhY6GFvqhdYdlnI7J3IfL8P6y4nJkoZDxqts6+RxWWOz4pbnJdWnxSjS8XG+Lq6rUi7w==", + "type": "package", + "path": "monomod.utils/21.12.13.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/MonoMod.Utils.dll", + "lib/net35/MonoMod.Utils.xml", + "lib/net452/MonoMod.Utils.dll", + "lib/net452/MonoMod.Utils.xml", + "lib/net5.0/MonoMod.Utils.dll", + "lib/net5.0/MonoMod.Utils.xml", + "lib/netstandard2.0/MonoMod.Utils.dll", + "lib/netstandard2.0/MonoMod.Utils.xml", + "monomod.utils.21.12.13.1.nupkg.sha512", + "monomod.utils.nuspec" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.7.0": { + "sha512": "VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==", + "type": "package", + "path": "system.reflection.emit/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Reflection.Emit.dll", + "lib/netstandard1.1/System.Reflection.Emit.xml", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/netstandard2.0/System.Reflection.Emit.dll", + "lib/netstandard2.0/System.Reflection.Emit.xml", + "lib/netstandard2.1/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/netstandard2.0/System.Reflection.Emit.dll", + "ref/netstandard2.0/System.Reflection.Emit.xml", + "ref/netstandard2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.dll", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.xml", + "system.reflection.emit.4.7.0.nupkg.sha512", + "system.reflection.emit.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.ILGeneration/4.7.0": { + "sha512": "AucBYo3DSI0IDxdUjKksBcQJXPHyoPyrCXYURW1WDsLI4M65Ar/goSHjdnHOAY9MiYDNKqDlIgaYm+zL2hA1KA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard2.0/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard2.0/System.Reflection.Emit.ILGeneration.xml", + "lib/netstandard2.1/_._", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard2.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard2.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard2.1/_._", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.ILGeneration.xml", + "system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit.Lightweight/4.7.0": { + "sha512": "a4OLB4IITxAXJeV74MDx49Oq2+PsF6Sml54XAFv+2RyWwtDBcabzoxiiJRhdhx+gaohLh4hEGCLQyBozXoQPqA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard2.0/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard2.0/System.Reflection.Emit.Lightweight.xml", + "lib/netstandard2.1/_._", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard2.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard2.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard2.1/_._", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "runtimes/aot/lib/netcore50/System.Reflection.Emit.Lightweight.xml", + "system.reflection.emit.lightweight.4.7.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.7.0": { + "sha512": "VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==", + "type": "package", + "path": "system.reflection.typeextensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.dll", + "lib/net461/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp1.0/System.Reflection.TypeExtensions.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.3/System.Reflection.TypeExtensions.xml", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.xml", + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll", + "lib/netstandard2.0/System.Reflection.TypeExtensions.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.dll", + "ref/net461/System.Reflection.TypeExtensions.xml", + "ref/net472/System.Reflection.TypeExtensions.dll", + "ref/net472/System.Reflection.TypeExtensions.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard2.0/System.Reflection.TypeExtensions.dll", + "ref/netstandard2.0/System.Reflection.TypeExtensions.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/aot/lib/uap10.0.16299/_._", + "system.reflection.typeextensions.4.7.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "UnityEngine.Modules/2022.3.62": { + "sha512": "zpu5dELUCFt7Rvvzp50iTrfVusJg+2gmlcaytGEoHYuIP+AOv57X272czjp+sA8N1onPo/IiHFnOEFtT9rLJBA==", + "type": "package", + "path": "unityengine.modules/2022.3.62", + "files": [ + ".nupkg.metadata", + "lib/net35/UnityEngine.AIModule.dll", + "lib/net35/UnityEngine.AccessibilityModule.dll", + "lib/net35/UnityEngine.AndroidJNIModule.dll", + "lib/net35/UnityEngine.AnimationModule.dll", + "lib/net35/UnityEngine.AssetBundleModule.dll", + "lib/net35/UnityEngine.AudioModule.dll", + "lib/net35/UnityEngine.ClothModule.dll", + "lib/net35/UnityEngine.ClusterInputModule.dll", + "lib/net35/UnityEngine.ClusterRendererModule.dll", + "lib/net35/UnityEngine.ContentLoadModule.dll", + "lib/net35/UnityEngine.CoreModule.dll", + "lib/net35/UnityEngine.CrashReportingModule.dll", + "lib/net35/UnityEngine.DSPGraphModule.dll", + "lib/net35/UnityEngine.DirectorModule.dll", + "lib/net35/UnityEngine.GIModule.dll", + "lib/net35/UnityEngine.GameCenterModule.dll", + "lib/net35/UnityEngine.GridModule.dll", + "lib/net35/UnityEngine.HotReloadModule.dll", + "lib/net35/UnityEngine.IMGUIModule.dll", + "lib/net35/UnityEngine.ImageConversionModule.dll", + "lib/net35/UnityEngine.InputLegacyModule.dll", + "lib/net35/UnityEngine.InputModule.dll", + "lib/net35/UnityEngine.JSONSerializeModule.dll", + "lib/net35/UnityEngine.LocalizationModule.dll", + "lib/net35/UnityEngine.ParticleSystemModule.dll", + "lib/net35/UnityEngine.PerformanceReportingModule.dll", + "lib/net35/UnityEngine.Physics2DModule.dll", + "lib/net35/UnityEngine.PhysicsModule.dll", + "lib/net35/UnityEngine.ProfilerModule.dll", + "lib/net35/UnityEngine.PropertiesModule.dll", + "lib/net35/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "lib/net35/UnityEngine.ScreenCaptureModule.dll", + "lib/net35/UnityEngine.SharedInternalsModule.dll", + "lib/net35/UnityEngine.SpriteMaskModule.dll", + "lib/net35/UnityEngine.SpriteShapeModule.dll", + "lib/net35/UnityEngine.StreamingModule.dll", + "lib/net35/UnityEngine.SubstanceModule.dll", + "lib/net35/UnityEngine.SubsystemsModule.dll", + "lib/net35/UnityEngine.TLSModule.dll", + "lib/net35/UnityEngine.TerrainModule.dll", + "lib/net35/UnityEngine.TerrainPhysicsModule.dll", + "lib/net35/UnityEngine.TextCoreFontEngineModule.dll", + "lib/net35/UnityEngine.TextCoreTextEngineModule.dll", + "lib/net35/UnityEngine.TextRenderingModule.dll", + "lib/net35/UnityEngine.TilemapModule.dll", + "lib/net35/UnityEngine.UIElementsModule.dll", + "lib/net35/UnityEngine.UIModule.dll", + "lib/net35/UnityEngine.UmbraModule.dll", + "lib/net35/UnityEngine.UnityAnalyticsCommonModule.dll", + "lib/net35/UnityEngine.UnityAnalyticsModule.dll", + "lib/net35/UnityEngine.UnityConnectModule.dll", + "lib/net35/UnityEngine.UnityCurlModule.dll", + "lib/net35/UnityEngine.UnityTestProtocolModule.dll", + "lib/net35/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "lib/net35/UnityEngine.UnityWebRequestAudioModule.dll", + "lib/net35/UnityEngine.UnityWebRequestModule.dll", + "lib/net35/UnityEngine.UnityWebRequestTextureModule.dll", + "lib/net35/UnityEngine.UnityWebRequestWWWModule.dll", + "lib/net35/UnityEngine.VFXModule.dll", + "lib/net35/UnityEngine.VRModule.dll", + "lib/net35/UnityEngine.VehiclesModule.dll", + "lib/net35/UnityEngine.VideoModule.dll", + "lib/net35/UnityEngine.VirtualTexturingModule.dll", + "lib/net35/UnityEngine.WindModule.dll", + "lib/net35/UnityEngine.XRModule.dll", + "lib/net35/UnityEngine.dll", + "lib/net45/UnityEngine.AIModule.dll", + "lib/net45/UnityEngine.AccessibilityModule.dll", + "lib/net45/UnityEngine.AndroidJNIModule.dll", + "lib/net45/UnityEngine.AnimationModule.dll", + "lib/net45/UnityEngine.AssetBundleModule.dll", + "lib/net45/UnityEngine.AudioModule.dll", + "lib/net45/UnityEngine.ClothModule.dll", + "lib/net45/UnityEngine.ClusterInputModule.dll", + "lib/net45/UnityEngine.ClusterRendererModule.dll", + "lib/net45/UnityEngine.ContentLoadModule.dll", + "lib/net45/UnityEngine.CoreModule.dll", + "lib/net45/UnityEngine.CrashReportingModule.dll", + "lib/net45/UnityEngine.DSPGraphModule.dll", + "lib/net45/UnityEngine.DirectorModule.dll", + "lib/net45/UnityEngine.GIModule.dll", + "lib/net45/UnityEngine.GameCenterModule.dll", + "lib/net45/UnityEngine.GridModule.dll", + "lib/net45/UnityEngine.HotReloadModule.dll", + "lib/net45/UnityEngine.IMGUIModule.dll", + "lib/net45/UnityEngine.ImageConversionModule.dll", + "lib/net45/UnityEngine.InputLegacyModule.dll", + "lib/net45/UnityEngine.InputModule.dll", + "lib/net45/UnityEngine.JSONSerializeModule.dll", + "lib/net45/UnityEngine.LocalizationModule.dll", + "lib/net45/UnityEngine.ParticleSystemModule.dll", + "lib/net45/UnityEngine.PerformanceReportingModule.dll", + "lib/net45/UnityEngine.Physics2DModule.dll", + "lib/net45/UnityEngine.PhysicsModule.dll", + "lib/net45/UnityEngine.ProfilerModule.dll", + "lib/net45/UnityEngine.PropertiesModule.dll", + "lib/net45/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "lib/net45/UnityEngine.ScreenCaptureModule.dll", + "lib/net45/UnityEngine.SharedInternalsModule.dll", + "lib/net45/UnityEngine.SpriteMaskModule.dll", + "lib/net45/UnityEngine.SpriteShapeModule.dll", + "lib/net45/UnityEngine.StreamingModule.dll", + "lib/net45/UnityEngine.SubstanceModule.dll", + "lib/net45/UnityEngine.SubsystemsModule.dll", + "lib/net45/UnityEngine.TLSModule.dll", + "lib/net45/UnityEngine.TerrainModule.dll", + "lib/net45/UnityEngine.TerrainPhysicsModule.dll", + "lib/net45/UnityEngine.TextCoreFontEngineModule.dll", + "lib/net45/UnityEngine.TextCoreTextEngineModule.dll", + "lib/net45/UnityEngine.TextRenderingModule.dll", + "lib/net45/UnityEngine.TilemapModule.dll", + "lib/net45/UnityEngine.UIElementsModule.dll", + "lib/net45/UnityEngine.UIModule.dll", + "lib/net45/UnityEngine.UmbraModule.dll", + "lib/net45/UnityEngine.UnityAnalyticsCommonModule.dll", + "lib/net45/UnityEngine.UnityAnalyticsModule.dll", + "lib/net45/UnityEngine.UnityConnectModule.dll", + "lib/net45/UnityEngine.UnityCurlModule.dll", + "lib/net45/UnityEngine.UnityTestProtocolModule.dll", + "lib/net45/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "lib/net45/UnityEngine.UnityWebRequestAudioModule.dll", + "lib/net45/UnityEngine.UnityWebRequestModule.dll", + "lib/net45/UnityEngine.UnityWebRequestTextureModule.dll", + "lib/net45/UnityEngine.UnityWebRequestWWWModule.dll", + "lib/net45/UnityEngine.VFXModule.dll", + "lib/net45/UnityEngine.VRModule.dll", + "lib/net45/UnityEngine.VehiclesModule.dll", + "lib/net45/UnityEngine.VideoModule.dll", + "lib/net45/UnityEngine.VirtualTexturingModule.dll", + "lib/net45/UnityEngine.WindModule.dll", + "lib/net45/UnityEngine.XRModule.dll", + "lib/net45/UnityEngine.dll", + "lib/netstandard2.0/UnityEngine.AIModule.dll", + "lib/netstandard2.0/UnityEngine.AccessibilityModule.dll", + "lib/netstandard2.0/UnityEngine.AndroidJNIModule.dll", + "lib/netstandard2.0/UnityEngine.AnimationModule.dll", + "lib/netstandard2.0/UnityEngine.AssetBundleModule.dll", + "lib/netstandard2.0/UnityEngine.AudioModule.dll", + "lib/netstandard2.0/UnityEngine.ClothModule.dll", + "lib/netstandard2.0/UnityEngine.ClusterInputModule.dll", + "lib/netstandard2.0/UnityEngine.ClusterRendererModule.dll", + "lib/netstandard2.0/UnityEngine.ContentLoadModule.dll", + "lib/netstandard2.0/UnityEngine.CoreModule.dll", + "lib/netstandard2.0/UnityEngine.CrashReportingModule.dll", + "lib/netstandard2.0/UnityEngine.DSPGraphModule.dll", + "lib/netstandard2.0/UnityEngine.DirectorModule.dll", + "lib/netstandard2.0/UnityEngine.GIModule.dll", + "lib/netstandard2.0/UnityEngine.GameCenterModule.dll", + "lib/netstandard2.0/UnityEngine.GridModule.dll", + "lib/netstandard2.0/UnityEngine.HotReloadModule.dll", + "lib/netstandard2.0/UnityEngine.IMGUIModule.dll", + "lib/netstandard2.0/UnityEngine.ImageConversionModule.dll", + "lib/netstandard2.0/UnityEngine.InputLegacyModule.dll", + "lib/netstandard2.0/UnityEngine.InputModule.dll", + "lib/netstandard2.0/UnityEngine.JSONSerializeModule.dll", + "lib/netstandard2.0/UnityEngine.LocalizationModule.dll", + "lib/netstandard2.0/UnityEngine.ParticleSystemModule.dll", + "lib/netstandard2.0/UnityEngine.PerformanceReportingModule.dll", + "lib/netstandard2.0/UnityEngine.Physics2DModule.dll", + "lib/netstandard2.0/UnityEngine.PhysicsModule.dll", + "lib/netstandard2.0/UnityEngine.ProfilerModule.dll", + "lib/netstandard2.0/UnityEngine.PropertiesModule.dll", + "lib/netstandard2.0/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll", + "lib/netstandard2.0/UnityEngine.ScreenCaptureModule.dll", + "lib/netstandard2.0/UnityEngine.SharedInternalsModule.dll", + "lib/netstandard2.0/UnityEngine.SpriteMaskModule.dll", + "lib/netstandard2.0/UnityEngine.SpriteShapeModule.dll", + "lib/netstandard2.0/UnityEngine.StreamingModule.dll", + "lib/netstandard2.0/UnityEngine.SubstanceModule.dll", + "lib/netstandard2.0/UnityEngine.SubsystemsModule.dll", + "lib/netstandard2.0/UnityEngine.TLSModule.dll", + "lib/netstandard2.0/UnityEngine.TerrainModule.dll", + "lib/netstandard2.0/UnityEngine.TerrainPhysicsModule.dll", + "lib/netstandard2.0/UnityEngine.TextCoreFontEngineModule.dll", + "lib/netstandard2.0/UnityEngine.TextCoreTextEngineModule.dll", + "lib/netstandard2.0/UnityEngine.TextRenderingModule.dll", + "lib/netstandard2.0/UnityEngine.TilemapModule.dll", + "lib/netstandard2.0/UnityEngine.UIElementsModule.dll", + "lib/netstandard2.0/UnityEngine.UIModule.dll", + "lib/netstandard2.0/UnityEngine.UmbraModule.dll", + "lib/netstandard2.0/UnityEngine.UnityAnalyticsCommonModule.dll", + "lib/netstandard2.0/UnityEngine.UnityAnalyticsModule.dll", + "lib/netstandard2.0/UnityEngine.UnityConnectModule.dll", + "lib/netstandard2.0/UnityEngine.UnityCurlModule.dll", + "lib/netstandard2.0/UnityEngine.UnityTestProtocolModule.dll", + "lib/netstandard2.0/UnityEngine.UnityWebRequestAssetBundleModule.dll", + "lib/netstandard2.0/UnityEngine.UnityWebRequestAudioModule.dll", + "lib/netstandard2.0/UnityEngine.UnityWebRequestModule.dll", + "lib/netstandard2.0/UnityEngine.UnityWebRequestTextureModule.dll", + "lib/netstandard2.0/UnityEngine.UnityWebRequestWWWModule.dll", + "lib/netstandard2.0/UnityEngine.VFXModule.dll", + "lib/netstandard2.0/UnityEngine.VRModule.dll", + "lib/netstandard2.0/UnityEngine.VehiclesModule.dll", + "lib/netstandard2.0/UnityEngine.VideoModule.dll", + "lib/netstandard2.0/UnityEngine.VirtualTexturingModule.dll", + "lib/netstandard2.0/UnityEngine.WindModule.dll", + "lib/netstandard2.0/UnityEngine.XRModule.dll", + "lib/netstandard2.0/UnityEngine.dll", + "unityengine.modules.2022.3.62.nupkg.sha512", + "unityengine.modules.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v2.1": [ + "BepInEx.Analyzers >= 1.*", + "BepInEx.Core >= 5.*", + "BepInEx.PluginInfoProps >= 2.*", + "UnityEngine.Modules >= 2022.3.62" + ] + }, + "packageFolders": { + "/Users/ryanmacham/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/UnlockAllPlugin.csproj", + "projectName": "UnlockAllRecipes", + "projectPath": "/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/UnlockAllPlugin.csproj", + "packagesPath": "/Users/ryanmacham/.nuget/packages/", + "outputPath": "/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/ryanmacham/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "netstandard2.1" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {}, + "https://api.nuget.org/v3/index.json": {}, + "https://nuget.bepinex.dev/v3/index.json": {}, + "https://nuget.samboy.dev/v3/index.json": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.200" + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "dependencies": { + "BepInEx.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.*, )" + }, + "BepInEx.Core": { + "target": "Package", + "version": "[5.*, )" + }, + "BepInEx.PluginInfoProps": { + "target": "Package", + "version": "[2.*, )" + }, + "UnityEngine.Modules": { + "include": "Compile", + "target": "Package", + "version": "[2022.3.62, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "NETStandard.Library.Ref", + "version": "[2.1.0, 2.1.0]" + } + ], + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/10.0.201/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..50ddd36 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,48 @@ +{ + "version": 2, + "dgSpecHash": "AKLnYm3WRFQ=", + "success": true, + "projectFilePath": "/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/UnlockAllPlugin.csproj", + "expectedPackageFiles": [ + "/Users/ryanmacham/.nuget/packages/bepinex.analyzers/1.0.8/bepinex.analyzers.1.0.8.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/bepinex.baselib/5.4.20/bepinex.baselib.5.4.20.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/bepinex.core/5.4.21/bepinex.core.5.4.21.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/bepinex.plugininfoprops/2.1.0/bepinex.plugininfoprops.2.1.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/harmonyx/2.7.0/harmonyx.2.7.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/mono.cecil/0.11.4/mono.cecil.0.11.4.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/monomod.runtimedetour/21.12.13.1/monomod.runtimedetour.21.12.13.1.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/monomod.utils/21.12.13.1/monomod.utils.21.12.13.1.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.collections.nongeneric/4.3.0/system.collections.nongeneric.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.collections.specialized/4.3.0/system.collections.specialized.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.componentmodel/4.3.0/system.componentmodel.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.componentmodel.primitives/4.3.0/system.componentmodel.primitives.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.componentmodel.typeconverter/4.3.0/system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.reflection.emit/4.7.0/system.reflection.emit.4.7.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.reflection.emit.ilgeneration/4.7.0/system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.reflection.emit.lightweight/4.7.0/system.reflection.emit.lightweight.4.7.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.reflection.typeextensions/4.7.0/system.reflection.typeextensions.4.7.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/unityengine.modules/2022.3.62/unityengine.modules.2022.3.62.nupkg.sha512", + "/Users/ryanmacham/.nuget/packages/netstandard.library.ref/2.1.0/netstandard.library.ref.2.1.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/obj/project.packagespec.json b/obj/project.packagespec.json new file mode 100644 index 0000000..c99b11e --- /dev/null +++ b/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/UnlockAllPlugin.csproj","projectName":"UnlockAllRecipes","projectPath":"/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/UnlockAllPlugin.csproj","outputPath":"/Users/ryanmacham/Documents/Mods/Unlock All/UnlockAllPlugin/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["netstandard2.1"],"sources":{"https://api.nuget.org/v3/index.json":{},"https://api.nuget.org/v3/index.json":{},"https://nuget.bepinex.dev/v3/index.json":{},"https://nuget.samboy.dev/v3/index.json":{}},"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"10.0.200"}"frameworks":{"netstandard2.1":{"targetAlias":"netstandard2.1","dependencies":{"BepInEx.Analyzers":{"suppressParent":"All","target":"Package","version":"[1.*, )"},"BepInEx.Core":{"target":"Package","version":"[5.*, )"},"BepInEx.PluginInfoProps":{"target":"Package","version":"[2.*, )"},"UnityEngine.Modules":{"include":"Compile","target":"Package","version":"[2022.3.62, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"downloadDependencies":[{"name":"NETStandard.Library.Ref","version":"[2.1.0, 2.1.0]"}],"frameworkReferences":{"NETStandard.Library":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/10.0.201/RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/obj/rider.project.model.nuget.info b/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..e54b6c2 --- /dev/null +++ b/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17749670744097781 \ No newline at end of file diff --git a/obj/rider.project.restore.info b/obj/rider.project.restore.info new file mode 100644 index 0000000..e54b6c2 --- /dev/null +++ b/obj/rider.project.restore.info @@ -0,0 +1 @@ +17749670744097781 \ No newline at end of file