initial plugin before git init
This commit is contained in:
40
LaunchConfirm.cs
Normal file
40
LaunchConfirm.cs
Normal file
@@ -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!");
|
||||||
|
}
|
||||||
|
}
|
||||||
55
LaunchConfirm.csproj
Normal file
55
LaunchConfirm.csproj
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<!-- BepInEx Properties -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<AssemblyName>HerpieDerpiee.LaunchConfirm</AssemblyName>
|
||||||
|
<Product>LaunchConfirm</Product>
|
||||||
|
<!-- Change to whatever version you're currently on. -->
|
||||||
|
<Version>1.0.0</Version>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<!-- Project Properties -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>netstandard2.1</TargetFramework>
|
||||||
|
<RootNamespace>LaunchConfirm</RootNamespace>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
|
<LangVersion>latest</LangVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<!-- Enable Nullable for better IDE null-checking -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<!-- Set NuGet Sources -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<RestoreAdditionalProjectSources>
|
||||||
|
https://api.nuget.org/v3/index.json;
|
||||||
|
https://nuget.bepinex.dev/v3/index.json
|
||||||
|
</RestoreAdditionalProjectSources>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<!-- Embed Debug Symbols for Easier Debugging -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>embedded</DebugType>
|
||||||
|
<!--
|
||||||
|
Trim the project path to prevent players from potentially
|
||||||
|
viewing Private Information in stack traces.
|
||||||
|
-->
|
||||||
|
<PathMap>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))=./</PathMap>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<!-- Primary Package References -->
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="BepInEx.Analyzers" Version="1.*" PrivateAssets="all"/>
|
||||||
|
<PackageReference Include="BepInEx.Core" Version="5.*" PrivateAssets="all"/>
|
||||||
|
<PackageReference Include="BepInEx.PluginInfoProps" Version="2.*" PrivateAssets="all"/>
|
||||||
|
<PackageReference Include="LethalCompany.GameLibs.Steam" Version="*-*" PrivateAssets="all"/>
|
||||||
|
<PackageReference Include="UnityEngine.Modules" Version="2022.3.62" IncludeAssets="compile" PrivateAssets="all"/>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
|
||||||
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all"/>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
56
Patches/LeverPatch.cs
Normal file
56
Patches/LeverPatch.cs
Normal file
@@ -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<LungProp>();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 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]\n<color=#FF0000>WARNING: Launching without Apparatus in the Ship!</color>";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
__instance.triggerScript.hoverTip = "Pull lever : [Start Ship]";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
93
README.md
Normal file
93
README.md
Normal file
@@ -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
|
||||||
|
<!-- BepInEx Properties -->
|
||||||
|
<PropertyGroup>
|
||||||
|
<AssemblyName>HerpieDerpiee.LaunchConfirm</AssemblyName>
|
||||||
|
<Product>LaunchConfirm</Product>
|
||||||
|
<!-- Change to whatever version you're currently on. -->
|
||||||
|
<Version>1.0.0</Version>
|
||||||
|
</PropertyGroup>
|
||||||
|
```
|
||||||
|
|
||||||
|
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.
|
||||||
659
bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.deps.json
Normal file
659
bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.deps.json
Normal file
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll
Normal file
BIN
bin/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")]
|
||||||
BIN
obj/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll
Normal file
BIN
obj/Debug/netstandard2.1/HerpieDerpiee.LaunchConfirm.dll
Normal file
Binary file not shown.
22
obj/Debug/netstandard2.1/LaunchConfirm.AssemblyInfo.cs
Normal file
22
obj/Debug/netstandard2.1/LaunchConfirm.AssemblyInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
4ffe5e172e780b6533ec3c053d32c9127bd42dfd49711592538bbe25eb9f7d17
|
||||||
@@ -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 =
|
||||||
BIN
obj/Debug/netstandard2.1/LaunchConfirm.assets.cache
Normal file
BIN
obj/Debug/netstandard2.1/LaunchConfirm.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
19d24df6beca2bc9dec4aec30f369443ef1e08aba1b1e8f80801a2bed54e6480
|
||||||
@@ -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
|
||||||
9
obj/Debug/netstandard2.1/MyPluginInfo.cs
Normal file
9
obj/Debug/netstandard2.1/MyPluginInfo.cs
Normal file
@@ -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";
|
||||||
|
}
|
||||||
|
}
|
||||||
91
obj/LaunchConfirm.csproj.nuget.dgspec.json
Normal file
91
obj/LaunchConfirm.csproj.nuget.dgspec.json
Normal file
@@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
22
obj/LaunchConfirm.csproj.nuget.g.props
Normal file
22
obj/LaunchConfirm.csproj.nuget.g.props
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/var/home/valentijn/Development/.nuget/packages/</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/var/home/valentijn/Development/.nuget/packages/</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.1</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="/var/home/valentijn/Development/.nuget/packages/" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)bepinex.plugininfoprops/2.1.0/build/BepInEx.PluginInfoProps.props" Condition="Exists('$(NuGetPackageRoot)bepinex.plugininfoprops/2.1.0/build/BepInEx.PluginInfoProps.props')" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<PkgBepInEx_Core Condition=" '$(PkgBepInEx_Core)' == '' ">/var/home/valentijn/Development/.nuget/packages/bepinex.core/5.4.21</PkgBepInEx_Core>
|
||||||
|
<PkgBepInEx_Analyzers Condition=" '$(PkgBepInEx_Analyzers)' == '' ">/var/home/valentijn/Development/.nuget/packages/bepinex.analyzers/1.0.8</PkgBepInEx_Analyzers>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
6
obj/LaunchConfirm.csproj.nuget.g.targets
Normal file
6
obj/LaunchConfirm.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<Import Project="$(NuGetPackageRoot)bepinex.core/5.4.21/build/BepInEx.Core.targets" Condition="Exists('$(NuGetPackageRoot)bepinex.core/5.4.21/build/BepInEx.Core.targets')" />
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
||||||
2992
obj/project.assets.json
Normal file
2992
obj/project.assets.json
Normal file
File diff suppressed because it is too large
Load Diff
49
obj/project.nuget.cache
Normal file
49
obj/project.nuget.cache
Normal file
@@ -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": []
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user