Skip to content
This repository was archived by the owner on May 9, 2023. It is now read-only.

Commit e7aa01e

Browse files
committed
1.8.3
* Merging `mcs.dll` into the main `Explorer.dll` file, no longer needs to be in the Mods / Plugins folder.
1 parent bf6d526 commit e7aa01e

File tree

3 files changed

+3
-18
lines changed

3 files changed

+3
-18
lines changed

src/Explorer.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,12 @@
2727
<AssemblyName>Explorer</AssemblyName>
2828
<!-- Set this to the MelonLoader Il2Cpp Game folder, without the ending '\' character. -->
2929
<MLCppGameFolder>D:\Steam\steamapps\common\Hellpoint</MLCppGameFolder>
30-
<!--<MLCppGameFolder>D:\source\Unity Projects\Test\_BUILD</MLCppGameFolder>-->
3130
<!-- Set this to the MelonLoader Mono Game folder, without the ending '\' character. -->
3231
<MLMonoGameFolder>D:\Steam\steamapps\common\Outward</MLMonoGameFolder>
3332
<!-- Set this to the BepInEx Il2Cpp Game folder, without the ending '\' character. -->
3433
<BIECppGameFolder>D:\Steam\steamapps\common\Outward - Il2Cpp</BIECppGameFolder>
3534
<!-- Set this to the BepInEx Mono Game folder, without the ending '\' character. -->
3635
<BIEMonoGameFolder>D:\Steam\steamapps\common\Outward</BIEMonoGameFolder>
37-
<!-- <BIEMonoGameFolder>D:\source\Unity Projects\! My Unity Games\NewInputSystemTest\_BUILD</BIEMonoGameFolder> -->
3836
</PropertyGroup>
3937
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_ML_Cpp|AnyCPU' ">
4038
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
@@ -95,11 +93,11 @@
9593
<!-- MCS ref -->
9694
<Reference Include="mcs" Condition="'$(IsNet35)'=='false'">
9795
<HintPath>..\lib\mcs.dll</HintPath>
98-
<Private>True</Private>
96+
<Private>False</Private>
9997
</Reference>
10098
<Reference Include="mcs" Condition="'$(IsNet35)'=='true'">
10199
<HintPath>..\lib\mcs.NET35.dll</HintPath>
102-
<Private>True</Private>
100+
<Private>False</Private>
103101
</Reference>
104102
</ItemGroup>
105103
<!-- Universal Mono UnityEngine.dll ref (v5.3) -->

src/ExplorerBepInPlugin.cs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,24 +62,11 @@ internal void Awake()
6262
SceneManager.activeSceneChanged += DoSceneChange;
6363
#endif
6464

65-
LoadMCS();
66-
6765
new ExplorerCore();
6866

6967
//HarmonyInstance.PatchAll();
7068
}
7169

72-
void LoadMCS()
73-
{
74-
#if NET35
75-
var path = @"BepInEx\plugins\mcs.NET35.dll";
76-
#else
77-
var path = @"BepInEx\plugins\mcs.dll";
78-
#endif
79-
Assembly.Load(File.ReadAllBytes(path));
80-
ExplorerCore.Log("Loaded mcs!");
81-
}
82-
8370
internal static void DoSceneChange(Scene arg0, Scene arg1)
8471
{
8572
ExplorerCore.OnSceneChange();

src/ExplorerCore.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Explorer
55
public class ExplorerCore
66
{
77
public const string NAME = "Explorer (" + PLATFORM + ", " + MODLOADER + ")";
8-
public const string VERSION = "1.8.23";
8+
public const string VERSION = "1.8.3";
99
public const string AUTHOR = "Sinai";
1010
public const string GUID = "com.sinai.explorer";
1111

0 commit comments

Comments
 (0)