fix:folder name for can ilpack

This commit is contained in:
yukieiji 2023-03-13 23:50:56 +09:00
parent be101db4c2
commit 2d0e85066a
7 changed files with 7 additions and 7 deletions

View File

@ -73,7 +73,7 @@ Remove-Item $Path/../UnityExplorer.BepInEx.IL2CPP.zip -ErrorAction SilentlyConti
dotnet build src/UnityExplorer.sln -c Release_BIE_CoreCLR dotnet build src/UnityExplorer.sln -c Release_BIE_CoreCLR
$Path = "Release/UnityExplorer.BepInEx.IL2CPP.CoreCLR" $Path = "Release/UnityExplorer.BepInEx.IL2CPP.CoreCLR"
# ILRepack # ILRepack
lib/ILRepack.exe /target:library /lib:lib/net472 /lib:lib/net6/ /lib:lib/interop/ /lib:$Path /internalize /out:$Path/UnityExplorer.BIE.IL2CPP.CoreCLR.dll $Path/UnityExplorer.BIE.IL2CPP.CoreCLR.dll $Path/mcs.dll $Path/Tomlet.dll lib/ILRepack.exe /target:library /lib:lib/net472/build423~577 /lib:lib/net6/ /lib:lib/interop/ /lib:$Path /internalize /out:$Path/UnityExplorer.BIE.IL2CPP.CoreCLR.dll $Path/UnityExplorer.BIE.IL2CPP.CoreCLR.dll $Path/mcs.dll $Path/Tomlet.dll
# (cleanup and move files) # (cleanup and move files)
Remove-Item $Path/Tomlet.dll Remove-Item $Path/Tomlet.dll
Remove-Item $Path/mcs.dll Remove-Item $Path/mcs.dll
@ -91,10 +91,10 @@ Remove-Item $Path/../UnityExplorer.BepInEx.IL2CPP.CoreCLR.zip -ErrorAction Silen
7z a $Path/../UnityExplorer.BepInEx.IL2CPP.CoreCLR.zip .\$Path\* 7z a $Path/../UnityExplorer.BepInEx.IL2CPP.CoreCLR.zip .\$Path\*
# ----------- BepInEx Unity IL2CPP CoreCLR ----------- # ----------- BepInEx Unity IL2CPP CoreCLR -----------
dotnet build src/UnityExplorer.sln -c BIE_Unity_Cpp_CoreCLR dotnet build src/UnityExplorer.sln -c Release_BIE_Unity_Cpp
$Path = "Release/UnityExplorer.BepInEx.Unity.IL2CPP.CoreCLR" $Path = "Release/UnityExplorer.BepInEx.Unity.IL2CPP.CoreCLR"
# ILRepack # ILRepack
lib/ILRepack.exe /target:library /lib:lib/net472 /lib:lib/net6/ /lib:lib/interop/ /lib:$Path /internalize /out:$Path/UnityExplorer.BIE.Unity.IL2CPP.CoreCLR.dll $Path/UnityExplorer.BIE.Unity.IL2CPP.CoreCLR.dll $Path/mcs.dll $Path/Tomlet.dll lib/ILRepack.exe /target:library /lib:lib/net472/build647+ /lib:lib/net6/ /lib:lib/interop/ /lib:$Path /internalize /out:$Path/UnityExplorer.BIE.Unity.IL2CPP.CoreCLR.dll $Path/UnityExplorer.BIE.Unity.IL2CPP.CoreCLR.dll $Path/mcs.dll $Path/Tomlet.dll
# (cleanup and move files) # (cleanup and move files)
Remove-Item $Path/Tomlet.dll Remove-Item $Path/Tomlet.dll
Remove-Item $Path/mcs.dll Remove-Item $Path/mcs.dll

View File

@ -155,21 +155,21 @@
<!-- BepInEx Il2Cpp --> <!-- BepInEx Il2Cpp -->
<ItemGroup Condition="'$(Configuration)'=='BIE_Cpp' or '$(Configuration)'=='BIE_Cpp_CoreCLR'"> <ItemGroup Condition="'$(Configuration)'=='BIE_Cpp' or '$(Configuration)'=='BIE_Cpp_CoreCLR'">
<Reference Include="BepInEx"> <Reference Include="BepInEx">
<HintPath>..\lib\net472\#423~#577\BepInEx.Core.dll</HintPath> <HintPath>..\lib\net472\build423~577\BepInEx.Core.dll</HintPath>
<Private>False</Private> <Private>False</Private>
</Reference> </Reference>
<Reference Include="BepInEx.IL2CPP"> <Reference Include="BepInEx.IL2CPP">
<HintPath>..\lib\net472\#423~#577\BepInEx.IL2CPP.dll</HintPath> <HintPath>..\lib\net472\build423~577\BepInEx.IL2CPP.dll</HintPath>
<Private>False</Private> <Private>False</Private>
</Reference> </Reference>
</ItemGroup> </ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='BIE_Unity_Cpp_CoreCLR'"> <ItemGroup Condition="'$(Configuration)'=='BIE_Unity_Cpp_CoreCLR'">
<Reference Include="BepInEx"> <Reference Include="BepInEx">
<HintPath>..\lib\net472\#647+\BepInEx.Core.dll</HintPath> <HintPath>..\lib\net472\build647+\BepInEx.Core.dll</HintPath>
<Private>False</Private> <Private>False</Private>
</Reference> </Reference>
<Reference Include="BepInEx.IL2CPP"> <Reference Include="BepInEx.IL2CPP">
<HintPath>..\lib\net472\#647+\BepInEx.Unity.IL2CPP.dll</HintPath> <HintPath>..\lib\net472\build647+\BepInEx.Unity.IL2CPP.dll</HintPath>
<Private>False</Private> <Private>False</Private>
</Reference> </Reference>
</ItemGroup> </ItemGroup>