mirror of https://github.com/HandBrake/HandBrake
WinGui: Update further references to .NET 8 to .NET 10
This commit is contained in:
parent
8b8eb2e372
commit
77ed3d83b8
|
|
@ -288,7 +288,7 @@ namespace HandBrakeWPF
|
|||
{
|
||||
GeneralApplicationException exception = new GeneralApplicationException(
|
||||
"A file appears to be missing.",
|
||||
"Try re-installing Microsoft .NET 8 Desktop Runtime",
|
||||
"Try re-installing Microsoft .NET 10 Desktop Runtime",
|
||||
(Exception)e.ExceptionObject);
|
||||
this.ShowError(exception);
|
||||
}
|
||||
|
|
@ -313,7 +313,7 @@ namespace HandBrakeWPF
|
|||
{
|
||||
if (e.Exception.GetType() == typeof(FileNotFoundException))
|
||||
{
|
||||
GeneralApplicationException exception = new GeneralApplicationException("A file appears to be missing.", "Try re-installing Microsoft .NET 8 Desktop Runtime", e.Exception);
|
||||
GeneralApplicationException exception = new GeneralApplicationException("A file appears to be missing.", "Try re-installing Microsoft .NET 10 Desktop Runtime", e.Exception);
|
||||
this.ShowError(exception);
|
||||
}
|
||||
else if (e.Exception.GetType() == typeof(GeneralApplicationException))
|
||||
|
|
|
|||
Loading…
Reference in New Issue