mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-01-09 10:58:57 +08:00
28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<Target Name="ILRepacker" AfterTargets="Build">
|
|
<ItemGroup>
|
|
<InputAssemblies Include="$(OutputPath)$(AssemblyName).dll" />
|
|
<InputAssemblies Include="..\lib\mcs-unity\mcs\bin\Release\mcs.dll" />
|
|
<InputAssemblies Include="packages\ini-parser.2.5.2\lib\net20\INIFileParser.dll" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ReferenceFolders Include="..\lib\" />
|
|
<ReferenceFolders Include="..\lib\HarmonyX\Harmony\bin\Release\net35\" />
|
|
<ReferenceFolders Include="..\lib\BepInEx.6.IL2CPP\" />
|
|
<ReferenceFolders Include="..\lib\BepInEx.6.Mono\" />
|
|
<ReferenceFolders Include="..\lib\BepInEx.5\" />
|
|
<ReferenceFolders Include="..\lib\MelonLoader\" />
|
|
</ItemGroup>
|
|
<ILRepack
|
|
Parallel="true"
|
|
Internalize="true"
|
|
DebugInfo="false"
|
|
LibraryPath="@(ReferenceFolders)"
|
|
InputAssemblies="@(InputAssemblies)"
|
|
TargetKind="Dll"
|
|
OutputFile="$(OutputPath)$(AssemblyName).dll" />
|
|
</Target>
|
|
|
|
</Project> |