From 4177dd357e42f624be018203e8acc12824426779 Mon Sep 17 00:00:00 2001 From: Ryan Macham Date: Tue, 31 Mar 2026 20:57:22 +0100 Subject: [PATCH] Initial Commit --- .DS_Store | Bin 0 -> 8196 bytes .../.idea.MyFirstPlugin.dir/.idea/.gitignore | 15 + .../.idea/encodings.xml | 4 + .../.idea/indexLayout.xml | 8 + .../.idea/.gitignore | 15 + .../.idea/encodings.xml | 4 + .../.idea/indexLayout.xml | 8 + Folder.DotSettings.user | 23 + Patches/InventoryPatches.cs | 36 + Patches/PlayerFishingControllerPatches.cs | 12 + Patches/PlayerPatches.cs | 15 + Patches/RecipeConfigPatches.cs | 25 + Plugin.cs | 24 + README.md | 3 + UnlockAllPlugin.csproj | 34 + gitignore | 75 + ...tandard,Version=v2.0.AssemblyAttributes.cs | 4 + .../MyFirstPlugin.AssemblyInfo.cs | 22 + .../MyFirstPlugin.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 8 + .../netstandard2.0/MyFirstPlugin.assets.cache | Bin 0 -> 28355 bytes ...FirstPlugin.csproj.AssemblyReference.cache | Bin 0 -> 117222 bytes ...FirstPlugin.csproj.CoreCompileInputs.cache | 1 + .../MyFirstPlugin.csproj.FileListAbsolute.txt | 6 + obj/Debug/netstandard2.0/MyPluginInfo.cs | 9 + ...tandard,Version=v2.1.AssemblyAttributes.cs | 4 + .../netstandard2.1/MyFirstP.867612DA.Up2Date | 0 .../MyFirstPlugin.AssemblyInfo.cs | 22 + .../MyFirstPlugin.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 8 + .../netstandard2.1/MyFirstPlugin.assets.cache | Bin 0 -> 26212 bytes ...FirstPlugin.csproj.AssemblyReference.cache | Bin 0 -> 64041 bytes ...FirstPlugin.csproj.CoreCompileInputs.cache | 1 + .../MyFirstPlugin.csproj.FileListAbsolute.txt | 94 + obj/Debug/netstandard2.1/MyPluginInfo.cs | 9 + .../UnlockAllPlugin.AssemblyInfo.cs | 22 + .../UnlockAllPlugin.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 8 + .../UnlockAllPlugin.assets.cache | Bin 0 -> 26212 bytes ...ckAllPlugin.csproj.AssemblyReference.cache | Bin 0 -> 23452 bytes obj/Debug/netstandard2.1/UnlockAllRecipes.dll | Bin 0 -> 6144 bytes obj/Debug/netstandard2.1/UnlockAllRecipes.pdb | Bin 0 -> 12828 bytes obj/MyFirstPlugin.csproj.nuget.dgspec.json | 96 + obj/MyFirstPlugin.csproj.nuget.g.props | 22 + obj/MyFirstPlugin.csproj.nuget.g.targets | 6 + obj/UnlockAllPlugin.csproj.nuget.dgspec.json | 96 + obj/UnlockAllPlugin.csproj.nuget.g.props | 22 + obj/UnlockAllPlugin.csproj.nuget.g.targets | 6 + obj/project.assets.json | 2777 +++++++++++++++++ obj/project.nuget.cache | 48 + obj/project.packagespec.json | 1 + obj/rider.project.model.nuget.info | 1 + obj/rider.project.restore.info | 1 + 53 files changed, 3598 insertions(+) create mode 100644 .DS_Store create mode 100644 .idea/.idea.MyFirstPlugin.dir/.idea/.gitignore create mode 100644 .idea/.idea.MyFirstPlugin.dir/.idea/encodings.xml create mode 100644 .idea/.idea.MyFirstPlugin.dir/.idea/indexLayout.xml create mode 100644 .idea/.idea.UnlockAllPlugin.dir/.idea/.gitignore create mode 100644 .idea/.idea.UnlockAllPlugin.dir/.idea/encodings.xml create mode 100644 .idea/.idea.UnlockAllPlugin.dir/.idea/indexLayout.xml create mode 100644 Folder.DotSettings.user create mode 100644 Patches/InventoryPatches.cs create mode 100644 Patches/PlayerFishingControllerPatches.cs create mode 100644 Patches/PlayerPatches.cs create mode 100644 Patches/RecipeConfigPatches.cs create mode 100644 Plugin.cs create mode 100644 README.md create mode 100644 UnlockAllPlugin.csproj create mode 100644 gitignore create mode 100644 obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs create mode 100644 obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfo.cs create mode 100644 obj/Debug/netstandard2.0/MyFirstPlugin.AssemblyInfoInputs.cache create mode 100644 obj/Debug/netstandard2.0/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/netstandard2.0/MyFirstPlugin.assets.cache create mode 100644 obj/Debug/netstandard2.0/MyFirstPlugin.csproj.AssemblyReference.cache create mode 100644 obj/Debug/netstandard2.0/MyFirstPlugin.csproj.CoreCompileInputs.cache create mode 100644 obj/Debug/netstandard2.0/MyFirstPlugin.csproj.FileListAbsolute.txt create mode 100644 obj/Debug/netstandard2.0/MyPluginInfo.cs create mode 100644 obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs create mode 100644 obj/Debug/netstandard2.1/MyFirstP.867612DA.Up2Date create mode 100644 obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfo.cs create mode 100644 obj/Debug/netstandard2.1/MyFirstPlugin.AssemblyInfoInputs.cache create mode 100644 obj/Debug/netstandard2.1/MyFirstPlugin.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/netstandard2.1/MyFirstPlugin.assets.cache create mode 100644 obj/Debug/netstandard2.1/MyFirstPlugin.csproj.AssemblyReference.cache create mode 100644 obj/Debug/netstandard2.1/MyFirstPlugin.csproj.CoreCompileInputs.cache create mode 100644 obj/Debug/netstandard2.1/MyFirstPlugin.csproj.FileListAbsolute.txt create mode 100644 obj/Debug/netstandard2.1/MyPluginInfo.cs create mode 100644 obj/Debug/netstandard2.1/UnlockAllPlugin.AssemblyInfo.cs create mode 100644 obj/Debug/netstandard2.1/UnlockAllPlugin.AssemblyInfoInputs.cache create mode 100644 obj/Debug/netstandard2.1/UnlockAllPlugin.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/netstandard2.1/UnlockAllPlugin.assets.cache create mode 100644 obj/Debug/netstandard2.1/UnlockAllPlugin.csproj.AssemblyReference.cache create mode 100644 obj/Debug/netstandard2.1/UnlockAllRecipes.dll create mode 100644 obj/Debug/netstandard2.1/UnlockAllRecipes.pdb create mode 100644 obj/MyFirstPlugin.csproj.nuget.dgspec.json create mode 100644 obj/MyFirstPlugin.csproj.nuget.g.props create mode 100644 obj/MyFirstPlugin.csproj.nuget.g.targets create mode 100644 obj/UnlockAllPlugin.csproj.nuget.dgspec.json create mode 100644 obj/UnlockAllPlugin.csproj.nuget.g.props create mode 100644 obj/UnlockAllPlugin.csproj.nuget.g.targets create mode 100644 obj/project.assets.json create mode 100644 obj/project.nuget.cache create mode 100644 obj/project.packagespec.json create mode 100644 obj/rider.project.model.nuget.info create mode 100644 obj/rider.project.restore.info diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..0d72251d2005ef6c186238399b4548bf7d315bff GIT binary patch literal 8196 zcmeHMYitx%6u#fIz>FPWS_>3pvRju|u-FF`c?fPFyrdOmTe>a9y4xArk?Bm`nceb8 zO^NXpNi@C^e-WQQ8#Njw21S3F_==_>kwik&MEv6~{$K)n?%Y|Rh5E}Ff^(C5&pqd! zb7s$(@7&uvWsIRYZ`3nZ#Tb*RbE=imaD&FzdB3hnp`?^3$eww_S=-GLcOpA{opvOM zG7x1T%0QHXC<9RjZiWodna!I#&ABgDqcO@rl!56oCxoFTk?Abc{y8w!G_lmB?2 z&X5!|8lwzE8MrDU6y0GBh7B!F}%PwB^G2wR{FGs zM~>9jH>|CRH#Rno*2IsjYpA37>NTUIiaak-yJ2_V0ei@CpA!)v+y&U|DG?pJ8jkH1 zTEypwl2mqBgmb1Cj&fU>I$Q5bclW5hX{+CLQr2O!Pn+veOxuawl`{(zOIN>Z=Z74x zPb=@w*!_7ssEZ=gS?zC?n^ox!rEv0)rH|Mtm&iXVh@0q(z z@?{mwR`N)$D)`fO4s$o&9y8|=O(g3?aLV|c1+gV7RyEvvUvl&I_J=0sYULGbr8>W> zV0l*7HakZw!yoLShhSk6EXCD!q+{g#Y_Zsvg+g*cuG=deqT3;^9d%3(NXVNId>Po#v(K2#}M+p)x zYSns0^OTMQ^!9~mqq;`c45ib~WKCO$)~Oq0ZHLlT5RnUErFy@tr2E~WAqvJ5vSz(i z*1nV<<_~Vmc>c~|(<%O>W__D1_jrSuoVjy^uvfHbljY#WlAN1tHZ0%G1=)D8TGzX| zt0u!R4GMZu)xrurrFY8O4`icRPQfCy)4LF$mlH*_C6X(}G;zu}7tDejE0slskn&Sa zXUo`HIzKzue&({H>=--FK42%=r|cVcnw@38vOm~G_9wfiypKUM(fYR1fYcny^ZGHT%9jE>Xb>6t%n4p0P w4Z(GsXmA}TdgUL6G>?-iw@HR{Oi+?g`_DfF{KFsG(fJ>p{{grIWZv4t-`KopL;wH) literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..3f32a869483a33467ac420d8c619fc6ed3523619 GIT binary patch literal 28355 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 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..4cb4980602420e93fabb1d35a616d10b351404db GIT binary patch literal 117222 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 +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 0000000000000000000000000000000000000000..4266b9af74c60d7b62b0853b494731ea6df1a84f GIT binary patch literal 26212 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 +// 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 0000000000000000000000000000000000000000..bc7e537deca158f2982a23a1d754148278044ce5 GIT binary patch literal 26212 zcmd5_SC<^c6&{R)kN^n<5E4leh+v>+g95=AOS`Mpz^=63Brw>}GgG_UXr_DU?vZvy zw6Sp@**M{x4bI`sFMhF)AN}Az;Ag-4_{l!U-|aNF(^hS$wfCITZdX^;{rXnAbwg?5 zvC$J(S1Oga{`1n^zyHVKfBpI2d!K&upZnkY+aKTmi*N3K^RK_#f9>Dje)kW58mm-3 zfO75Xj3->L>Mogf+iWbD?W$pS=Y?PGn2q!1yzr`Z(Xni?XqdLyTDnAq`;9*1{%Y^J z>G(EkG`#9b(W%)Zi^hq#tTE&?#VKo1ct*3;B8v2L84~?{IZ{J6f)ctQT{%ZdoqpZ) zM9ZpIj~YjefxasJiSPD&({7q>bHM0Jz8^H{+vsN#5`F7tq$`lNAWg_=E|_lHv6mLB z1IBSQTtKVubXbHK8xy+{jT5o0NJMNK(i3uGpyU`0(Xd+8KBK?iI8sD!oC*z5A!EE* z=Txr(6{1Q5kEmXQq=D+h@>I8j>XYmLt&>jUd@y)p9%sLH2k6eMKV8R7tI z)$$ZE%urcQdk<)F+SlRvlAN};*uwVFRiae}r>_SmDvn+fEe>N} z2F89ozjE0saTp!fYFoZ_0UJOGhsq#LBsDp@8#Cx`!t-mZM&~beM8mN!2-g>G8Nj0@ zJex-4p|~=~cyk8hEqGo~X5f6wshch9l1W3X3{x_!MtNxt;?@j^19+ZP24Oj6loM{$ z&T?`GGvp58`K1+*Gv=(8h-R34%p{)=5T{Tvnq$R7=C%y9+wojihK3m(O?N3rCX=F^ zGlw(e@4)loD#)*7DlsI*Jh?Li>MlI5V3PNkV$c*4i@vZuS`on`5;O3gFM}k~L|w#? z(fk=nYI2s{9ijUme$z^L57JZWEDQG>d3S~7IN^IE!toM(AD-1`t`9yK!frTC%bqVI zpA6k;Dm@aF<{*p=h$^02%3tpTzJUR3kjDm!goPQZFcMZcQNxCWDjdf^gkuoDX*e7~x}Y0Jqai%c zs#`5!lS4WRNSfCleBE$7PxvRhcC#hqfbIt% zTQ{I?({kic9@qdVLoLT&kVAP8P`aAAGSuoqjCN~wr|ZiRJp@Dwo8_98oCwjRu$#ga zt{l{d08000hG2<3)gN=rrX0}20HmOSSsRxeS7Ba#7)UPa9zm|@Eli4z{lm&L-+nUYPQ7?=9J159|9iT zGiube6z29Ykm%mYPdomkXelilOY7QyABWebiR=HWVb&(;LxYYMXftP;|@fk4~LEGX;elX;2jQt49Gzx5P8%G!lJ|d;mQL zM7np-2@_jqBUYQpF~P`Fc~SEYIw9OS$8DQ-L#$wL9|tnstK-DNl4mu%fnhnL&HzqF zH={y0axiBBMz`EE;X0(aQ;;+!fJXNY4>TR9axLM>x${xrc}GEUye6SJGJn*d;0RZw zvvwfS!{#|pXP`J+fq#?0t9$XBYPdq!LuSYCstEg2fTVi^o`L~WG;1Wa!4|C0uhSba z&ZeND_Qg2#W%6-013bC~f)Ec_)lt~;W&ud|k~!r=3E5UUossQaJDhHvtm_R0?mWH` z!v}BzqoBfYegb$Dl)r0QrKZQGqiz@+=E9bkgK#)ke=j%W^ubjuzgqORML!jK@0l^F9Z0Njvi$ndGz_MQbY-6y0B=j8o) z9-v;r@4~Z_avTnD=vFSx ziUrbAD##`spwTT8%vw#MV9tLIP?j{$u35|VyJjn#RZ5br3sk!8S?4TU!Jg#-iS7aX zxWWMTfkVLyu)CJcmib<1eVDo+Pe0_=uffNiJnK8nI(a$M5BL1mK#e@=OQ>n{q%WbT z!GpepQpnlx-#hSYXD(=k-tCBUPa^1J%%a0fTKwv*#RAWz$rt zTp5LDkYcKG6lWvE-AuY(&^2C!Z$|G zrIiZZR$M6MolWI#h{_FH=Dh8Abeb}TMZHT>cV$oXGUZN9FK#V*VT>eht5jxdRHjB2 zm!w9SYciF&DylJN*|c9&c1F)V?^w#cK9_5Zz?q(2#UI_P5WF&KV?kg+;Fd?_4iz_H zj9K#w{zXCmQn8x~ilsiWpg_78;;v$V(*C_frdP;A2nif4jY$#yH6B_-sL=KpOX!|U zS^Lsi8TKb^iu`#`BaRAE167PiUu1_d0y~1!fr0pf1@crR?s?iw6L(yCacx9&I(Cqy z%$Qb^X#`%g^lEn?S4M8Ep#T*SpcOuu;7LGR82q*w?=B!wAlpSGiVa#sT0**n^gPlF zNG~Goju#1<_F?Q;e_a11yr=pvBNf$u1^G9}^)rhMBEt}f7q|3Dl%$qEg;dnitJG4# zm-ak-AMffg(Z}#P_WYa#=9-HlR!cq@3x^4Q4GUQd?4-DyO6X- zLNS_q7)=GugQp_`ioxL#P#YEb#K`l=rxgT4G#nmzwURImX!F9DEi4xZ!s@N421CUo zp8hW)oftMA>7*Vfv6cuYMw~}DP0AOMXz;2qdBq{zyFsJO$^d)43febCi-$W z2~R4EO-W+A*e=e<9%f_}v|2f`E14P$LGiTU5lkzXtUV^IU*r;F5szHb7qP?$@`xq% z8R(O+v&u*%Mw~|~DQL%{0kPHyB?f>;C}D6`Xb(LnUkd8cRRk*v#HYw3`XPCa_GyxH zC~phWXOLb)`Yh7tkUo#}1*G*ASfEabL2!YE^0pxrfp{JH8V>wX;C_sTs~0Gb0{4s1 zyrBmTsUH|`vS_xKpm`Jd+SC)v;Mq}v=Pl%GP+u&AgkxR^|s=)!;^zI_S#>m){JF6vOaNFbh$T#Tl?cS_)X8Tl{BSIcPG=Jy_W zJq=DIOQ_*xnjb!6zXBk%q>_k5fWL}V#NV$We~ssY<#48ian}9(TtM)?UIOo3(lNOOf`5s8{>Gb^)C_g~{3dXBU zbk6WkHRzw1ML%40ro0~_6)gfkLjE(#3`~U0GA<^a+*9eXN%Uh7W~I)p7Y`D7YS?V%6m z+E(6rV>?J{J-H{>Ub0-K$`QVv73@H+R)QkDG$=NzmF=s?at$P8%c>B9ycO-PTtf+x z$wV7QRhPAI4dz-&`k%Fu?yYzjumWj&7)B{>%E=A})lD;FBs-i#*!#}jEjMu&r%YYT zbaAR2ajC@mbzhEp(p|kxHMw1;$WFF3xgX}9g89$QP5geCW3sZvceo77sukR`G9ay! zy9?!rtV)rKqamx5_B)gn&)oZQRML9!-5mF;)ym(WA>%;d9T)e>sKNRfT32aA9+#Ca zxhtYyQZIj>gS1BO&IQ>}=Jz7V#$?gm1u{;h?-!7b;DS26@`4sb}Am0C0lnh zp;NLYEf^4`;Z3qmPS@^<1+ry3sFw>9lFf^-Rw|U|LCI(esuYLY45?IQ5hq3Bq7rvm z8)@lLwzvi0d$oJ)ePm_OX=taSKVW_QRnJM@}VsNY>KfM9D7=SGTwEpB*D-#X-UmIA4AlMg=b8b&ajWe5Je zQ{6go^(v-dyqc>IcjYyMJS$QI?qQ`8o!@qri7wwqkA=#*o$;GQ7nc=Ul=N%|r(~C+ z$DX@fSI4Y}*#*9YDyu=K#n>CVq){r8U0zZRXAOk0Uvfqzhi0-H7sgs_t;rNltBr0? z7?YxvE|lGL`i(@}lW9Dq9Hh^?v$*|SxvaFp*sz=iF4j>lSBCq(XP2LTBWKjw5h0F^ zTv^VlYRqEJmMY|kJvpE6tkRtEp{LqH#YD9hJBw3mv6?fjDji8IJ;TwQUz3ezZ+e9o oj?@rK2c?bgjE_-GTmWFrS;F0f#cFXVsknN(%>h{(m!s|f0)^ZKnE(I) literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..9d4de847db72929954750b708a0f55e8ef4a9a13 GIT binary patch literal 23452 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 literal 0 HcmV?d00001 diff --git a/obj/Debug/netstandard2.1/UnlockAllRecipes.dll b/obj/Debug/netstandard2.1/UnlockAllRecipes.dll new file mode 100644 index 0000000000000000000000000000000000000000..a4657292e3f27dfc0e5002c3e0cdcc039309fd67 GIT binary patch literal 6144 zcmeHLTWlO>6+Sb&-Z)OPv7Kuvw3AB{H%-QNlG0Wr!Rxh?IQ2Rk?>bFD;LOhcUQazc zvzeJqvMN*#4GAp;1)(A}AV`EjJn+D!59tL7q&|Q|P>U)g9-^iXAW#tqm6uk9@ST5V zylXr3f+*@k|J9uN&pH2``+wWqr!G)}h?012+#tGwH@5)^-yY0@oxbDQG(Ela>iR3n z=+*VbY0KAYo?G#Zs%9FF;|5wuXkOjXEJqtURM4t!S?J4`cWjD8=ZA?#l>~L|`ua1m zw(GP(Tc-38b%K%#sgLV;Yj_6mFh>JaL%W&4_RBU42s*a}9si;f!g5%ce9yg@NcTeS zA?^$i)i@9f+i{{>K-;~YsJM{#cDP2=-okGOexL={193V4ejyD2p0q8p8<=bw(Q)1L zJrkI;Z2%p1v>Q)L8-Vq?Cu|o3*;YD^hh?q7)6xcr23t_so#D8mv27}~(O)#8JcKAr z{4d%DwFlO9(AK?CM@@VlvXWaNYh|Abj+EU+>e}%&9d}a-jQ2)=meih=P%#S+laDa) zprGciVznZFrX8!Dj>;<$E38JSKiP-KY|kasKM(N+yw_Zk6F5Nl&aG z1D~g;OUbDzdP8{y@G%LuO1NLb>k__6%zaV4gm0?~!>4I`GDS}jOWUk|58USy41Yrm zugd-x(C;9mj?z?7`vKP^`w`If(A!NvRIeqv>57C0Xb-;nEXJqlPK@Ce+AX85bkccx zERg{XRA4`VFN~>l23Rd|PR*g80Hu?Dp`KGMU@6Ia16U56cG^t8R7aGR^pV7U&8w(%t$yQ;b94nNoWDCrW1fEYDoAs zz}x7@fa~cQN%<9E51o zTgap*)h)==m4r^q=$N9@N-6=~hPdjqksb%Un|=$pll}zw33?qci{jPk0a^xF05?lB zkdsB$pHz?2!?Y3bQS?noHznO9pGt{Ya4)K}l6wjL8|o$5|1NzQxo<~AzfZlCoQ*33 z0hR4EVyYslaT}%Gaku52!YCfcvnFnv

