Bump winforms proj c# lang to 10

no functional change
This commit is contained in:
Kurt
2022-01-02 15:04:16 -08:00
parent bee4a54148
commit 4b8adfe28d
3 changed files with 1 additions and 9 deletions

View File

@@ -51,9 +51,7 @@ private static void UIThreadException(object sender, ThreadExceptionEventArgs t)
{
result = ErrorWindow.ShowErrorDialog("An unhandled exception has occurred.\nYou can continue running PKHeX, but please report this error.", t.Exception, true);
}
#pragma warning disable CA1031 // Do not catch general exception types
catch (Exception reportingException)
#pragma warning restore CA1031 // Do not catch general exception types
{
HandleReportingException(t.Exception, reportingException);
}
@@ -85,9 +83,7 @@ private static void CurrentDomain_UnhandledException(object sender, UnhandledExc
Error("A fatal non-UI error has occurred in PKHeX, and the details could not be displayed. Please report this to the author.");
}
}
#pragma warning disable CA1031 // Do not catch general exception types
catch (Exception reportingException)
#pragma warning restore CA1031 // Do not catch general exception types
{
HandleReportingException(ex, reportingException);
}
@@ -124,9 +120,7 @@ private static bool EmergencyErrorLog(Exception? originalException, Exception er
var message = (originalException?.ToString() ?? "null first exception") + Environment.NewLine + errorHandlingException;
File.WriteAllText($"PKHeX_Error_Report {DateTime.Now:yyyyMMddHHmmss}.txt", message);
}
#pragma warning disable CA1031 // Do not catch general exception types
catch (Exception)
#pragma warning restore CA1031 // Do not catch general exception types
{
// We've failed to save the error details twice now. There's nothing else we can do.
return false;