mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-01-08 18:43:37 +08:00
20 lines
702 B
XML
20 lines
702 B
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.dll" />
|
|
<InputAssemblies Include="..\lib\INIFileParser.dll" />
|
|
</ItemGroup>
|
|
<ILRepack
|
|
Parallel="true"
|
|
Internalize="true"
|
|
DebugInfo="false"
|
|
LibraryPath="..\lib\"
|
|
InputAssemblies="@(InputAssemblies)"
|
|
TargetKind="Dll"
|
|
OutputFile="$(OutputPath)$(AssemblyName).dll" />
|
|
</Target>
|
|
|
|
</Project> |