ravibpatel / ILRepack.Lib.MSBuild.Task

MSBuild task for ILRepack which is an open-source alternative to ILMerge.
Other
107 stars 30 forks source link

Default ILRepack target not run when doing a Rebuild #11

Closed jairbubbles closed 6 years ago

jairbubbles commented 6 years ago

It's declared like this:

<Target Name="ILRepack" AfterTargets="Build" ..>

I think it should be:

<Target Name="ILRepack" AfterTargets="Build;Rebuild" ..>

Thx!

ravibpatel commented 6 years ago

@jairbubbles Thanks for reporting it. I will fix it asap.

ravibpatel commented 6 years ago

@jairbubbles I tried using Rebuild and it seems to execute ILRepack task. As you can see from this screenshot.

jairbubbles commented 6 years ago

I'll look into it a bit more.