Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ICSharpCode.ILSpyCmd/DotNetToolUpdateChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ public static async Task<PackageCheckResult> CheckForPackageUpdateAsync(string p

return new PackageCheckResult(runningVersion, latestVersion, comparisonResult > 0);
}
#pragma warning disable RCS1075 // Avoid empty catch clause that catches System.Exception.
catch (Exception)
{
// intentionally swallow exception
// we don't want to crash the app just because we can't check for updates
}
#pragma warning restore RCS1075 // Avoid empty catch clause that catches System.Exception.

return null;
}
Expand Down
Loading
Loading