-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Why CrashRpt could not catch the Crash information for .NET Core? #55128
Copy link
Copy link
Closed
Labels
area-Diagnostics-coreclrbacklog-cleanup-candidateAn inactive issue that has been marked for automated closure.An inactive issue that has been marked for automated closure.no-recent-activityquestionAnswer questions and provide assistance, not an issue with source code or documentation.Answer questions and provide assistance, not an issue with source code or documentation.tracking-external-issueThe issue is caused by external problem (e.g. OS) - nothing we can do to fix it directlyThe issue is caused by external problem (e.g. OS) - nothing we can do to fix it directly
Metadata
Metadata
Assignees
Labels
area-Diagnostics-coreclrbacklog-cleanup-candidateAn inactive issue that has been marked for automated closure.An inactive issue that has been marked for automated closure.no-recent-activityquestionAnswer questions and provide assistance, not an issue with source code or documentation.Answer questions and provide assistance, not an issue with source code or documentation.tracking-external-issueThe issue is caused by external problem (e.g. OS) - nothing we can do to fix it directlyThe issue is caused by external problem (e.g. OS) - nothing we can do to fix it directly
Type
Fields
Give feedbackNo fields configured for issues without a type.
I found a problem that a cpp crash catcher tool could not work on .NET Core.
It was work fine on .NET Framework.
I use C++/CLI to run our native lib, and when the crash occurs, CrashRpt will catch the crash info by Windows System Message.
But on .NET Core, the console will print the crash information, like this:
And CrashRpt couldn't get the crash information.
Does it seem that the .NET Core runtime intercepts the crash information throw to the Windows system? If so, how could I disable this?
It's very important for us because if this problem could not be solved, we maybe need to downgrade to .NET Framework, it's a very terrible decision.
Please help me.