Tagged Questions

PEVerify verification program.

learn more… | top users | synonyms

12
votes
1answer
273 views

log4net doesn't pass verification when compiling

https://github.com/apache/log4net I am compiling log4net from the source above, but it doesn't pass verification: [IL]: Error: [log4net.dll : ...
10
votes
2answers
230 views

Is there an API for verifying the MSIL of a dynamic assembly at runtime?

When using Reflection.Emit to build an assembly at runtime, I'd like to verify the assembly MSIL before saving to disc. Like PEVerify but at runtime. Is there such an API?
9
votes
1answer
222 views

Why does this line cause a VerificationException when running under .NET 4?

Help me out folks - why does this code cause a VerificationException when run under .NET 4.0? public T parseEnum<T>(string value, T defaultValue) { //Removing the following lines fixes the ...
3
votes
1answer
102 views

Is there a simple way to decode PEVerify errors and warnings?

Given PEVerify error and warning output such as that below, how does one track back to the offending class and interface names? Assume I am not a compiler author or IL magician. [MD]: Error: Class ...
2
votes
1answer
56 views

PEVerify in code? [closed]

Possible Duplicate: Is there an API for verifying the MSIL of a dynamic assembly at runtime? I'm dynamically generating an assembly using Reflection.Emit and the like. For a unit test, I'd ...
2
votes
1answer
45 views

Can a .NET assembly be verified independently of any other assemblies it might reference?

In other words: For a .NET assembly to be verified, do any of the referenced assembly need to be read and analyzed too? What does PEVerify tool do?
2
votes
1answer
257 views

Avoiding BadImageFormatException when there is unmanaged code

I have a web service that throws a BadImageFormatException any time I try to run the service from Visual Studio. This answer to another question suggested running peverify against DLLs to see if ...
1
vote
4answers
1k views

Where can I download PEVerify.exe tool?

I ran into an InvalidProgramException. This article: http://support.microsoft.com/kb/312544/en-us Suggests I run PEVerify.exe, but I can't seem to find it. Do you know where I can get it from? ...
0
votes
2answers
119 views

Question about peverify errors

When I run the peverify utility against my .NET exe, I get a few errors (classes, methods renamed): [IL]: Error: [myapp.exe : namespace.class::method1][offset 0x00000027] Instruction cannot be ...
0
votes
1answer
90 views

PEVerify Warning Parameter out of Sequence

I've built an assembly using Reflection.Emit. Running PEVerify returns 214 warnings of the same type: [MD]: Warning: Parameter out of sequence (parameter: 1; seq.num: 1). [token:0x06000171] ...
0
votes
2answers
174 views

PEVerify MD Error: 0x8013124C

I get this 'error' when running PEVerify on a custom generated assembly. [MD](0x8013124C): Error: Method has a duplicate, token=0x06000023. [token:0x06000021] ...