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