WinGui: Update further references to .NET 8 to .NET 10

This commit is contained in:
sr55 2025-12-02 19:29:19 +00:00
parent 8b8eb2e372
commit 77ed3d83b8
No known key found for this signature in database
GPG Key ID: ECE911849A3E21A5
1 changed files with 2 additions and 2 deletions

View File

@ -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))