abadakhshan
abadakhshan

Reputation: 33

Shared assembly in prism modules

I write a project using Prism. I have tow modules and this modules have shared assembly. for example a.dll refrenced by moduleA and ModuleB therefore a.dll exists in ModuleA.xap and ModuleB.xap and enlarge xap files and probably loades again for each module.

how i can solve this issue?

Upvotes: 0

Views: 134

Answers (1)

Zabavsky
Zabavsky

Reputation: 13640

Add this assembly to Shell project and set Copy Local = False to it in the modules. In this case assembly will be included just in Shell.xap file.

Upvotes: 2

Related Questions