Question

I need to determine all assemblies referenced by a certain .NET Compact Framework assembly. Do you think this is possible with Cecil?

This way our deployment tools could automatically resolve all dependencies of our .NET Compact Framework applications.

Was it helpful?

Solution

Even without Cecil you should be able to do it with Assembly.GetReferencedAssemblies. Even though that's not supported on the CF itself (as far as I can tell) it should be fine if your deployment tools are server-side.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top