Merging .NET assemblies on Windows Store / Phone 8 / Portable Class Library
Posted
by
Gabriel S.
on Stack Overflow
See other posts from Stack Overflow
or by Gabriel S.
Published on 2013-08-02T15:33:51Z
Indexed on
2013/08/02
15:35 UTC
Read the original article
Hit count: 210
Is there a way to embed multiple dependent assemblies into a single one for projects written on the following platform types: Windows Store Apps, Windows Phone 8, Portable Class Library?
I know that for regular .Net projects there is ILMerge, but on the aforementioned project types it doesn't work. Embedding assemblies as resources and then manually resolving the references using AppDomain.CurrentDomain.AssemblyResolve
is not possible either, since AppDomain
is not available in these types of project.
© Stack Overflow or respective owner