Exception Code: 0xe0434f4d

When I tried to start a Windows application, I received the following error: Invalid application name: cribbageDemo.exe, version: 1.0.0.0, timestamp: 0x4f685fe3 Invalid module name: KERNELBASE.dll, version: 6.1.7600.16850, timestamp: 0x4e211da1 Exception code: 0xe0434f4d

additional error information ::

<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
<System>
<Provider Name="Application Error" /> 
<EventID Qualifiers="0">1000</EventID>
<Level>2</Level> 
<Task>100</Task> 
<Keywords>0x80000000000000</Keywords> 
<TimeCreated SystemTime="2012-03-20T10:47:40.000000000Z" /> 
<EventRecordID>4148</EventRecordID> 
<Channel>Application</Channel> 
<Computer>Mayank-PC</Computer> 
<Security /> 
</System>
<EventData>
<Data>cribbageDemo.exe</Data> 
<Data>1.0.0.0</Data> 
<Data>4f685fe3</Data> 
<Data>KERNELBASE.dll</Data> 
<Data>6.1.7600.16850</Data> 
<Data>4e211da1</Data> 
<Data>e0434f4d</Data> 
<Data>000000000000a88d</Data> 
</EventData>
</Event>

When I run my application, I can not get the logs ...

+5
source share
1 answer

If you are using a .config file with "supportedRuntime", check if the specified runtime is> = compile time.

I got this error when changing to .Net 4.5 and there was an old 2.x entry in this file.

+4
source

All Articles