peters / ILRepack.MSBuild.Task

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

repack not working when wildcard used for InputAssemblies="*.dll" #29

Closed karlisf closed 5 years ago

karlisf commented 5 years ago

The section "ILRepack a library and all dependencies" of documentation says that wildcard could be used: InputAssemblies="*.dll".

When it's used no additional dll's are included because the part "LibraryToRepack.dll .dll" of output is erroneous: `ILRepack: Input assemblies (using input assembly wildcards): C:\Users*\Documents\Visual Studio 2017\Projects\RepackSample\LibraryToRepack\bin\Debug\LibraryToRepack.dll *.dll.`

When value of InputAssembly is changed to: InputAssemblies="$(OutputPath)\*.dll" everything works.

I guess it's error in the documentation.

peters commented 5 years ago

Thanks for reporting this. I've updated the documentation accordingly.