ILRepack.MSBuild.Task
ILRepack.MSBuild.Task copied to clipboard
When using packed dll as reference to another project, packed sub-projects are not found
I have ProjectA that references sub-project ProjectB.
When I "ILRepack" ProjectA it seems to include ProjectB: the packed ProjectB.dll is heavier than the unpacked (= not using ILRepack) ProjectB.dll .
When I plug the packed ProjectA.dll into a 3rd project (let's call it TotallyDifferentProject), then TotallyDifferentProject I can access everything that was in ProjectA, but I cannot access the classes and methods that belong to ProjectB.
[ TotallyDifferentProject ] <-- [ Packed `ProjectA` ] = [ `ProjectA` + `ProjectB` ]