转储文件SampleApp.exe
文件类型:可执行镜像
clr Header:
48 cb
2.05 runtime version
2080 [ 668] RVA [size] of MetaData Directory
20003 flags
IL Only
32-Bit Required
32-Bit Preferred
6000001 entry point token
0 [ 0] RVA [size] of Resources Directory
0 [ 0] RVA [size] of StrongNameSignature Directory
0 [ 0] RVA [size] of CodeManagerTable Directory
0 [ 0] RVA [size] of VTableFixups Directory
0 [ 0] RVA [size] of ExportAddressTableJumps Directory
0 [ 0] RVA [size] of ManagedNativeHeader Directory摘要
2000 .reloc
2000 .rsrc
2000 .text发布于 2016-05-10 20:07:40
因为这个工具所说的“运行时版本”实际上并不是运行时版本,与之没有多大关系。这是个用词不当的词。不能使用dumpbin打印实际的运行时版本。相反,您可以使用ildasm,它将运行时版本称为“元数据版本”。您可以在程序集的清单中找到元数据版本。对于.NET 4.x,运行时版本为4.0.30319。
https://stackoverflow.com/questions/37011949
复制相似问题