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">
|
|
|
|
<ItemGroup>
|
|
|
|
<InputAssemblies Include="$(OutputPath)$(AssemblyName).dll" />
|
|
|
|
<InputAssemblies Include="..\lib\mcs.dll" />
|
|
|
|
<InputAssemblies Include="..\lib\INIFileParser.dll" Condition="'$(IsStandalone)' == 'true'"/>
|
|
|
|
</ItemGroup>
|
|
|
|
<ILRepack
|
|
|
|
Parallel="true"
|
|
|
|
Internalize="true"
|
|
|
|
DebugInfo="false"
|
|
|
|
LibraryPath="..\lib\"
|
|
|
|
InputAssemblies="@(InputAssemblies)"
|
|
|
|
TargetKind="Dll"
|
|
|
|
OutputFile="$(OutputPath)$(AssemblyName).dll" />
|
|
|
|
</Target>
|
|
|
|
|
2020-10-05 18:32:38 +11:00
|
|
|
</Project>
|