From d589d779346e91bc72296452801e7583b2a9d20b Mon Sep 17 00:00:00 2001 From: Valentijn Date: Sat, 30 May 2026 14:24:45 +0200 Subject: [PATCH] initial plugin before git init --- LaunchConfirm.cs | 40 + LaunchConfirm.csproj | 55 + Patches/LeverPatch.cs | 56 + README.md | 93 + .../HerpieDerpiee.LaunchConfirm.deps.json | 659 ++++ .../HerpieDerpiee.LaunchConfirm.dll | Bin 0 -> 19456 bytes ...tandard,Version=v2.1.AssemblyAttributes.cs | 4 + .../HerpieDerpiee.LaunchConfirm.dll | Bin 0 -> 19456 bytes .../LaunchConfirm.AssemblyInfo.cs | 22 + .../LaunchConfirm.AssemblyInfoInputs.cache | 1 + ....GeneratedMSBuildEditorConfig.editorconfig | 5 + .../netstandard2.1/LaunchConfirm.assets.cache | Bin 0 -> 46495 bytes ...unchConfirm.csproj.AssemblyReference.cache | Bin 0 -> 50238 bytes ...unchConfirm.csproj.CoreCompileInputs.cache | 1 + .../LaunchConfirm.csproj.FileListAbsolute.txt | 9 + obj/Debug/netstandard2.1/MyPluginInfo.cs | 9 + obj/LaunchConfirm.csproj.nuget.dgspec.json | 91 + obj/LaunchConfirm.csproj.nuget.g.props | 22 + obj/LaunchConfirm.csproj.nuget.g.targets | 6 + obj/project.assets.json | 2992 +++++++++++++++++ obj/project.nuget.cache | 49 + 21 files changed, 4114 insertions(+) create mode 100644 LaunchConfirm.cs create mode 100644 LaunchConfirm.csproj create mode 100644 Patches/LeverPatch.cs create mode 100644 README.md create mode 100644 bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.deps.json create mode 100644 bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll create mode 100644 obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs create mode 100644 obj/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll create mode 100644 obj/Debug/netstandard2.1/LaunchConfirm.AssemblyInfo.cs create mode 100644 obj/Debug/netstandard2.1/LaunchConfirm.AssemblyInfoInputs.cache create mode 100644 obj/Debug/netstandard2.1/LaunchConfirm.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/netstandard2.1/LaunchConfirm.assets.cache create mode 100644 obj/Debug/netstandard2.1/LaunchConfirm.csproj.AssemblyReference.cache create mode 100644 obj/Debug/netstandard2.1/LaunchConfirm.csproj.CoreCompileInputs.cache create mode 100644 obj/Debug/netstandard2.1/LaunchConfirm.csproj.FileListAbsolute.txt create mode 100644 obj/Debug/netstandard2.1/MyPluginInfo.cs create mode 100644 obj/LaunchConfirm.csproj.nuget.dgspec.json create mode 100644 obj/LaunchConfirm.csproj.nuget.g.props create mode 100644 obj/LaunchConfirm.csproj.nuget.g.targets create mode 100644 obj/project.assets.json create mode 100644 obj/project.nuget.cache diff --git a/LaunchConfirm.cs b/LaunchConfirm.cs new file mode 100644 index 0000000..b7874a9 --- /dev/null +++ b/LaunchConfirm.cs @@ -0,0 +1,40 @@ +using BepInEx; +using BepInEx.Logging; +using HarmonyLib; + +namespace LaunchConfirm; + +[BepInPlugin(MyPluginInfo.PLUGIN_GUID, MyPluginInfo.PLUGIN_NAME, MyPluginInfo.PLUGIN_VERSION)] +public class LaunchConfirm : BaseUnityPlugin +{ + public static LaunchConfirm Instance { get; private set; } = null!; + internal new static ManualLogSource Logger { get; private set; } = null!; + internal static Harmony? Harmony { get; set; } + + private void Awake() + { + Logger = base.Logger; + Instance = this; + + Patch(); + + Logger.LogInfo($"{MyPluginInfo.PLUGIN_GUID} v{MyPluginInfo.PLUGIN_VERSION} has loaded!"); + } + + internal static void Patch() + { + Harmony ??= new Harmony(MyPluginInfo.PLUGIN_GUID); + Logger.LogDebug("Patching..."); + Harmony.PatchAll(); + Logger.LogDebug("Finished patching!"); + } + + internal static void Unpatch() + { + Logger.LogDebug("Unpatching..."); + + Harmony?.UnpatchSelf(); + + Logger.LogDebug("Finished unpatching!"); + } +} diff --git a/LaunchConfirm.csproj b/LaunchConfirm.csproj new file mode 100644 index 0000000..f40bb77 --- /dev/null +++ b/LaunchConfirm.csproj @@ -0,0 +1,55 @@ + + + + + HerpieDerpiee.LaunchConfirm + LaunchConfirm + + 1.0.0 + + + + + netstandard2.1 + LaunchConfirm + true + latest + + + + + enable + + + + + + https://api.nuget.org/v3/index.json; + https://nuget.bepinex.dev/v3/index.json + + + + + + true + embedded + + $([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))=./ + + + + + + + + + + + + + + + diff --git a/Patches/LeverPatch.cs b/Patches/LeverPatch.cs new file mode 100644 index 0000000..b1bd93d --- /dev/null +++ b/Patches/LeverPatch.cs @@ -0,0 +1,56 @@ +using HarmonyLib; +using UnityEngine; +using UnityEngine.InputSystem; + + +namespace LaunchConfirm; + +[HarmonyPatch(typeof(StartMatchLever))] +public class LeverPatch +{ + private static LungProp? _cachedApparatus; + + + [HarmonyPostfix] + [HarmonyPatch("Update")] + private static void UpdatePostfix(StartMatchLever __instance) + { + // prevent weird null references + if (__instance == null || __instance.triggerScript == null) return; + if (StartOfRound.Instance == null || RoundManager.Instance == null) return; + + + if (StartOfRound.Instance.inShipPhase) + { + __instance.triggerScript.hoverTip = "Pull lever : [Land Ship]"; + _cachedApparatus = null; // clear api for next round + return; + } + + + // caching the apparatus to prevent polling it EVERY FUCKING FRAME + if (_cachedApparatus == null) + { + _cachedApparatus = Object.FindObjectOfType(); + } + + // Checking if its actually been pulled. + bool isApparatusPulled; + + if (_cachedApparatus != null) + { + isApparatusPulled = _cachedApparatus.isInShipRoom; + } else { + isApparatusPulled = true; // cant find the apparatus + } + + if (!isApparatusPulled) + { + __instance.triggerScript.hoverTip = "Pull lever : [Start Ship]\nWARNING: Launching without Apparatus in the Ship!"; + } + else + { + __instance.triggerScript.hoverTip = "Pull lever : [Start Ship]"; + } + } +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..0ac944d --- /dev/null +++ b/README.md @@ -0,0 +1,93 @@ +# Lethal Company Mod Template + +Thank you for using the mod template! Here are a few tips to help you on your journey: + +## Versioning + +BepInEx uses [semantic versioning, or semver](https://semver.org/), for the mod's version info. +To increment it, you can either modify the version tag in the `.csproj` file directly, or use your IDE's UX to increment the version. Below is an example of modifying the `.csproj` file directly: + +```xml + + + HerpieDerpiee.LaunchConfirm + LaunchConfirm + + 1.0.0 + +``` + +Your IDE will have the setting in `Package` or `NuGet` under `General` or `Metadata`, respectively. + +## Logging + +A logger is provided to help with logging to the console. +You can access it by doing `Plugin.Logger` in any class outside the `Plugin` class. + +***Please use*** `LogDebug()` ***whenever possible, as any other log method +will be displayed to the console and potentially cause performance issues for users.*** + +If you chose to do so, make sure you change the following line in the `BepInEx.cfg` file to see the Debug messages: + +```toml +[Logging.Console] + +# ... # + +## Which log levels to show in the console output. +# Setting type: LogLevel +# Default value: Fatal, Error, Warning, Message, Info +# Acceptable values: None, Fatal, Error, Warning, Message, Info, Debug, All +# Multiple values can be set at the same time by separating them with , (e.g. Debug, Warning) +LogLevels = All +``` + +## Harmony + +This template uses harmony. For more specifics on how to use it, look at +[the HarmonyX GitHub wiki](https://github.com/BepInEx/HarmonyX/wiki) and +[the Harmony docs](https://harmony.pardeike.net/). + +To make a new harmony patch, just use `[HarmonyPatch]` before any class you make that has a patch in it. + +Then in that class, you can use +`[HarmonyPatch(typeof(ClassToPatch), "MethodToPatch")]` +where `ClassToPatch` is the class you're patching (ie `TVScript`), and `MethodToPatch` is the method you're patching (ie `SwitchTVLocalClient`). + +Then you can use +[the appropriate prefix, postfix, transpiler, or finalizer](https://harmony.pardeike.net/articles/patching.html) attribute. + +_While you can use_ `return false;` _in a prefix patch, +it is **HIGHLY DISCOURAGED** as it can **AND WILL** cause compatibility issues with other mods._ + +For example, we want to add a patch that will debug log the current players' position. +We have the following postfix patch patching the `SwitchTVLocalClient` method +in `TVScript`: + +```csharp +using HarmonyLib; + +namespace LaunchConfirm.Patches; + +[HarmonyPatch(typeof(TVScript))] +public class ExampleTVPatch +{ + [HarmonyPatch("SwitchTVLocalClient")] + [HarmonyPrefix] + private static void SwitchTvPrefix(TVScript __instance) + { + /* + * When the method is called, the TV will be turning off when we want to + * turn the lights on and vice-versa. At that time, the TV's tvOn field + * will be the opposite of what it's doing, ie it'll be on when turning off. + * So, we want to set the lights to what the tv's state was + * when this method is called. + */ + StartOfRound.Instance.shipRoomLights.SetShipLightsBoolean(__instance.tvOn); + } +} +``` + +In this case we include the type of the class we're patching in the attribute +before our `ExampleTVPatch` class, +as our class will only patch the `TVScript` class. diff --git a/bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.deps.json b/bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.deps.json new file mode 100644 index 0000000..6b166d6 --- /dev/null +++ b/bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.deps.json @@ -0,0 +1,659 @@ +{ + "runtimeTarget": { + "name": ".NETStandard,Version=v2.1/", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETStandard,Version=v2.1": {}, + ".NETStandard,Version=v2.1/": { + "HerpieDerpiee.LaunchConfirm/1.0.0": { + "dependencies": { + "BepInEx.Analyzers": "1.0.8", + "BepInEx.Core": "5.4.21", + "BepInEx.PluginInfoProps": "2.1.0", + "LethalCompany.GameLibs.Steam": "81.0.5-ngd.0", + "UnityEngine.Modules": "2022.3.62" + }, + "runtime": { + "HerpieDerpiee.LaunchConfirm.dll": {} + } + }, + "BepInEx.Analyzers/1.0.8": {}, + "BepInEx.BaseLib/5.4.20": { + "runtime": { + "lib/netstandard2.0/BepInEx.dll": { + "assemblyVersion": "5.4.20.0", + "fileVersion": "5.4.20.0" + } + } + }, + "BepInEx.Core/5.4.21": { + "dependencies": { + "BepInEx.BaseLib": "5.4.20", + "HarmonyX": "2.7.0" + } + }, + "BepInEx.PluginInfoProps/2.1.0": {}, + "HarmonyX/2.7.0": { + "dependencies": { + "MonoMod.RuntimeDetour": "21.12.13.1", + "System.Reflection.Emit": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/0Harmony.dll": { + "assemblyVersion": "2.7.0.0", + "fileVersion": "2.7.0.0" + } + } + }, + "LethalCompany.GameLibs.Steam/81.0.5-ngd.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "UnityEngine.Modules": "2022.3.62" + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Mono.Cecil/0.11.4": { + "runtime": { + "lib/netstandard2.0/Mono.Cecil.Mdb.dll": { + "assemblyVersion": "0.11.4.0", + "fileVersion": "0.11.4.0" + }, + "lib/netstandard2.0/Mono.Cecil.Pdb.dll": { + "assemblyVersion": "0.11.4.0", + "fileVersion": "0.11.4.0" + }, + "lib/netstandard2.0/Mono.Cecil.Rocks.dll": { + "assemblyVersion": "0.11.4.0", + "fileVersion": "0.11.4.0" + }, + "lib/netstandard2.0/Mono.Cecil.dll": { + "assemblyVersion": "0.11.4.0", + "fileVersion": "0.11.4.0" + } + } + }, + "MonoMod.RuntimeDetour/21.12.13.1": { + "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" + }, + "runtime": { + "lib/netstandard2.0/MonoMod.RuntimeDetour.dll": { + "assemblyVersion": "21.12.13.1", + "fileVersion": "21.12.13.1" + } + } + }, + "MonoMod.Utils/21.12.13.1": { + "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" + }, + "runtime": { + "lib/netstandard2.0/MonoMod.Utils.dll": { + "assemblyVersion": "21.12.13.1", + "fileVersion": "21.12.13.1" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.NonGeneric/4.3.0": { + "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" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Collections.Specialized/4.3.0": { + "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" + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "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.7.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "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" + } + }, + "System.IO/4.3.0": { + "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" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Linq/4.3.0": { + "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" + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": { + "assemblyVersion": "4.1.1.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Reflection/4.3.0": { + "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" + } + }, + "System.Reflection.Emit/4.7.0": {}, + "System.Reflection.Emit.ILGeneration/4.7.0": {}, + "System.Reflection.Emit.Lightweight/4.7.0": {}, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.7.0": { + "runtime": { + "lib/netstandard2.0/System.Reflection.TypeExtensions.dll": { + "assemblyVersion": "4.1.5.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Resources.ResourceManager/4.3.0": { + "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" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "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" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": { + "assemblyVersion": "4.0.12.0", + "fileVersion": "4.6.24705.1" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "UnityEngine.Modules/2022.3.62": {} + } + }, + "libraries": { + "HerpieDerpiee.LaunchConfirm/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "BepInEx.Analyzers/1.0.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xrfNmunsPhBx+vStTxLonq/aHkRrDH77c9tG/x3m5eejrKe5B0nf7cJPRRt6x330sGI0bLaPTtygdeHUgvI3wQ==", + "path": "bepinex.analyzers/1.0.8", + "hashPath": "bepinex.analyzers.1.0.8.nupkg.sha512" + }, + "BepInEx.BaseLib/5.4.20": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bXgYxbCEN2Ixp3kiFEhyw+RASeFQeg/ww+lbMt7if6XMeVS60eg6epNsMA8Jbx57dmNOzNevkKKw8mP8SUMqw==", + "path": "bepinex.baselib/5.4.20", + "hashPath": "bepinex.baselib.5.4.20.nupkg.sha512" + }, + "BepInEx.Core/5.4.21": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NMUPlbHTTfJ+qIQCI90uIvjuUQ4wnwt4cpRsK3ItBh1DhsWFzAHXNiZjBxZkPysljEKQ2iu89sxMTga4bxBXVQ==", + "path": "bepinex.core/5.4.21", + "hashPath": "bepinex.core.5.4.21.nupkg.sha512" + }, + "BepInEx.PluginInfoProps/2.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VCG3QRiqNdW9ku2FEcNsbK+HKxrZmW0VxwMNyLNO7h0xGorU+C6vBHN8Qq4eAL5fU11Uks5x2uoYdqEoKD3P8A==", + "path": "bepinex.plugininfoprops/2.1.0", + "hashPath": "bepinex.plugininfoprops.2.1.0.nupkg.sha512" + }, + "HarmonyX/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lec/SkduQspMa3Pi/nM/NSvA84Za8HCCWA8ybdToKiTqnBZa+JC5g6rxoFQCg/1vNuYcvjy77edePZzIEsRmvw==", + "path": "harmonyx/2.7.0", + "hashPath": "harmonyx.2.7.0.nupkg.sha512" + }, + "LethalCompany.GameLibs.Steam/81.0.5-ngd.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q1+j5z4lP0TKO16uZ2NclNr9/mb3BUgl6mUO7zbPwbyEHIPJ4m6805rxP0w8mxe4NWNcQRoBkWrIpiNrwak8Hg==", + "path": "lethalcompany.gamelibs.steam/81.0.5-ngd.0", + "hashPath": "lethalcompany.gamelibs.steam.81.0.5-ngd.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Mono.Cecil/0.11.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IC1h5g0NeJGHIUgzM1P82ld57knhP0IcQfrYITDPXlNpMYGUrsG5TxuaWTjaeqDNQMBDNZkB8L0rBnwsY6JHuQ==", + "path": "mono.cecil/0.11.4", + "hashPath": "mono.cecil.0.11.4.nupkg.sha512" + }, + "MonoMod.RuntimeDetour/21.12.13.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-65mB+bHjT6UCGCgO+/pYhpuGPf96rQ1Whwkut/x7cqVIW0DTndDFyWc/3bngzhnY/Y6IYtBMlXsU2ATq+CxpHg==", + "path": "monomod.runtimedetour/21.12.13.1", + "hashPath": "monomod.runtimedetour.21.12.13.1.nupkg.sha512" + }, + "MonoMod.Utils/21.12.13.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/H+0RMWqx/D1/fSuY5jhY6GFvqhdYdlnI7J3IfL8P6y4nJkoZDxqts6+RxWWOz4pbnJdWnxSjS8XG+Lq6rUi7w==", + "path": "monomod.utils/21.12.13.1", + "hashPath": "monomod.utils.21.12.13.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==", + "path": "system.reflection.emit/4.7.0", + "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AucBYo3DSI0IDxdUjKksBcQJXPHyoPyrCXYURW1WDsLI4M65Ar/goSHjdnHOAY9MiYDNKqDlIgaYm+zL2hA1KA==", + "path": "system.reflection.emit.ilgeneration/4.7.0", + "hashPath": "system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-a4OLB4IITxAXJeV74MDx49Oq2+PsF6Sml54XAFv+2RyWwtDBcabzoxiiJRhdhx+gaohLh4hEGCLQyBozXoQPqA==", + "path": "system.reflection.emit.lightweight/4.7.0", + "hashPath": "system.reflection.emit.lightweight.4.7.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==", + "path": "system.reflection.typeextensions/4.7.0", + "hashPath": "system.reflection.typeextensions.4.7.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "UnityEngine.Modules/2022.3.62": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zpu5dELUCFt7Rvvzp50iTrfVusJg+2gmlcaytGEoHYuIP+AOv57X272czjp+sA8N1onPo/IiHFnOEFtT9rLJBA==", + "path": "unityengine.modules/2022.3.62", + "hashPath": "unityengine.modules.2022.3.62.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll b/bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll new file mode 100644 index 0000000000000000000000000000000000000000..185dc35198942cbc7b3ae057eb13af62266cb5a4 GIT binary patch literal 19456 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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/HerpieDerpiee.LaunchConfirm.dll b/obj/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll new file mode 100644 index 0000000000000000000000000000000000000000..185dc35198942cbc7b3ae057eb13af62266cb5a4 GIT binary patch literal 19456 zcmeIac|29!+c><=F_Srxq>~}@JP(J#tVlbg%U7$ z0>;S74iiN5!O60+GK>5)ZEXyI1&Rjv=jVK0FKqw_VOUV|02n|H;~H1U6W%fKiiH;d z98?^=<~PDX{HLZS2q7OyG{EyHqKf?fzW*c<7EDh)0I))kSXk6ABM9SXx(L7qi1KLw z5WLR&pWHFOT&HR?LVDL9`D7`$0~AP$>p_5l7gE=senX6!FaUVUlE@@)NKt)@g$O;o zjNtW0(u2(`w%orE2*dkH{`L+_cznUF}K#Tk&BI4c#xo z%dm>W82{GUzzB6lpc$%8BnHY@nWP24nkmv26bL@F9mx<2<3p=nk7x=Z^a>3(Ehnvp z7G$h(w%HJ2hhQd(K)_AMNvDyA#48%fw&oExJtw_1vpCEkMK$(Qv;*o(Zxa_ojEYkU zE-Dcz{);1p;^k)GWRSK3za`Y%LpvW4Ba`H`!BI47JIC6xTZM9D1FH z^dSYL@{+*7ZnpvI=jcV|f-q%Sd08cSB?UNt0XV(`A@rmNKsXwJc6e8YO(|?gA>j#r zWJCk70q_v^E@1~d@bKr0R{4`R^>%tQ$@(1REhV$GIj zH_U~nM_?stH!U+bOWR1#400i)2ad2TdN2baGx!Wn(69j%gE=hM7;18Xi_ix)&_;uB z&Or-YU^A8Tk{;o>Ld(36FN5L&K9J7^@?l-LfDy#`K@AY2!)8u#Y*$%2S~>gw`0u&jh|k7)umz`9;m5 zP=NG{`VOhXzbHg@_7{cJ@e-A~z}O5{pzJD@I>Y!3(4bM^7L`h6q|h;;(csQcSqvQ; zq?&%prs+4LX+YagYMFjBq&lfo9QY1vPYagTWT1m)8=4mE*$!Yz1uv-7VJfv&2U>87 zN}U01^ukcH6;6=r^@9xreZ|5K{dd?8TdR={1xErBh0PE$0|^K@fC3e2P@z5*no*$* z6}nI%9zq@v0wFz!pu#f{ZUGq(ZU?s@6bG*%lm*ie(o=ERf>b;oQ0SDwUGSAw1Kfig z4v1IKAb1}fJNLi=2=l3$C=?UJ9`GF8qIU+IsAk{>HbdwQ@!cpqU_#N+1%mCULV6;E zg0!JP1I2@i1}KyU>M(>nFt0w;Pl7O!E*03Ij?kt97t|1KF2JG`=`KUqOM4BNp~~oP z13c8c2O%3>8wf$!(Bi=$)dx0!f!?zL5x{|B1L8mmB?diEpb>*Jn-8rlU;*lAS-=hS zA>0ByAruC92&KR+2$et=gj%2T1eAG<=ms%x%U%C>@))* zpba4xXooNobkPh@rGr$>A#f5f&;k_V8x0E4q=DnSod!eY=s}JujUE;Eq~e}b9H0?R zfKG+E06Gg8&@jRttcucs5CwbS3m^dpemos@Ey17!M*%$??q)+?-?keis|53flIufsgXJxp`nG}>GRJS>Nf`fA!KO$OIo4Q zDCCjzE9oK+3SbUr6qp=w-V`E9320jqeL@3qI>0&*8-XJk5(yL%F)$EEG62>V4yI;% zJg85opZFeqOXGFEqp_`>nbjV!3rh+j5+W?{UO?N7K&D^`-Z-5A4-W&ZcL03!nc#7O zK0w=o=;wzc{geMQ_df)76fB8imFv59-BGoh?5yQz?uRt8E z1qBC;gS>D)J~$tJ3S10$g+h)YF(?=hgKUZ;;7CyA50L{Q3`fHI;*soz@Qvm`Gs~hAM7-5g6{At4;OM)?`h9I0s3izkK39N!6 zjzq>23I7zD5qycHAS?w6v4Q{4vcq|Yl3*iP<48ex@_%gs_C;U3Unq>v-wLqB`PyN9 zag+#K*l)?d3to#URoNC7h&@2X{*bTN(wYQ&yf@`{#`RbseILF#{uZp~KrCYk5x)ht zp#%y(2sRJoQ}AB+Kve4BBLiifWd^$w3F}R< zC*hGvfocJ1W{4uw)lU?DTEGVW>*Ncl)1M{M#?;mZ_P9V?Fp)%AQv|ZehBRtlR zKqOP}-sE-GdiPnMXY6pKFuXU8{Bwqa-3d;4kX-NjNLM5SOT0IUNGAGH;G_sA9yo3z z$awO9*9o8!^;z+&(Dl}l{XMA3;McHNn@z~T!yD`E4=23fU@RQjp=4l6!g_fjbJg0k zN}U^t1RQ}v4H%pzNC*yRP9$=6-Xwf5Wqs5DhhQH#ds@TF`{ED$8Vx^5*r9>^&*ux( z);f+ve;tQC#yA8%BH#!{dXE_aw@&>WiR-n3&rG*n00&5LU5@_$;8_@@P=hX1M!tteQ-x(C7^ zq*ie9qs9gUG$Fl@8W{q$d^_j~9_DugfCY)47tG}cbK654$rlVGLV|T!^OgcB4A6&M zq(lr&@#Wy#I{_FPH~ekz$}t#MXNG&_Zm>zjN6RWJzzI5Q3-$mrc$rcw|7WLIYa9#+hfY&qAc(N?i2Z+7 z5Cb&`P=aXT{_tQsEMM*q4|D)f`hQ;w@U@j#J74ov?=JT)3HxXLA%GTxLNU@{0E!MG zoSX>BMnx5<(3l=WgJNS_V>uu!E*vceaJeCh0_+T|=syz^K%=>0pX~a~@q0S_H5p1{{#epVV}3s0b}Gs$z)wo@(ip?gKuRbHx08Sig-^&p zX^eHKS0LUS&S>_;032bbx3`*?f|9SVw~wNakB^E156T|RVHbc8hL+&k(VM#VLDA4} zr9;!hUq%{wEWR04yVl`WXrULF6lfJ(|~vgbm(9gsT~ETrlzow)aQY!6>N5fI{9mOi^I7>>gu# z_;91H<)zo_9R@27EwF9;wb=amMBW3}Pn<{=%z7RSRK=jcmVdLhfnV!TfNpKA1UA6J zsX>*6Ujda+U@gK@s;Wv@WmQ$2h6Yw0hx1WYg)4M*FCR5!UmvWGFAk@mh*OaFRq%pg zKmpdjEuG*8H>5W3lLLGcgb)%eC_umVD1u++s8xjuJ5bz^k7k9dF=DtSY*c)3 zAPzE^%n1IlrQpIJQL}*WeE$PASls`k8uSMy<$oWbzt@M38Xf>#QNZb6mL1ZVe^~|n z?y9hx{?EE90ltY)qXIwq|4s^;T_*s_(i*9gI=qgY!NxBB&jRD&B{@GCcHg0iMR zWQY#@T>4)p*dClvGAs(f2+TJE^V!-N*^QH~D0CIyHB4@M^zO-Bn|+A=f769zgMGY! z-7bAa6;<#vYsGq2#Pwy4gK8DM&mGQSA2M578ySe30FabT=WI9eqb-k>!^pP9X(Nx; zW{KO1ydUADciUU5DK5w_Hz(g&PE?%lxVVs{(DqA*`7UyKVd!^+Nrid#N{y`^UQ_5ww@Wr!~o4$W8{0n#l}X=2Av21PFsV| zjkF*}61WZ4>Y+_rIBmbX>(S|L)5+pu6uJu9<9Y?{>e4~1-Pc@{UQGCQ`WE*g$@nVgteXW{(>%Qef zrb+Xy{8L)^IyKb6p!sGLxUzpf5X5G@saFC`Xuit+?&53e5;{)LuFg#9Z%E%AAE%=y z5g&&te$idU^%|*1cO&?xfQOxJy6sNSyvAKmkD?b^z`;B%*p-XMe zA(kxd(aYFW+(At7?31El2ky!$EkdVXiBFbRkZxV+qk+FlX*M~D94u{YVKcura~J#Z zo{P|=dUN$$kITtsno66gHfA1`v)VCiswf|#o_Nwf>T2#z zCesZ)-xklA!e|3lGww#)Np1mUFmt7V|KaXr1+OQl!tIKsJb5TfvQMNIE zx^VH^IR(nwBRK()KWcPXS93l!msGM=J(rrRYpb(X7Qgf8;J#T=n;b!2UR;yWeIHI= zuOp|qv~R^8W6AbU9?o`-$(Kg+M4o6?;P=??Z*`_+WlQzr+i!Od-#%T>aA>MOOC|Q} zr03b(z@3vcp}3c|+cQj`B+IB&6@|Fy$L-GNyvHbOtT26qPb^b7N%p+ZC3&oL4klRH z!UWT$d!P08yy-Xf1F|u=YMU!p-)aQZ53NSdr@y`PT)wETAw++hl#7cT=|k~@T`Mhb z-$b8U=|507$QQ78`VvETcKbE5rfA2ZmFV5QmL@NvZ?q1HyZ=nR{%8$P+<*sMtsGuhZxfR3$$t-v%XjBkj)gS>etQC%G)8^xf1 zKwa_dCY>F9D8`5njGN`qs8cI?iI0MHyf!5>b86}A;O6!eY4SN@Wb(?mzzgNsniwH; zu9KVD`;bkDvd~xK=3qfV7I~()#AkHc=tZH}1urqq$CvelK5`E7$)YJC(uP7bcPuO} z3SE9W0UgUs?GDaOO}#D^bFTYyu#;cz6TVG4y6vGa{GILXGTz5Aa$p9F`B3^O3Vi@=>L;BRZ`$_H7|k>@ zcF$`bT2I658$+`v4XGbxmfSnP> zDuZmf+O9`Vc;nIe9ANiLuf4441q_q*VYg3y?DQ#`ala{3CzWlmX`1)q2S#TClY|W8 zy%0f3w)^VGm2J(UYiku49@xZs)adS%BvsC1J?5=YNuNgSjr)^1`5rZkh7F3#ii&7o zwSQz;x^@Vf=u0)AnKP0SZS4w>kEf zy+Q9{i5x=+h-x&cy%YX1X7WTwKR>sHxyOtGCo8uQ=kpKF@6aL%J6i5Daa!@;eBkJw z?#em_Ua^!!DWsuOxQ1E_&(gWoDA-)x$UXZYN`%kQVX}anE_csS(iyL&J>uMsZoTdI zf}`}!ix7*9S2UbbNpoLxwdvT!FP0XCws(ta6J`u5wl&tURGc?)_d=g&`gH!33H#i< zlWpJD!lL{itnT4E&f7fcV=1i(?37~*daiHDSzsicwy8kmUU7ULX5r<8%d)_ut$9_$ zx4x;YF6{K4zI;pnVbozB!Q`(@4$+|<+6Nif3{}(I`UIUe-rue3`M&W(zXNYpo2f`y zQpI_(8??<#Z-X~fe-fhI#*LW?V9#ZoW;tnVmqplifu)((%DmRtqb4rPV{6pZ^IcO{ zgZ5YIp$AWRMw{Wc7r%OG%%l^V8%%#E6o?%PxS_9K{NqfMa=hDxj$U=~ZEc>s`T>4o znYzh|*61XC`|Y;;k@>;Sb5Uk#uhhofPCf3>>PS&F4;}XOI@PN8z1SLm;9a<(;sH-U z|JvpDcy7;`+7C~T9^Llg($g0kG!Dxbh7>PU(x;!R9obzSW3uC*Y|x>Q`Nf&Tt}5QE zszXmpbza13G9QQ*pP4%|pc(djPcOeuz=i6}5YU?97*UsgaBQPAHh`D1LFsGM$BY5| zdFyCO*jD8cPxRi{OBy&K+8xd3+g+jzWXcK;7d&V`HQdJX>WQPwiuO($+fuJ99L3g! zd3dc6u^VyS*RCt>)snqL3~$??S;MZr+yuEVtq7#q?3p2r z0v551Jk_@L?>3%Zs6E{JuC}Z0RmeismNW$hY)yn>e4y(Y&Ane+N~4DBvNTZ9pK3Nc zZV=kh7h!9pm)4r7B0RDDQ1PJ%<%CsN`WtV#sq>VcoB0ms9qv5z_xd8A!kzu0sHcmj zWWJm-q<@R+NZbi;j%>YPR=S~$r66#aeesQ1T+85WTHk&<4s(U=m#}rWeFElAJ&vk= zQ`sFsb8z6}Z%_TEuF{(OQvy%OJ*H-EAA%oy^dck*NlE6 z*~-TgFzj&AY$~QrXZ(Ttgy?bp9-mJ8!~0F(CmEl+zBi9g4Ldb?wAMUi?JKoyiCh9qhnxi-}m`);`N z)rBqirM3-^RaCl+M`t446@o8^|J71o1&?NI+VbxGSD=?x#(Qmvi8!LdMNr@yY#e_nvl?3BIUmK5bYt zjW4E^^eRwlTu(63<$vu}A<6Q3Mkaprivujwr_=r^VqJiO{rAAq#;deTp*s*2yheOPhAaa@~{jW-&vrLvtVRq^i`zm#}xnXNW^Gj7x3s8jOo-3##t%@nq$=+VZ}Cd>*c zbI&YP4X7kN-P!+5R`t-U1D>l@x&jQG*aOnX#Li&Qe05hU!nQbD9m-NYD6pYp*Fl9h zk0#kiQ+8M0c%pGOUE!+PsrarVI}<#ZMs$1Z9th>8Z;E5wh@$6Gzu(=SO8&N!-6A{v z$?N`9$*qKp(y^OSHq)-GPcj8fiR3oNgE!ONb;9q>k4KJOxUq1}ws6#KiGKQ6)IGr| z_0tnk?;f<;<;;u>YUf)AJS;m2FUxjNd;(% zYJKeP^b^KxZo;pK ze`DpIoP6KUW*l6sU$$8_gx2VOEcCk@_m|zhIy3kEJ+8ToOnR5ot*;b>E*vsmS{S*L zG;V+O;ia(8WP=<#3uA0hlX1=7E8Y6H8^3LG3J!m|tlhWlPWDsj@u)phGNbVRm49@c z&2#Js=HnNKfY2}BB=@x8Rs2lGOTQLp{#eP__vi}UehZ-Jl(4I+mHlOs?xdwhfXsZBg{V&JQL_d)+WHVN_w%hGMR zNnmoR5?FrmJYwa!_fV#~r+?S?ol~#&jcIQ4&&AE!m`MzG)tG!L`b$pBp1p3|?ano; zo#Z#Vceoh!?mOUHjS9J52`mo1ih8O`g7V7*@mDN**7u$_E|gLZo5&E6Epcz zy{GlPhErnvr45x6E<*N7Hw#?f8zsD&8Wd6XI2EZpm+zra9v9ERU?)XQmZB_!;o>x5E{>;6ov8rZu`ebC% zovYJC!`6}piDxEnZ-!jmcYW{9Es7acY`ATQw;5IW7X)9s#G|OD87b^4`TDQFisM7l z@VU4%Ld{29dh6c?x76G`$BQWy$WL$!wN8{ut}}i9U?0BV z{i}Y$jB{srmFgMA-2H=zs7iX3`mt}GsUs&xBXc9?_T0=a+OOacuaiJp*5tV7Z7t4q zYBx@MyP+X&&y$ZkEt!fVKRjsS{5C~@s@K{^DVb)VKL1_U9yOum555}&W&+*L`JSF& z|G*W<&^WzqAj{RxMXgq4C4+wC5jRWak7;S8)tKgK+^t$%8pts3oFte^al4g8@$DZKG_s;_MtPs8(-X@IOo;Ev(=#sqjLdiE#R7A`mtwfd2`+OZ(j!8NN8_pL1c4qwC4y#b}U^T~Fl0&Qw?Kdzh9 zy2xvA1i5Jk$O%s=JRj&2op|NpU|_0w3X4&XODKpE%rAUt{65JmqP)-BFu>TbnUH2+ zDH9{WGi$?SrL?V96@xV)vv;SJytn3@#$UBaP4&PeE{CyJjtsJJo>S||-b(+izkYE6 z{)O|?Urx_Wk72O!?*J*jn6w`H{q2!}o{d+FBAzFC^mgeDf#1 zPFU<`+wSnzmUnWlzhNQpQPcasrr%U9?T%j*ICp-UuoRIeJe_qm)A>2ig!KyFmCf&l zXtXkAU&+pC)vYXz-90lN@J2+kYwYy2PtS$6xsvvvFEUakK_?wvvMeOCrc_?&S3MNv zAEtWi;)C!a>?@yfI>VRcbhAekMRx6Yo>_EAHES%%Mb^(@WwHM{dFuVFy%O=}+4lvw zCyq|tM%76}CmUnbt0q0pZ#BBaj%{KldOpbxM5Suz>6t$s`s259;6ofBLAK zF6UDX?RWXftE6F^is4qJcYKX2Q!%D{a1OM`ti;u`qRpS~RXEOUlThEnl5JoL2Qo98Gt1p)CFl1%Hc|~RHiqt$jKc@Wse%EZf<BojQotG;@FFY+jw%Fd69k(;*sYJ_I zx^Bwx7xKC?w`#moorhERD~BGM6pQtlG~YkzDFtNI(i4m)ce*SLi5t#)NY<8!JSZmdZHzTBTEa)oFt{%=&F2># zI@d1!ffD{cH#O$a7To;wH}M^L%>J$o!R86p&wzWN0!o=++-<6AXx8xm8 zU3j4VgPv75`cB8BOtJ3`&G{EQ0(TAa9^HP-)JRA^^-b%wM@9Sd;&0M>E-Y*gchcDQ z%`9wG;h3*&;MK}BCMJ8Kk1axXNOZZCRiu!j&X}@|5ht4a!#X>rE$)(+Y~=12MMlaq zY!5!i?&o=Jz(qz)YVcr0Y09C@G>e=^Zaq-}loyUu-4hbQoIwT5m`pN%JQzArIbg1(&m{76{Ft@PM7 z)$glcPBcGf+>AG|W;ij&h&hXaXNH)zJlo2OC7Ax6G;@cig$WZGYV3s+|j!(o3B>-E67d z?D=Gs+B9NT&EsPs-+PE1GcI{u8%d9w*<)s`9mG%H$VwUX)!d=3IU3}3+Vs-9+>u6U zzc;B0n2{Lzr0lZmTB9DGcsTOZF- zc4xHa-y-$aa;AD{vNmmgtM<;-w>j7P^1fE?q~kvKy9tTQhm3K(!O~+1Zkz4vX1m71 zKB9B?eK-2%o|e7B`%Giih{>_ zKYnN4a*ZoL{H~=+DR0Eo{HymbMnW44F;?4O-xf4T<2-XbJ+`}1*RrFzZ&1#2gm}5_ zuOz9giSu7|{J&}>VvOU@7pb_lbGKgmOR=&^FQU|bEDVfKNzS;2?%ViA`H8g6rt1!Q zM4hsZxZqMjZ}GF^%ERT9!1~UKf@Vtd8`j|1Ti-QqFpsPcxWoK+nyXHFf>~5VXEhIK7^Vx^My3B;I-K8tyjcki5e|Ib_B;qEA`fX zl)jugL+^@uwjCK+Q~RTO4bzh8YmA5wtp-d`w_N9J)V^4>zH6#x&~g8=?IMdq054CO z`Labsyqm7$*F}pfcdgzfKAj!uA8T;kBoJ$K(f05;8#}|+ov~NvWo9SOZSgGJR~QmJ zm-TRo(d__6my7e^k)WF&i%$IzmG|#mI?8ZG&F8tAIctf4>s=kYOCVG^#ggtC7jQfThl#$lyd&rkfAKR+3CU*jluA%-wOS9yd#g@9~n00ANP^A zW@>k{c};uWM%y67!s zzl(87K&5ROaIuMTt@HCMBwOUz00HJEeIx z5wPfHwd80Ght=l|QOnPZlD?*5K0E`3p>~#|#s}1itHMg}$EJ!+R|Y5qU(;Gm%K+8; z!ajGjop`P{cj5JasJC_x!6>e*2oYGq*o3W@DxiPvfjhn?`&6YQ^dx+WYPXa{-h&Uk-k!2j$bUasgz(^<6Y+#C2;LUuyu6%ks~M=lp^7cbG(h%fmDX}@-UU$mqCDyb;T z@}lO)6P&2y)=CvIbAm1`@f8~U+jE$1jJ_qhY^@yETuj#-75!i=o|3m)MM}O6`-+Ee z=7e&}iw2J=d8hI#$<>{?Wyc?owXd8OcIiK4#kQ0Ydq)!+a@|a$sC+m$W{Z110-x9eNHr-2n)_GXvIF)mcFgepI&9QX$3FQkm^sb$4mFC3B>9-fG%z_`* z$*FB$y4+DGQ821dd+^fd`8w@K#-Zt3##`ntrIr=fp|)VP<=)r6Iy*XhI_LX}OVPOt z1NY#vnqADgVeAy&UEcY972FSO;-n8{>!}jCiyq4+X*CO{@mr1J$FY_4ed*kPqWNa#f@CNe(=KP;i3&6>Z^Um z_ujR*>~R&fd!TiT0bBQY-?;0Y*3-_xeb+*LOsCo}CY*gB_7Xql|CU#ExA@~@dCu>G zCHDv{MOcJg3!E@nurlgNn%pwox*yCB@aga-eK3D{o@PP)@bS&sOaiQ@KVR!RRZuoi z$EPY6{ITqZ;L)lAZXH1bzcZhA2_`ezr*0tC>AZ{n!FSAD|<>SG7bSc^9!nUf80s=RZ=uKusJ~E2YI&3>U{<_GaXW2+!CyOAcGM{qx?6r&! z7cctiAIj)zc{_L&J3yvj|qFoanzTnGOQlz@h(*^DP+2lvCF^+tDa)SIsL5`J0ZQG`6cO0 z1-Fu2CJ$+G+~<_hy)Uv2bnNB3TmH36T_!v3L`!0Pbj*Mj8@}jc^Ldx2ru5Q_k0b~tVF$mK z2UTG=%Zi+dtT8J!BsH&iB!~Fvl6sYM__@?mT6=`zIV1*CylGq89x^ZO@z%Zn;QGYD zD9gO~Elao0)e6W&R*M;%Z>MFl6BG&}s@^It{H#j3qI0Y7!-bZ>l9Y7-q={Z5I+3&^6c4z zibuH>bFI(p%ADvqoSCRBj&WOVSXsI(cPhtCZG6{NxqeG7Os7+u%Vf#jo;t<<#q666dUHFlv}%95P z=*U@Ju@^gpE4ndLUK)+zrfuQxYI~{^5^~com<~Uhb%+kyG0q)ap`Jw?p4G?->i0b^ z{)KxW@7OanK~$r~sjZ*FbFx2%=a@X2vPckb7+-ACo%JN>p&adnxjpsi5}I~xqX4_V z;^;0~d$XQzq^LSAe|Wtqb;^5-R7~5%$%G8MF|hUMHu9ipoom;dSaf!=NzX-g9_LtD z`)5oWE=h_+Hq9Sm6~8F=@*#SufL;0?2hM-mP(t33exv-J_Ye73POuxwzX$TgTZ1;L zg*@5Nbdk-}OY7b~W*+M%5%I1ZW=&uyDG%z~y^;p=nol=wF|Yc3>CTD5Sa*A2yYHsD zCUMiP7+Lo`9Q)MAFxzWqggtHJlJ48CD41-c;Fa`>O_tvfhOLtp1NKT8$fK?VITjR~ zv_5WY-JgJ1ySANhTA>^vOSI~vUSajc;Tv$fdxicvoYGa<7kAY6_o?hhAImH|ml>RrseUwb?tIOQluTO-H(qnM z4m4QW_7^<7zMj}UA%a2=FGym;Y zwm%L1FaH1c2p}hd;s3gTJJ0`K6Y2(1xP|-yqseJxB<_-uBRI`$`EygyV*S; zG=^Kw?ckPkE4b<0gSz$HWbMChfO^^~cnlB)b&(56Yj@o>0>C}K$QIVWB_l|opjBk^ zJF@#9*_CewH>3N)?dnJpq2{uu?#3s;z4(DplLGaS^A2mNjCKR{j4rZ;ooL5-Stm^r*ikeGJ>EVNczuqbOYc?wYy#;?% zZlp*23;vt`|EYa>xD^`ptDcU~K0M^}M_hjI8%NH8ApT&WJ`!2vv;zs=u`rguYx +// 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("HerpieDerpiee.LaunchConfirm")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+663a466e99a8eed66bed8bd74fdadfee12e10f1b")] +[assembly: System.Reflection.AssemblyProductAttribute("LaunchConfirm")] +[assembly: System.Reflection.AssemblyTitleAttribute("HerpieDerpiee.LaunchConfirm")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/netstandard2.1/LaunchConfirm.AssemblyInfoInputs.cache b/obj/Debug/netstandard2.1/LaunchConfirm.AssemblyInfoInputs.cache new file mode 100644 index 0000000..33895ec --- /dev/null +++ b/obj/Debug/netstandard2.1/LaunchConfirm.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4ffe5e172e780b6533ec3c053d32c9127bd42dfd49711592538bbe25eb9f7d17 diff --git a/obj/Debug/netstandard2.1/LaunchConfirm.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/netstandard2.1/LaunchConfirm.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..402568f --- /dev/null +++ b/obj/Debug/netstandard2.1/LaunchConfirm.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,5 @@ +is_global = true +build_property.RootNamespace = LaunchConfirm +build_property.ProjectDir = /var/home/valentijn/Development/LethalMods/LaunchConfirm/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/obj/Debug/netstandard2.1/LaunchConfirm.assets.cache b/obj/Debug/netstandard2.1/LaunchConfirm.assets.cache new file mode 100644 index 0000000000000000000000000000000000000000..98025196f37bd3f706a5c6bfa5cbb235f6c462d8 GIT binary patch literal 46495 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 BZT|oO literal 0 HcmV?d00001 diff --git a/obj/Debug/netstandard2.1/LaunchConfirm.csproj.AssemblyReference.cache b/obj/Debug/netstandard2.1/LaunchConfirm.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..47914195a8bee4f5b88f56cdb89ef7f2213a3268 GIT binary patch literal 50238 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 GG5jAdQqm^? literal 0 HcmV?d00001 diff --git a/obj/Debug/netstandard2.1/LaunchConfirm.csproj.CoreCompileInputs.cache b/obj/Debug/netstandard2.1/LaunchConfirm.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..fdae94b --- /dev/null +++ b/obj/Debug/netstandard2.1/LaunchConfirm.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +19d24df6beca2bc9dec4aec30f369443ef1e08aba1b1e8f80801a2bed54e6480 diff --git a/obj/Debug/netstandard2.1/LaunchConfirm.csproj.FileListAbsolute.txt b/obj/Debug/netstandard2.1/LaunchConfirm.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..dce64ef --- /dev/null +++ b/obj/Debug/netstandard2.1/LaunchConfirm.csproj.FileListAbsolute.txt @@ -0,0 +1,9 @@ +/var/home/valentijn/Development/LethalMods/LaunchConfirm/bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.deps.json +/var/home/valentijn/Development/LethalMods/LaunchConfirm/bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll +/var/home/valentijn/Development/LethalMods/LaunchConfirm/obj/Debug/netstandard2.1/LaunchConfirm.csproj.AssemblyReference.cache +/var/home/valentijn/Development/LethalMods/LaunchConfirm/obj/Debug/netstandard2.1/MyPluginInfo.cs +/var/home/valentijn/Development/LethalMods/LaunchConfirm/obj/Debug/netstandard2.1/LaunchConfirm.GeneratedMSBuildEditorConfig.editorconfig +/var/home/valentijn/Development/LethalMods/LaunchConfirm/obj/Debug/netstandard2.1/LaunchConfirm.AssemblyInfoInputs.cache +/var/home/valentijn/Development/LethalMods/LaunchConfirm/obj/Debug/netstandard2.1/LaunchConfirm.AssemblyInfo.cs +/var/home/valentijn/Development/LethalMods/LaunchConfirm/obj/Debug/netstandard2.1/LaunchConfirm.csproj.CoreCompileInputs.cache +/var/home/valentijn/Development/LethalMods/LaunchConfirm/obj/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll diff --git a/obj/Debug/netstandard2.1/MyPluginInfo.cs b/obj/Debug/netstandard2.1/MyPluginInfo.cs new file mode 100644 index 0000000..b613a04 --- /dev/null +++ b/obj/Debug/netstandard2.1/MyPluginInfo.cs @@ -0,0 +1,9 @@ +namespace LaunchConfirm +{ + public static class MyPluginInfo + { + public const string PLUGIN_GUID = "HerpieDerpiee.LaunchConfirm"; + public const string PLUGIN_NAME = "LaunchConfirm"; + public const string PLUGIN_VERSION = "1.0.0"; + } +} diff --git a/obj/LaunchConfirm.csproj.nuget.dgspec.json b/obj/LaunchConfirm.csproj.nuget.dgspec.json new file mode 100644 index 0000000..04efb24 --- /dev/null +++ b/obj/LaunchConfirm.csproj.nuget.dgspec.json @@ -0,0 +1,91 @@ +{ + "format": 1, + "restore": { + "/var/home/valentijn/Development/LethalMods/LaunchConfirm/LaunchConfirm.csproj": {} + }, + "projects": { + "/var/home/valentijn/Development/LethalMods/LaunchConfirm/LaunchConfirm.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/var/home/valentijn/Development/LethalMods/LaunchConfirm/LaunchConfirm.csproj", + "projectName": "HerpieDerpiee.LaunchConfirm", + "projectPath": "/var/home/valentijn/Development/LethalMods/LaunchConfirm/LaunchConfirm.csproj", + "packagesPath": "/var/home/valentijn/Development/.nuget/packages/", + "outputPath": "/var/home/valentijn/Development/LethalMods/LaunchConfirm/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/var/home/valentijn/Development/.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": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "dependencies": { + "BepInEx.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.*, )" + }, + "BepInEx.Core": { + "suppressParent": "All", + "target": "Package", + "version": "[5.*, )" + }, + "BepInEx.PluginInfoProps": { + "suppressParent": "All", + "target": "Package", + "version": "[2.*, )" + }, + "LethalCompany.GameLibs.Steam": { + "suppressParent": "All", + "target": "Package", + "version": "[*-*, )" + }, + "UnityEngine.Modules": { + "include": "Compile", + "suppressParent": "All", + "target": "Package", + "version": "[2022.3.62, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/lib64/dotnet/sdk/8.0.122/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/LaunchConfirm.csproj.nuget.g.props b/obj/LaunchConfirm.csproj.nuget.g.props new file mode 100644 index 0000000..5305cbc --- /dev/null +++ b/obj/LaunchConfirm.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /var/home/valentijn/Development/.nuget/packages/ + /var/home/valentijn/Development/.nuget/packages/ + PackageReference + 6.8.1 + + + + + + + + + /var/home/valentijn/Development/.nuget/packages/bepinex.core/5.4.21 + /var/home/valentijn/Development/.nuget/packages/bepinex.analyzers/1.0.8 + + \ No newline at end of file diff --git a/obj/LaunchConfirm.csproj.nuget.g.targets b/obj/LaunchConfirm.csproj.nuget.g.targets new file mode 100644 index 0000000..3c0a73d --- /dev/null +++ b/obj/LaunchConfirm.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..17286c0 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,2992 @@ +{ + "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" + } + } + }, + "LethalCompany.GameLibs.Steam/81.0.5-ngd.0": { + "type": "package", + "dependencies": { + "Newtonsoft.JSON": "13.0.3", + "UnityEngine.Modules": "2022.3.62" + }, + "compile": { + "ref/netstandard2.1/AmazingAssets.TerrainToMesh.dll": {}, + "ref/netstandard2.1/Assembly-CSharp-firstpass.dll": {}, + "ref/netstandard2.1/Assembly-CSharp.dll": {}, + "ref/netstandard2.1/ClientNetworkTransform.dll": {}, + "ref/netstandard2.1/DissonanceVoip.dll": {}, + "ref/netstandard2.1/DunGen.Integration.ASPP.dll": {}, + "ref/netstandard2.1/DunGen.Integration.UnityNav.dll": {}, + "ref/netstandard2.1/DunGen.dll": {}, + "ref/netstandard2.1/EasyTextEffects.dll": {}, + "ref/netstandard2.1/Facepunch Transport for Netcode for GameObjects.dll": {}, + "ref/netstandard2.1/Facepunch.Steamworks.Win64.dll": {}, + "ref/netstandard2.1/Unity.AI.Navigation.dll": {}, + "ref/netstandard2.1/Unity.Animation.Rigging.DocCodeExamples.dll": {}, + "ref/netstandard2.1/Unity.Animation.Rigging.dll": {}, + "ref/netstandard2.1/Unity.Burst.Unsafe.dll": {}, + "ref/netstandard2.1/Unity.Burst.dll": {}, + "ref/netstandard2.1/Unity.Collections.LowLevel.ILSupport.dll": {}, + "ref/netstandard2.1/Unity.Collections.dll": {}, + "ref/netstandard2.1/Unity.InputSystem.ForUI.dll": {}, + "ref/netstandard2.1/Unity.InputSystem.dll": {}, + "ref/netstandard2.1/Unity.Jobs.dll": {}, + "ref/netstandard2.1/Unity.Mathematics.dll": {}, + "ref/netstandard2.1/Unity.Multiplayer.Tools.Common.dll": {}, + "ref/netstandard2.1/Unity.Multiplayer.Tools.MetricTypes.dll": {}, + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStats.dll": {}, + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStatsMonitor.Component.dll": {}, + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStatsMonitor.Configuration.dll": {}, + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStatsMonitor.Implementation.dll": {}, + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStatsReporting.dll": {}, + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetworkProfiler.Runtime.dll": {}, + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetworkSolutionInterface.dll": {}, + "ref/netstandard2.1/Unity.Netcode.Components.dll": {}, + "ref/netstandard2.1/Unity.Netcode.Runtime.dll": {}, + "ref/netstandard2.1/Unity.Networking.Transport.dll": {}, + "ref/netstandard2.1/Unity.ProBuilder.Csg.dll": {}, + "ref/netstandard2.1/Unity.ProBuilder.KdTree.dll": {}, + "ref/netstandard2.1/Unity.ProBuilder.Poly2Tri.dll": {}, + "ref/netstandard2.1/Unity.ProBuilder.Stl.dll": {}, + "ref/netstandard2.1/Unity.ProBuilder.dll": {}, + "ref/netstandard2.1/Unity.Profiling.Core.dll": {}, + "ref/netstandard2.1/Unity.RenderPipelines.Core.Runtime.dll": {}, + "ref/netstandard2.1/Unity.RenderPipelines.Core.ShaderLibrary.dll": {}, + "ref/netstandard2.1/Unity.RenderPipelines.HighDefinition.Config.Runtime.dll": {}, + "ref/netstandard2.1/Unity.RenderPipelines.HighDefinition.Runtime.dll": {}, + "ref/netstandard2.1/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll": {}, + "ref/netstandard2.1/Unity.Services.Authentication.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Analytics.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Components.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Configuration.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Device.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Environments.Internal.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Environments.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Internal.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Networking.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Registration.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Scheduler.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Telemetry.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.Threading.dll": {}, + "ref/netstandard2.1/Unity.Services.Core.dll": {}, + "ref/netstandard2.1/Unity.Services.QoS.dll": {}, + "ref/netstandard2.1/Unity.Services.Relay.dll": {}, + "ref/netstandard2.1/Unity.TextMeshPro.dll": {}, + "ref/netstandard2.1/Unity.Timeline.dll": {}, + "ref/netstandard2.1/Unity.VisualEffectGraph.Runtime.dll": {}, + "ref/netstandard2.1/Unity.XR.CoreUtils.dll": {}, + "ref/netstandard2.1/Unity.XR.Management.dll": {}, + "ref/netstandard2.1/Unity.XR.OpenXR.Features.ConformanceAutomation.dll": {}, + "ref/netstandard2.1/Unity.XR.OpenXR.Features.MetaQuestSupport.dll": {}, + "ref/netstandard2.1/Unity.XR.OpenXR.Features.MockRuntime.dll": {}, + "ref/netstandard2.1/Unity.XR.OpenXR.Features.OculusQuestSupport.dll": {}, + "ref/netstandard2.1/Unity.XR.OpenXR.Features.RuntimeDebugger.dll": {}, + "ref/netstandard2.1/Unity.XR.OpenXR.dll": {}, + "ref/netstandard2.1/UnityEngine.ARModule.dll": {}, + "ref/netstandard2.1/UnityEngine.NVIDIAModule.dll": {}, + "ref/netstandard2.1/UnityEngine.SpatialTracking.dll": {}, + "ref/netstandard2.1/UnityEngine.UI.dll": {}, + "ref/netstandard2.1/UnityEngine.XR.LegacyInputHelpers.dll": {}, + "ref/netstandard2.1/com.olegknyazev.softmask.dll": {} + } + }, + "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" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.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" + ] + }, + "LethalCompany.GameLibs.Steam/81.0.5-ngd.0": { + "sha512": "q1+j5z4lP0TKO16uZ2NclNr9/mb3BUgl6mUO7zbPwbyEHIPJ4m6805rxP0w8mxe4NWNcQRoBkWrIpiNrwak8Hg==", + "type": "package", + "path": "lethalcompany.gamelibs.steam/81.0.5-ngd.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lethalcompany.gamelibs.steam.81.0.5-ngd.0.nupkg.sha512", + "lethalcompany.gamelibs.steam.nuspec", + "ref/netstandard2.1/AmazingAssets.TerrainToMesh.dll", + "ref/netstandard2.1/Assembly-CSharp-firstpass.dll", + "ref/netstandard2.1/Assembly-CSharp.dll", + "ref/netstandard2.1/ClientNetworkTransform.dll", + "ref/netstandard2.1/DissonanceVoip.dll", + "ref/netstandard2.1/DunGen.Integration.ASPP.dll", + "ref/netstandard2.1/DunGen.Integration.UnityNav.dll", + "ref/netstandard2.1/DunGen.dll", + "ref/netstandard2.1/EasyTextEffects.dll", + "ref/netstandard2.1/Facepunch Transport for Netcode for GameObjects.dll", + "ref/netstandard2.1/Facepunch.Steamworks.Win64.dll", + "ref/netstandard2.1/Unity.AI.Navigation.dll", + "ref/netstandard2.1/Unity.Animation.Rigging.DocCodeExamples.dll", + "ref/netstandard2.1/Unity.Animation.Rigging.dll", + "ref/netstandard2.1/Unity.Burst.Unsafe.dll", + "ref/netstandard2.1/Unity.Burst.dll", + "ref/netstandard2.1/Unity.Collections.LowLevel.ILSupport.dll", + "ref/netstandard2.1/Unity.Collections.dll", + "ref/netstandard2.1/Unity.InputSystem.ForUI.dll", + "ref/netstandard2.1/Unity.InputSystem.dll", + "ref/netstandard2.1/Unity.Jobs.dll", + "ref/netstandard2.1/Unity.Mathematics.dll", + "ref/netstandard2.1/Unity.Multiplayer.Tools.Common.dll", + "ref/netstandard2.1/Unity.Multiplayer.Tools.MetricTypes.dll", + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStats.dll", + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStatsMonitor.Component.dll", + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStatsMonitor.Configuration.dll", + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStatsMonitor.Implementation.dll", + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetStatsReporting.dll", + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetworkProfiler.Runtime.dll", + "ref/netstandard2.1/Unity.Multiplayer.Tools.NetworkSolutionInterface.dll", + "ref/netstandard2.1/Unity.Netcode.Components.dll", + "ref/netstandard2.1/Unity.Netcode.Runtime.dll", + "ref/netstandard2.1/Unity.Networking.Transport.dll", + "ref/netstandard2.1/Unity.ProBuilder.Csg.dll", + "ref/netstandard2.1/Unity.ProBuilder.KdTree.dll", + "ref/netstandard2.1/Unity.ProBuilder.Poly2Tri.dll", + "ref/netstandard2.1/Unity.ProBuilder.Stl.dll", + "ref/netstandard2.1/Unity.ProBuilder.dll", + "ref/netstandard2.1/Unity.Profiling.Core.dll", + "ref/netstandard2.1/Unity.RenderPipelines.Core.Runtime.dll", + "ref/netstandard2.1/Unity.RenderPipelines.Core.ShaderLibrary.dll", + "ref/netstandard2.1/Unity.RenderPipelines.HighDefinition.Config.Runtime.dll", + "ref/netstandard2.1/Unity.RenderPipelines.HighDefinition.Runtime.dll", + "ref/netstandard2.1/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll", + "ref/netstandard2.1/Unity.Services.Authentication.dll", + "ref/netstandard2.1/Unity.Services.Core.Analytics.dll", + "ref/netstandard2.1/Unity.Services.Core.Components.dll", + "ref/netstandard2.1/Unity.Services.Core.Configuration.dll", + "ref/netstandard2.1/Unity.Services.Core.Device.dll", + "ref/netstandard2.1/Unity.Services.Core.Environments.Internal.dll", + "ref/netstandard2.1/Unity.Services.Core.Environments.dll", + "ref/netstandard2.1/Unity.Services.Core.Internal.dll", + "ref/netstandard2.1/Unity.Services.Core.Networking.dll", + "ref/netstandard2.1/Unity.Services.Core.Registration.dll", + "ref/netstandard2.1/Unity.Services.Core.Scheduler.dll", + "ref/netstandard2.1/Unity.Services.Core.Telemetry.dll", + "ref/netstandard2.1/Unity.Services.Core.Threading.dll", + "ref/netstandard2.1/Unity.Services.Core.dll", + "ref/netstandard2.1/Unity.Services.QoS.dll", + "ref/netstandard2.1/Unity.Services.Relay.dll", + "ref/netstandard2.1/Unity.TextMeshPro.dll", + "ref/netstandard2.1/Unity.Timeline.dll", + "ref/netstandard2.1/Unity.VisualEffectGraph.Runtime.dll", + "ref/netstandard2.1/Unity.XR.CoreUtils.dll", + "ref/netstandard2.1/Unity.XR.Management.dll", + "ref/netstandard2.1/Unity.XR.OpenXR.Features.ConformanceAutomation.dll", + "ref/netstandard2.1/Unity.XR.OpenXR.Features.MetaQuestSupport.dll", + "ref/netstandard2.1/Unity.XR.OpenXR.Features.MockRuntime.dll", + "ref/netstandard2.1/Unity.XR.OpenXR.Features.OculusQuestSupport.dll", + "ref/netstandard2.1/Unity.XR.OpenXR.Features.RuntimeDebugger.dll", + "ref/netstandard2.1/Unity.XR.OpenXR.dll", + "ref/netstandard2.1/UnityEngine.ARModule.dll", + "ref/netstandard2.1/UnityEngine.NVIDIAModule.dll", + "ref/netstandard2.1/UnityEngine.SpatialTracking.dll", + "ref/netstandard2.1/UnityEngine.UI.dll", + "ref/netstandard2.1/UnityEngine.XR.LegacyInputHelpers.dll", + "ref/netstandard2.1/com.olegknyazev.softmask.dll" + ] + }, + "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" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "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.*", + "LethalCompany.GameLibs.Steam >= *-*", + "UnityEngine.Modules >= 2022.3.62" + ] + }, + "packageFolders": { + "/var/home/valentijn/Development/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/var/home/valentijn/Development/LethalMods/LaunchConfirm/LaunchConfirm.csproj", + "projectName": "HerpieDerpiee.LaunchConfirm", + "projectPath": "/var/home/valentijn/Development/LethalMods/LaunchConfirm/LaunchConfirm.csproj", + "packagesPath": "/var/home/valentijn/Development/.nuget/packages/", + "outputPath": "/var/home/valentijn/Development/LethalMods/LaunchConfirm/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/var/home/valentijn/Development/.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": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "dependencies": { + "BepInEx.Analyzers": { + "suppressParent": "All", + "target": "Package", + "version": "[1.*, )" + }, + "BepInEx.Core": { + "suppressParent": "All", + "target": "Package", + "version": "[5.*, )" + }, + "BepInEx.PluginInfoProps": { + "suppressParent": "All", + "target": "Package", + "version": "[2.*, )" + }, + "LethalCompany.GameLibs.Steam": { + "suppressParent": "All", + "target": "Package", + "version": "[*-*, )" + }, + "UnityEngine.Modules": { + "include": "Compile", + "suppressParent": "All", + "target": "Package", + "version": "[2022.3.62, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/lib64/dotnet/sdk/8.0.122/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..bd0e477 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,49 @@ +{ + "version": 2, + "dgSpecHash": "9BO36Uceb2Ee5epJ5ai7MKjb6rJ/OYulNShJu8dV8MGXcBd+ivv/KSsL70mjBpbA5g4193flBjZGqm9iKdK15A==", + "success": true, + "projectFilePath": "/var/home/valentijn/Development/LethalMods/LaunchConfirm/LaunchConfirm.csproj", + "expectedPackageFiles": [ + "/var/home/valentijn/Development/.nuget/packages/bepinex.analyzers/1.0.8/bepinex.analyzers.1.0.8.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/bepinex.baselib/5.4.20/bepinex.baselib.5.4.20.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/bepinex.core/5.4.21/bepinex.core.5.4.21.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/bepinex.plugininfoprops/2.1.0/bepinex.plugininfoprops.2.1.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/harmonyx/2.7.0/harmonyx.2.7.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/lethalcompany.gamelibs.steam/81.0.5-ngd.0/lethalcompany.gamelibs.steam.81.0.5-ngd.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/microsoft.netcore.platforms/1.1.0/microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/mono.cecil/0.11.4/mono.cecil.0.11.4.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/monomod.runtimedetour/21.12.13.1/monomod.runtimedetour.21.12.13.1.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/monomod.utils/21.12.13.1/monomod.utils.21.12.13.1.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.collections.nongeneric/4.3.0/system.collections.nongeneric.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.collections.specialized/4.3.0/system.collections.specialized.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.componentmodel/4.3.0/system.componentmodel.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.componentmodel.primitives/4.3.0/system.componentmodel.primitives.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.componentmodel.typeconverter/4.3.0/system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.reflection.emit/4.7.0/system.reflection.emit.4.7.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.reflection.emit.ilgeneration/4.7.0/system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.reflection.emit.lightweight/4.7.0/system.reflection.emit.lightweight.4.7.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.reflection.typeextensions/4.7.0/system.reflection.typeextensions.4.7.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512", + "/var/home/valentijn/Development/.nuget/packages/unityengine.modules/2022.3.62/unityengine.modules.2022.3.62.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file