I need to reference a dotnet runtime assembly with Mono.Cecil on a Linux Machine. This is a 2 part question.
- Where are the dotnet runtime assemblies stored on Linux (assuming it's an
.so
file) - Does the
Mono.Cecil.AssemblyDefinition::ReadAssembly()
method accept.so
files?
Thanks!
CodePudding user response:
Where are the dotnet runtime assemblies stored on Linux (assuming it's an .so file)
You're assuming wrong, assemblies are stored as .dll
files.
Does the Mono.Cecil.AssemblyDefinition::ReadAssembly() method accept .so files?
No, it works with .Net assembly files (.dll
)