Browse Source

Merge pull request #2585 from yyjdelete/openlink

Fix MainWindow.OpenLink for net6.0
pull/2589/head
Siegfried Pammer 4 years ago committed by GitHub
parent
commit
88e2f5e94c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ILSpy/MainWindow.xaml.cs

2
ILSpy/MainWindow.xaml.cs

@ -1095,7 +1095,7 @@ namespace ICSharpCode.ILSpy @@ -1095,7 +1095,7 @@ namespace ICSharpCode.ILSpy
{
try
{
Process.Start(link);
Process.Start(new ProcessStartInfo { FileName = link, UseShellExecute = true });
#pragma warning disable RECS0022 // A catch clause that catches System.Exception and has an empty body
}
catch (Exception)

Loading…
Cancel
Save