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

Commit 9665753

Browse files
committed
fix BIE5 mono release
1 parent 942e9d7 commit 9665753

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

src/UnityExplorer.csproj

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
<AssemblyName>UnityExplorer.ML.IL2CPP</AssemblyName>
3939
<IsCpp>true</IsCpp>
4040
<IsMelonLoader>true</IsMelonLoader>
41-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
4241
</PropertyGroup>
4342
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_ML_Mono|AnyCPU' ">
4443
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
@@ -48,7 +47,6 @@
4847
<Prefer32Bit>false</Prefer32Bit>
4948
<IsCpp>false</IsCpp>
5049
<IsMelonLoader>true</IsMelonLoader>
51-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5250
</PropertyGroup>
5351
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_BIE_Cpp|AnyCPU' ">
5452
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
@@ -57,7 +55,6 @@
5755
<AssemblyName>UnityExplorer.BIE.IL2CPP</AssemblyName>
5856
<IsCpp>true</IsCpp>
5957
<IsMelonLoader>false</IsMelonLoader>
60-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
6158
</PropertyGroup>
6259
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_BIE6_Mono|AnyCPU' ">
6360
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
@@ -66,16 +63,14 @@
6663
<AssemblyName>UnityExplorer.BIE6.Mono</AssemblyName>
6764
<IsCpp>false</IsCpp>
6865
<IsMelonLoader>false</IsMelonLoader>
69-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
7066
</PropertyGroup>
7167
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_BIE5_Mono|AnyCPU'">
68+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
7269
<OutputPath>..\Release\UnityExplorer.BepInEx5.Mono\</OutputPath>
7370
<DefineConstants>MONO,BIE,BIE5</DefineConstants>
7471
<AssemblyName>UnityExplorer.BIE5.Mono</AssemblyName>
75-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
76-
<PlatformTarget>x64</PlatformTarget>
77-
<LangVersion>7.3</LangVersion>
78-
<ErrorReport>prompt</ErrorReport>
72+
<IsCpp>false</IsCpp>
73+
<IsMelonLoader>false</IsMelonLoader>
7974
</PropertyGroup>
8075
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_STANDALONE_Mono|AnyCPU'">
8176
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
@@ -85,7 +80,6 @@
8580
<IsCpp>false</IsCpp>
8681
<IsMelonLoader>false</IsMelonLoader>
8782
<IsStandalone>true</IsStandalone>
88-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
8983
</PropertyGroup>
9084
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release_STANDALONE_Cpp|AnyCPU'">
9185
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
@@ -95,7 +89,6 @@
9589
<IsCpp>true</IsCpp>
9690
<IsMelonLoader>false</IsMelonLoader>
9791
<IsStandalone>true</IsStandalone>
98-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
9992
</PropertyGroup>
10093
<ItemGroup>
10194
<Reference Include="INIFileParser, Version=2.5.2.0, Culture=neutral, PublicKeyToken=79af7b307b65cf3c, processorArchitecture=MSIL">
@@ -270,7 +263,6 @@
270263
<ItemGroup>
271264
<Compile Include="Loader\ExplorerBepIn6Plugin.cs" />
272265
<Compile Include="Loader\ExplorerStandalone.cs" />
273-
<Compile Include="Helpers\EventHelper.cs" />
274266
<Compile Include="Inspectors\MouseInspector.cs" />
275267
<Compile Include="Inspectors\Reflection\CacheObject\CacheEnumerated.cs" />
276268
<Compile Include="Inspectors\Reflection\CacheObject\CacheField.cs" />
@@ -298,6 +290,9 @@
298290
<Compile Include="Inspectors\Reflection\InteractiveValue\InteractiveString.cs" />
299291
<Compile Include="Inspectors\Reflection\InteractiveValue\InteractiveUnityStruct.cs" />
300292
<Compile Include="Loader\IExplorerLoader.cs" />
293+
<Compile Include="Runtime\Il2Cpp\Il2CppProvider.cs" />
294+
<Compile Include="Runtime\RuntimeProvider.cs" />
295+
<Compile Include="Runtime\Mono\MonoProvider.cs" />
301296
<Compile Include="UI\ForceUnlockCursor.cs" />
302297
<Compile Include="Input\IHandleInput.cs" />
303298
<Compile Include="Tests\Tests.cs" />

0 commit comments

Comments
 (0)