Test
RocketLib
This is an example package description!Details
Mods/RocketLib/Newtonsoft.Json.dll
The result has been truncated due to the large size, download it to view the full contents!
using System;using System.Collections;using System.Collections.Generic;using System.Collections.ObjectModel;using System.ComponentModel;using System.Data;using System.Data.SqlTypes;using System.Diagnostics;using System.Diagnostics.CodeAnalysis;using System.Globalization;using System.IO;using System.Linq;using System.Reflection;using System.Reflection.Emit;using System.Resources;using System.Runtime.CompilerServices;using System.Runtime.InteropServices;using System.Runtime.Serialization;using System.Runtime.Serialization.Formatters;using System.Security;using System.Security.Permissions;using System.Text;using System.Text.RegularExpressions;using System.Threading;using System.Xml;using System.Xml.Linq;using Microsoft.CodeAnalysis;using Newtonsoft.Json.Bson;using Newtonsoft.Json.Converters;using Newtonsoft.Json.Linq;using Newtonsoft.Json.Linq.JsonPath;using Newtonsoft.Json.Schema;using Newtonsoft.Json.Serialization;using Newtonsoft.Json.Utilities;[assembly: CompilationRelaxations(8)][assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)][assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)][assembly: AllowPartiallyTrustedCallers][assembly: InternalsVisibleTo("Newtonsoft.Json.Schema, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f561df277c6c0b497d629032b410cdcf286e537c054724f7ffa0164345f62b3e642029d7a80cc351918955328c4adc8a048823ef90b0cf38ea7db0d729caf2b633c3babe08b0310198c1081995c19029bc675193744eab9d7345b8a67258ec17d112cebdbbb2a281487dceeafb9d83aa930f32103fbe1d2911425bc5744002c7")][assembly: InternalsVisibleTo("Newtonsoft.Json.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f561df277c6c0b497d629032b410cdcf286e537c054724f7ffa0164345f62b3e642029d7a80cc351918955328c4adc8a048823ef90b0cf38ea7db0d729caf2b633c3babe08b0310198c1081995c19029bc675193744eab9d7345b8a67258ec17d112cebdbbb2a281487dceeafb9d83aa930f32103fbe1d2911425bc5744002c7")][assembly: InternalsVisibleTo("Newtonsoft.Json.Dynamic, PublicKey=0024000004800000940000000602000000240000525341310004000001000100cbd8d53b9d7de30f1f1278f636ec462cf9c254991291e66ebb157a885638a517887633b898ccbcf0d5c5ff7be85a6abe9e765d0ac7cd33c68dac67e7e64530e8222101109f154ab14a941c490ac155cd1d4fcba0fabb49016b4ef28593b015cab5937da31172f03f67d09edda404b88a60023f062ae71d0b2e4438b74cc11dc9")][assembly: AssemblyTrademark("")][assembly: ComVisible(false)][assembly: Guid("9ca358aa-317b-4925-8ada-4a29e943a363")][assembly: CLSCompliant(true)][assembly: AssemblyCompany("Newtonsoft")][assembly: AssemblyConfiguration("Release")][assembly: AssemblyCopyright("Copyright © James Newton-King 2008")][assembly: AssemblyDescription("Json.NET is a popular high-performance JSON framework for .NET")][assembly: AssemblyFileVersion("13.0.3.27908")][assembly: AssemblyInformationalVersion("13.0.3+0a2e291c0d9c0c7675d445703e51750363a549ef")][assembly: AssemblyProduct("Json.NET")][assembly: AssemblyTitle("Json.NET .NET 3.5")][assembly: NeutralResourcesLanguage("en-US")][assembly: AssemblyVersion("13.0.0.0")]namespace Microsoft.CodeAnalysis{[CompilerGenerated][Microsoft.CodeAnalysis.Embedded]internal sealed class EmbeddedAttribute : Attribute{}}namespace System.Runtime.CompilerServices{[CompilerGenerated][Microsoft.CodeAnalysis.Embedded]internal sealed class IsReadOnlyAttribute : Attribute{}[CompilerGenerated][Microsoft.CodeAnalysis.Embedded][AttributeUsage(AttributeTargets.Class | AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue | AttributeTargets.GenericParameter, AllowMultiple = false, Inherited = false)]internal sealed class NullableAttribute : Attribute{public readonly byte[] NullableFlags;public NullableAttribute(byte P_0)
Mods/RocketLib/RocketLib.dll
The result has been truncated due to the large size, download it to view the full contents!
using System;using System.Collections;using System.Collections.Generic;using System.Diagnostics;using System.IO;using System.Linq;using System.Reflection;using System.Runtime.CompilerServices;using System.Runtime.InteropServices;using System.Text;using System.Text.RegularExpressions;using System.Xml;using System.Xml.Serialization;using HarmonyLib;using Localisation;using Networking;using Newtonsoft.Json;using Newtonsoft.Json.Linq;using RocketLib;using RocketLib.Loggers;using RocketLib.Menus.Core;using RocketLib.Menus.Elements;using RocketLib.Menus.Layout;using RocketLib.Menus.Tests;using RocketLib.Menus.Utilities;using RocketLib.Menus.Vanilla;using RocketLib.UMM;using RocketLib.Utils;using TFBGames.Management.Asset;using TFBGames.Systems;using UnityEngine;using UnityEngine.SceneManagement;using UnityModManagerNet;using Utility;using World.LevelEdit.Triggers;[assembly: CompilationRelaxations(8)][assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)][assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)][assembly: AssemblyTitle("RocketLib")][assembly: AssemblyCompany("Gorzontrok")][assembly: AssemblyProduct("RocketLib")][assembly: AssemblyCopyright("Copyright © Gorzontrok 2025")][assembly: ComVisible(false)][assembly: Guid("a6375eb5-1a4c-48e5-b2bf-2ced7175edf4")][assembly: AssemblyFileVersion("2.4.0")][assembly: AssemblyVersion("2.4.0.0")]public static class DictionarySerializationExtensions{public static SerializableKeyValuePair<TKey, TValue>[] ToSerializableArray<TKey, TValue>(this Dictionary<TKey, TValue> dictionary){if (dictionary == null){return new SerializableKeyValuePair<TKey, TValue>[0];}return dictionary.Select((KeyValuePair<TKey, TValue> kvp) => new SerializableKeyValuePair<TKey, TValue>(kvp.Key, kvp.Value)).ToArray();}public static Dictionary<TKey, TValue> ToDictionary<TKey, TValue>(this SerializableKeyValuePair<TKey, TValue>[] array){if (array == null){return new Dictionary<TKey, TValue>();}return Enumerable.ToDictionary(array, (SerializableKeyValuePair<TKey, TValue> kvp) => kvp.Key, (SerializableKeyValuePair<TKey, TValue> kvp) => kvp.Value);}public static TWrapper[] ToSerializableArray<TKey, TValue, TWrapper>(this Dictionary<TKey, TValue> dictionary, Func<KeyValuePair<TKey, TValue>, TWrapper> converter){if (dictionary == null){return new TWrapper[0];}return dictionary.Select(converter).ToArray();}public static Dictionary<TKey, TValue> ToDictionary<TKey, TValue, TWrapper>(this TWrapper[] array, Func<TWrapper, TKey> keySelector, Func<TWrapper, TValue> valueSelector){if (array == null)