



<Target Name="ILMerge">
<Exec Command="$(ILMergeConsolePath) bin\Debug\TestIlmerge.dll /out:bin\Debug\TestIlmerge.dll bin\Debug\Newtonsoft.Json.dll bin\Debug\Emgu.CV.World.dll bin\Debug\Emgu.CV.UI.dll bin\Debug\ZedGraph.dll" />
</Target>
<Target Name="_ProjectRemoveDependencyFiles" AfterTargets="AfterBuild" DependsOnTargets="ILMerge">
<ItemGroup>
<_ProjectDependencyFile Include="bin\Debug\Newtonsoft.Json.dll" />
<_ProjectDependencyFile Include="bin\Debug\Emgu.CV.World.dll" />
<_ProjectDependencyFile Include="bin\Debug\Emgu.CV.UI.dll" />
<_ProjectDependencyFile Include="bin\Debug\ZedGraph.dll" />
</ItemGroup>
<Delete Files="@(_ProjectDependencyFile)" />
</Target>