I have two projects, both of them provides localizable support.
Project A generate ProjectA.dll
and ProjectA.resources.dll
(in zh-Hans folder)
Project B reference to ProjectA.dll
(Project A and Project B in different solution).
create setup project for Project B with Visual Studio Installer. Added Primary output from ProjectB and Localized resources from ProjectB.
But it looks ProjectA.resources.dll
didn't included in setup project. Can any one tell me what is the right way to include localized resources of Project A into setup project of Project B?
Try to add a reference of ProjectA.dll into ProjectB solution.
simply right click on the Reference in the solution explorer and click on Add. then browse your dll and add its reference into the ProjectB solution. It might work for you.