ILRepack.targets 598 B

12345678910111213
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Target Name="ILRepacker" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
  4. <ItemGroup>
  5. <InputAssemblies Include="$(OutputPath)\$(AssemblyName).dll" />
  6. <InputAssemblies Include="$(OutputPath)\SevenZip.dll" />
  7. </ItemGroup>
  8. <ILRepack LibraryPath=".\lib\" Parallel="true" Internalize="true" InputAssemblies="@(InputAssemblies)" TargetKind="Dll" OutputFile="$(OutputPath)\$(AssemblyName).dll" />
  9. </Target>
  10. </Project>