Hi,
I recently wanted to obfuscate my app to submit it to marketplace. I confronted a problem as all infragistics dll files are signed and must be resigned using the same key. Is there any way to obfuscate my xap app?
Most obfuscation tools have a way to exclude some assemblies form the list of assemblies to obfuscate. I'd recommend doing that.
The other option is to recompile the source code by yourself and sign it with your key.
Regards,
Andres
Thanks Andres for your response,
Is there anyway to sign Windows Phone app?
Yeah, it can't be done from VS.
If you want to sign them, you need to modify the project file and add something like:
<SignAssembly>true</SignAssembly> <AssemblyOriginatorKeyFile>StrongName.snk</AssemblyOriginatorKeyFile>