Q`rmzA;?V21Xk=;4BT(`wu%8yR$9~qmJ z^EK*^WpcwY{mAfmVdT&l9WcDA>oi8K5;-F91H&mBUYT-+Q#b5Uw^DHHo+&7E%9s%} zUUvekDvFJoIDmn+p#36XY@g>=BMPH5TrG)mS(GyYmXlIF5R`SRHOm&>e&Gnu2wGVa z&Pm}}QF>}P3a=oe%fN9u^Miqov_pG3i7hcu!Z!RJ0I#X7q4wvUC7#C9o zV@d>#aU{!cDh|UW2agNeI4yfE{MgI9hcuf(^TU|I0t~0oWJEcW^uQ`vHVkgz3e&0~ z>TDzpirR=Xd|F4^E7%06(C`CM)guXdvIHIZatlAfXwjEYXZ@(}aV~d1hX3 zTq^SQGT5QqP+i`xLl+GizL;=0mLVSLqBz7EljApMk(jbYNP(@KB+5l!N+b@(_H1F= z@M?q#m}IAfM|s<5;H8^^>&4=RETiJMeqfn?Op1Mu%eElAla?ub3QG?$z&rygUB-LP zg>Rk-@S72_;YuBm6DpGv?nxD+R*9hVl*wg z{SpqRG*#(7oK9&8C7n(umMCgcqwXq?`zSWI?!#RtmXO+A$C&nCKfLnB)$P{~Ywu*; zrq%&kBo0hMaY|DH=G>YzwaQ2wyy`}!0Q&VPnN4Z?Sr+>9lR67eZRt=J{ zI+}7RP}Ed=BGp}0Q|UHR)K0ZsiO$`(^QK=^*F5MMwJ{gd*c3IMGsS7oJ>@GHw?yF# z?^ozneQdZ`h?e?ov7sknDI}y<%`KKgmS4kk8N=Gy#h+;LHyVbn#<68l)l-K;ZE}j> zXbz3ib-fPmby5)(gZ~{Lka2rW-K+5lv+K%S@Bpg9#ES!=5E3eX7!;y}KAtTz%2TMLI6xHR3 zt9vSkdb4WSql@a&5oa1jgk6{Po22a~>4=ksvRTGe6SwC&C%#QeF3+lF@m#T_XXUwI-@&iJYoS#0 ze;24naC?{p9L5$?pb`AjG6sAEa9{YZ3;itlw||ARgsYre`2J*w;8f33czzoKsz9ni z9^_cqYXxLFG=)8v+a~!{5nKaQAAExXjB|m7?MKM~LKWB)U=;7{m77T7Nv*)^__vEn z90UA`(gk`J@~YVNSw{mN8Nh@T-@3`(?2N#J4oVrZ^+WRPU`ktR^K5-Lvih*&DRcH8 zfh-SRH~nqy=e)18?$sF25ewv42e#WS9=wxI9cLOo`Ect&b`%l`fRC zFpA9>65S``ok5I!_+3R+*zj0GMb3|W^P4d4tm^~UwD3Q}C-#2eEc?))|3d`+4I>vf A4gdfE literal 0 HcmV?d00001 diff --git a/obj/Debug/netstandard2.1/UnlockAllRecipes.pdb b/obj/Debug/netstandard2.1/UnlockAllRecipes.pdb new file mode 100644 index 0000000000000000000000000000000000000000..089b9737ed25534d9bc478671ca9c68e5ec9b3b9 GIT binary patch literal 12828 zcmai*2UrtL6M&BxLnCL1}lsS zM%V*n0J0i<@C4TcS7rcw)(EaQ@cUW>sREcX{OlnTu(&}&@DVvJd*Nc#QZgRYcUm9eOneTm!(R z0xnf>DS>O4^gbNip^WT;zQ8|V20j9R`H~y5zMF?KP#4rm0b(vddL_882luPs{si2O z6ciAmf+7+L?#bXT`%^%I3>AZwVE>*48jniLCsCl&ICW#W-e8-!&0*TH z=?8~?3vgR-PW7hVRuAN~ORnOcDiI;Iuqm9JNYydPuQ+y7<;}0-jR`Rh+aFK^)>k^- zQ?sS5<*F}nI`rU@ZbgVltH9k)T%TM`DJ?hHw!F>#6r$oKL5hEBC5*R{tLqtJ!(CBe9 z<{Hd9T0$7}#yin}s(VsP%AH3W-Qo#9)7G&D@G@!jY|~5X5?CJM8$8W$bP_ZS*VdX{ zvOHRAVvdc{%NnX?+?gojLu-Q1v}{!31%#-O(ExFfHWw8MMRYEcE?}AvjCE)c5`FgE zKpxPkD{~}rUu0oqNo2J_`5S-wvX}8QTKDEWYhBWD$1h|+z@cqZmR(LTvYL>qGRBbL zO!4%PYMkK>s)EJiTCD)O2}Gd~mP$sJ$#iAqG#(MwVa6O&mH~D?Xo= z>Jatg!!zg0J5@7})L<kG{BM46fF?wf66ERDeN!hOyTM1CyX*2Qph9EH|^;)@Xh(8=PU-F_Pz5sV0CGeKuu!D4`jBP)Qh z@pQVmu?fS3Zfs;`9*CNnn46he%%-EJfq}Cbb7r9dbYn9kGX_0yPIm!%l+FUtPRte3 z15w0NAVz^hfh;cg>`o+6W{@d1UbZt}`+E|d$wYUu{AUwCWBISfenx&S?tZrJ6rv}^ z9si5*AAd3V<1eOv{AJc3e=+;xFXn&v#pI7(gW}0C$bn@>c60%U$BiH`*=!K5D%TKB zA^u9p<2R-=gBeSy@$~l8eUI2)vOzJEq*0Yh)aoQ?%!ZdPBm)F`? zF9#LapnQ8SC0r`ySb04F@mE9=h7S*!{CtId;kf7x4edUkX)K0-C*%c+2tF*XsR_YV z0D6#!wE_${i8K3RJ~knd2(qHUe$s?DxwhMaT4FR(d@s^?TpodhGFWV>;8mv`8<1ud zWb#bCcg2g;ofA5*t@;!hsx2o-V+KfteRUR{hk?0xxiJ3=I^Qm~>(!&XoAR>dgu%op z72e(c=@gs*U!DxUSmS+~y8nRrDKsbDK~C5mgh`plYZNbBKu#k_@=Emp6}uL@XgmGr zBei~~p*V=D1b0dAC!-=T&ZH(T39PCS14X1(v^1sl*-GlhEo;6kj^WqK7%vfvEz_T7 z;Qtdg&!VczlrHtv#C#jxshh(mp5X`?JOP^}^ZMNo%iXYu+GaM%Kc`eWM0>igSe#mM zOD>8^jsN-*(S;zxkrQ`_i*^iuW0R-;Q*-out7{$+LJ`U#5czx(k1ImMMN)Z=U&3A3 zB$Hvbbmgea2wy5p z;<4E%0|pEs0a#&(1p+YrNLeT9iUW|19^`)G%hDuDUdgs|Zb?r^^utOz%jckwPY}>v z>Jn0F{Ma_q`}g&ex3`=0132@zwkQ`BuozNfhKrhuAv<8_u%tbYe%NNlvKpKg3(5Vk z9(>U6=xo+XlqrRS*De1E;mHZ(zURN0OewF93H=yimJhVuTf5`kjjX`X z{u#;&VBUrA)8#S!OxWcJ;gcHf62p zC8U$ii=>idx`+;2fz#aps~s6vAdttmJ7t}H%ef?fV*c!S@;-S$QtgEf)5@V_#qaae zj{5DPCC;9tk~)YaYbr8}9>nDdMJxu^p+y2ZLnIpu(^JMigQ&{xwqYYzexV*eXJBc; z{5C*lL=MF=9%-??*WSfChsXH^%fGtrB4w`Jzbc{n1EU{|3g&ESB7-Fv5|?*mhW>zd zk*%oSYVCqIIfT1E0o@aVXj{Fq3hPM(s}#kJlY0=f5|{0uO_Dd4tyStxl!s4b3ZNt()H; z2Hp0+vL30;AJd6VBCV3@N=s@jRyiS;8Bv-$kg@Bccc zx2y@je2=Uk1tmgD@|opGGlD!_O4c1aGSE8Z<6twx-(F*6+6DBm9*ta$-=)x%vjOEn zmYQdsVhUCrO18W4vzKt6vALmiR|Dj%-rA)+QQS%^)CjFX&2N8_agroXHXBLZ-+0vu z8_qc9tn^_Fkvxu2oMu8}7uIp1bE z>@d$PTxT^`+%GJxiKxnYh~yl4Z))tb-}b-<t6U2S)}g8 z!0{y2CUN*+_Ns5tyi@e} z5v6pbWzsn}wnYysv9Zca?=Y0Rx;Asc7^7u&x&G~|ul~C_xJRy!TM8%V+=oc5QcLM9 zqP<<*R^PSc_mR#0B4h!`ujIl*bd$?w2%{6*7v8%1U%--+zGg za>Iumx%0HGGqdU*8X2p^^-KF;>qgngo<;At2~iEcPqgO@HhG`*dDrqK6BhKK_8|Jx zMJUrl#1nwkiL@dIsa|{xIjddA8hro#|G9^wp&Xtdf=1`_Q6{V`S&xZb zt-cGA4Qh-Vt1AXNmbFda&kfQf_K>bDez&xzpMN8iR-buKGcxx9H7TI}ZrQJ}mp#&6 zVByRKjxi+$!G;M+=SaQO9cK*i!6&buH)v&Q?7IY zSf+uLL(;Pb3lp#&xM%G>#VHG&U5>FAjX3yY+A(>=O^kvKfq?E_d&A*8780ft5*`J2bQHqE3M-6!;m32mCnOz3`Z4MM{ ze{c2Q=0$@XH@h-ZcHU`hk`uHOiDXNRlmctag-cmx1HQkpbgVFM&axPt`bAFKna)Ao zQP5k&a#@xB@e^30`mt-RN1WqxY98OfwXCo{UYHEoHN?%8E>j61qqj0(H+hez!#*sQed=M<;rwt>W&Ld{#7xci34 z5gsT=p;;o?QVz+#RRC=~Sp0ajTce$0evN_Z8~eaf@&s7AfQ=Pt3+CQRy#;|uC+E2B z(M)zoIM~>m^TmHj7bJ$M7%a%;}3Iuj#sHBO8l27MBMsNM_fo2AYcCq7J zJseeSYh~uZP8LY-WhFbiX%05X{!xA#b;j%qEqfZHa{}q5EUG%oq`kp%gx5W%*$=3~ z8ut3w*kGF0440i->JrGOf602ZOF#$^mt^%4r$R2rV59!q-Av2Uu?>zDBhqc^bCb=b zPPwCj()A93%o6fpI0PwIxU9WwN1sW8MPf5`R7Q*Z?GwLh41JJTv8^vHv1U=-5een} zi#v9oKeU~c9j&y#!cteZXpyr<0n2J>Gquh)tAtSaCf|!mS&`QH1%t9#a~Es&HG)C* zPS`?8esJvCeL5CuxT@x@*-`M`;V5hTGmpUmvZ=DSStnLduqX_L|4Lm@x2xI&6|ANN z4_U=fBo_d%hnRdQbY^=PqOOP4(mjHoJEf+LTjCPg=umFZMyAIvBWaCUo zaL0y+w5T`B^It~(>4%c=G;BtZ&5;G9uUHzVc118W`i>55 zqtTeUB1dieKDZ=-mKuGwzwRV7>hvIISnV_)yTT7@4M%fkuaZ%cEeI?<0<)vQ1KW86 z^PV?LD5kSXQY|5to!EFTNi!I%mb1j6GMx4!dW_|uURoqwF(SV$4#@$N`O`sP_D8un z7oREXXj%G6qnB`>T5Z_kkEMW{Ox^aswR+-^uP2&2Qq@2+MV3zT`E(uly@c;WBv4p0q=y?bL6mW3<+<``Po{Z4Ps6>MAM0|NT`*pC+)p z9QzS!*~dKJ9`((S9QjK#z~126zkk)@Yi2Zu1a@**f#4(no{va+^|!`wEJc|ms5Pm& zrS6#Zt9V+0_z1hVF5m>0!Q#_p?HKj4^9J<6WRaG@*Xxi?&6Vi$*>8pq?#*FsgGvr2 zr6zZFd7Xu*Fxz8W?yyHLac5n)qs+98yHR+mfJ)|QkV8l*%g-aQU4{R=0`6!WR&y*` zT&i9%k}unffm;%UUbQ{`>L@H1h#1OnALVJ_QrZ#XO*Li~Ne$tVK5;H1>;yIs3~wUU zsTAlF^Okgky|{+z%G2&>keE#u^v(4*v0qoiGJdpe%gQuVAXZY{kAQgmMrFvL? zPqwhB$*c@=iB+L{K1!^=`3IxD7Bz*D<6c7RJNKP_7^&K9liKh&xRefp9d1*n9 zE5=~a>%q{VMN2EkQ{sM&nty-C2-)_OoX;5L3U-#Hq@UZpHfXQ;d-G9#nl&xAM$hHx z^|Fw@_P`mJY#M*WzWxY8CCI*mKi=)Oi;UP%Ck&i3K?Vuv;G{~r4=x!=%gaAvsi2vE zhH=<&2U6tWS*zAfE!LM3-gLGY^%V2F*J=civ1u-#76<2Tj3w@-H58R2>M zKliRZQms9K_~3}EN8$9ZjhxcaRJ~}o@zTPi=Yq+zh6*xfbqRbOK1gHP2wA}

tTMC#%R#RXoa)tk`izBeyp;!GlKsS9fYxk7qch-y1mZtL>&X90^YMMK)qCNGNfv zLY-O^Jh}V!LFMkz?;&;@GTRnu#rgW+STU0YkMVkHM)halIq2(!>q&~IPah|4iY(V& zRlfM9JVj#jM8P;pFEXbZ)~C6yirzoIcWCiRjH$qF$1%)8vl1{lM;Eixw520vzu_E6Iesn_G3m3GZ_2ih@-GnuHw)j)!M{ zT#*xx&cw0Qe8nipwr4DzzT)0G`}iVNhiz$bckrwLU$ZoSHkej)k@5c)oZYuI%6Z4T z7ajo{{?)}n0=h8R9p&>tQo#+v+4NN7)Igi34clfIQJK~!C(^bb9oVKWkCRyfY~_vv zzYY8K5rQQ#v|U|%JI5l8d2#cLD$?XZNsyR)GA|vTz=qXoz4AMDg&O~{#A$ruyK;F+ zvWKfJOa^f#GOI^?f+kwdHMc(>T<4Jb^vrr6%2-Qz&=%}Ykw9hkYKE#Jo7=Fzxt|W1 zHKy!>Q$_3aCeHqV?Kl)aFq{ImVu6$Vog9CR_|vYMm$W1E{1+`8B4FX0Ebh>&chE)l zw-Fj{8p@8Rw%$B(zfcxufjfjs4$PGc4~IT^l4^ii{xUKhQ7N8)9)rp0wwH z4N%Fs9^7ZgRSwN)+AV0gZnJItxUUb%iIj!&3^S}&<9Hf)j|@ju4L_WTG%Fz7s^~Rc z1CP*7oT?~zcd=v+j)H^22@Rq%@Np`&VZ#o@3UUUJgCH;fl{r9Qcx%^hE!$Wsm;F3#P-8%IB0Xo&SP@66VVhpM)@q*;&DzoEIl zN}hJ&ffr_^Cnq@AC#>^6G~ISu=Vr>yXVj|soZn%4_>J-~$auhkqUG4be6w|q(o)=PsC)C> zaUIb$I6??^(@e-X^Ow9v9l)9@nU}3?{K|3fiAFEq+XtTE%u7fdw=bL*2jA$c_21@R zv&GkC+u_od3)aebivnIC+?~LI|J|8{9k40srRZExiE_wFIheSSqkIBq5Uly((gYRa zQ0*&z*+`B85|ejUzspSBA;bQ)g?X4wdt$q<+9JB+ zBx@Ot25;P;Ol&`cOK0QD)zS3+8SL_3-u+xTUHLpU@00WR!i4kYIGzvBS7{(=$5n~r zt?U+PTJMT)rBU-W+sx}T;&zsmPw9(-SAO{Tm>%s}brQ0do>z_-&+&BJb-z}}HAIN( z^^yaT-r@Xp+=MPjE`FIk@c3#sr~Q?m=9=h{@YN*_fG_)D3%8!RcDKf-%aGKmUvTo` zZwe*LT&wf7z$ppmFCeiuSMaqo^7y%GSW8=+j3)9fb6rwGL&kBfX5ElSJyC&x&ccVV z;bkd15o-nHwbJ@W2Jd5>_H6IuyS-;G>4%dJ5nK%?U9ZKauFf#EBll-DIHr(8?LA{z z&3HUqMB)ihDwuL5i5O0W{pt8bm|#q6Ughw#a+YKKv-o{QhmS1iPX%0r_M_t3tYVP! zgBM)e&Lv#RE^sJ*tNk^W`54z$5S3&Lz1wTjdgD}Bb)>=K0av}YQ3`!IN7{)?-{Twr zBb7tv;~c*{?A|MQ&i(nt^Iw!So=xS4Iw|)mY~lHn3O2@FSV2x& zGyK}|_cvC^GhX%-U<}Ns_!i#4e3XIsYa;BelcI|r4yILXovM63rSL5t#aVm3%;^Ix zS?IRvOu_Fa8+z;G}#b0udKJ;Ugs(dG-#HhWoX&BWC|X$7t50b6>8L7xJU!~!Epv`+Jnfu|MObg;!}qUMwr4Le{ePOF(V3lnZx^-kfD`kOgvQ?pv4?JPw6jC zz>(H_5~wkK@CKHp%x$#6Zli0obVh6LN!8XNe^KM(PzFp9hiZ!{Pt68M2*Zukl7ino5P)zzQ%iFAmOKK(H%wF?JQeR0Of4VhQr;;ydV zsv_jmMCT#A>0ueZb zkW^CdP_*(?*=DFfnDnv!>Vi(vfgw8zfH|CIMDyu_ zV>T-Z@(A4Yz(Myd7j!_#@Atufx|B1hQES${_ + + + 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