Reputation: 4512
I have compiled .obj
files from c++/cli
compiler (.obj
files were compiled from source with /clr
option). Docs (https://learn.microsoft.com/en-us/dotnet/framework/tools/ildasm-exe-il-disassembler) says that is possible to run ildasm
to see some metadata of .obj
files. But command ildasm /metadata foo.obj
says error with message - ildasm supports only PE files in graphic mode
. Ildasm was taken from msvc 2015
. What's wrong with my command?
Upvotes: 0
Views: 234