2020-10-05 18:32:38 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2021-03-30 19:50:04 +11:00
|
|
|
|
|
|
|
<Target Name="ILRepacker" AfterTargets="Build">
|
2021-05-23 13:58:26 +10:00
|
|
|
<!-- Actual merged assemblies -->
|
2021-03-30 19:50:04 +11:00
|
|
|
<ItemGroup>
|
|
|
|
<InputAssemblies Include="$(OutputPath)$(AssemblyName).dll" />
|
2021-05-11 19:13:58 +10:00
|
|
|
<InputAssemblies Include="..\lib\mcs-unity\mcs\bin\Release\mcs.dll" />
|
2022-01-19 17:34:53 +11:00
|
|
|
<InputAssemblies Include="packages\Samboy063.Tomlet.3.1.3\lib\net35\Tomlet.dll" />
|
2021-05-11 19:13:58 +10:00
|
|
|
</ItemGroup>
|
2022-01-19 17:34:53 +11:00
|
|
|
|
2021-05-23 13:58:26 +10:00
|
|
|
<!-- Required references for ILRepack -->
|
2021-05-11 19:13:58 +10:00
|
|
|
<ItemGroup>
|
2021-08-10 17:17:21 +10:00
|
|
|
<ReferenceFolders Include="packages\HarmonyX.2.5.2\lib\net35\" />
|
2021-05-11 19:13:58 +10:00
|
|
|
<ReferenceFolders Include="..\lib\BepInEx.6.IL2CPP\" />
|
|
|
|
<ReferenceFolders Include="..\lib\BepInEx.6.Mono\" />
|
2021-05-11 20:23:52 +10:00
|
|
|
<ReferenceFolders Include="..\lib\BepInEx.5\" />
|
|
|
|
<ReferenceFolders Include="..\lib\MelonLoader\" />
|
2021-09-30 21:08:45 +10:00
|
|
|
<ReferenceFolders Include="..\lib\Il2CppAssemblyUnhollower\UnhollowerBaseLib\bin\Release\net4.7.2\" />
|
2021-03-30 19:50:04 +11:00
|
|
|
</ItemGroup>
|
2021-05-23 13:58:26 +10:00
|
|
|
|
2021-03-30 19:50:04 +11:00
|
|
|
<ILRepack
|
|
|
|
Parallel="true"
|
|
|
|
Internalize="true"
|
|
|
|
DebugInfo="false"
|
2021-05-11 19:13:58 +10:00
|
|
|
LibraryPath="@(ReferenceFolders)"
|
2021-03-30 19:50:04 +11:00
|
|
|
InputAssemblies="@(InputAssemblies)"
|
|
|
|
TargetKind="Dll"
|
2021-05-29 19:07:26 +10:00
|
|
|
OutputFile="$(OutputPath)$(AssemblyName).dll"
|
|
|
|
/>
|
2021-03-30 19:50:04 +11:00
|
|
|
</Target>
|
|
|
|
|
2020-10-05 18:32:38 +11:00
|
|
|
</Project>
|