mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-01-03 16:13:25 +08:00
1.8.0 cleanup
This commit is contained in:
parent
873d0f277d
commit
629403a74d
@ -34,7 +34,7 @@
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\Release\ML_Cpp\</OutputPath>
|
||||
<OutputPath>..\Release\Explorer.MelonLoader.Il2Cpp\</OutputPath>
|
||||
<DefineConstants>CPP,ML</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
@ -49,7 +49,7 @@
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\Release\ML_Mono\</OutputPath>
|
||||
<OutputPath>..\Release\Explorer.MelonLoader.Mono\</OutputPath>
|
||||
<DefineConstants>MONO,ML</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
@ -64,7 +64,7 @@
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\Release\ML_Mono_NET35\</OutputPath>
|
||||
<OutputPath>..\Release\Explorer.MelonLoader.Mono.NET35\</OutputPath>
|
||||
<DefineConstants>MONO,ML,NET35</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
@ -79,7 +79,7 @@
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\Release\BIE_Cpp\</OutputPath>
|
||||
<OutputPath>..\Release\Explorer.BepInEx.Il2Cpp\</OutputPath>
|
||||
<DefineConstants>CPP,BIE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
@ -94,7 +94,7 @@
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\Release\BIE_Mono\</OutputPath>
|
||||
<OutputPath>..\Release\Explorer.BepInEx.Mono\</OutputPath>
|
||||
<DefineConstants>MONO,BIE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
@ -109,7 +109,7 @@
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>..\Release\BIE_Mono_NET35\</OutputPath>
|
||||
<OutputPath>..\Release\Explorer.BepInEx.Mono.NET35\</OutputPath>
|
||||
<DefineConstants>MONO,BIE,NET35</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
|
@ -4,24 +4,24 @@ namespace Explorer
|
||||
{
|
||||
public class ExplorerCore
|
||||
{
|
||||
public const string NAME =
|
||||
#if ML
|
||||
#if CPP
|
||||
"Explorer (Il2Cpp, MelonLoader)";
|
||||
#else
|
||||
"Explorer (Mono, MelonLoader)";
|
||||
#endif
|
||||
#else
|
||||
#if CPP
|
||||
"Explorer (Il2Cpp, BepInEx)";
|
||||
#else
|
||||
"Explorer (Mono, BepInEx)";
|
||||
#endif
|
||||
#endif
|
||||
public const string NAME = "Explorer (" + PLATFORM + ", " + MODLOADER + ")";
|
||||
public const string VERSION = "1.8.0";
|
||||
public const string AUTHOR = "Sinai";
|
||||
public const string GUID = "com.sinai.explorer";
|
||||
|
||||
public const string MODLOADER =
|
||||
#if ML
|
||||
"MelonLoader";
|
||||
#else
|
||||
"BepInEx";
|
||||
#endif
|
||||
public const string PLATFORM =
|
||||
#if CPP
|
||||
"Il2Cpp";
|
||||
#else
|
||||
"Mono";
|
||||
#endif
|
||||
|
||||
public static ExplorerCore Instance { get; private set; }
|
||||
|
||||
public ExplorerCore()
|
||||
|
@ -30,7 +30,9 @@ namespace Explorer
|
||||
"System.Collections",
|
||||
"System.Collections.Generic",
|
||||
"System.Reflection",
|
||||
#if ML
|
||||
"MelonLoader"
|
||||
#endif
|
||||
};
|
||||
|
||||
public override void Init()
|
||||
@ -42,9 +44,14 @@ namespace Explorer
|
||||
{
|
||||
MethodInput = @"// This is a basic C# console.
|
||||
// Some common using directives are added by default, you can add more below.
|
||||
// If you want to return some output, Debug.Log() it.
|
||||
|
||||
Debug.Log(""hello world"");";
|
||||
// If you want to return some output, Debug.Log() or MelonLogger.Log() it.
|
||||
"
|
||||
#if ML
|
||||
+ @"MelonLogger.Log(""hello world"");";
|
||||
#else
|
||||
+ @"Debug.Log(""hello world"");";
|
||||
#endif
|
||||
;
|
||||
|
||||
ResetConsole();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user