fix more compiler complaints

This commit is contained in:
13xforever 2020-11-11 00:30:02 +05:00
parent 11f826122f
commit 158cf18bd1
3 changed files with 9 additions and 1 deletions

View File

@ -258,7 +258,7 @@ namespace PsnClient
catch (Exception e)
{
ConsoleLogger.PrintError(e, response);
throw e;
throw;
}
}

View File

@ -0,0 +1,8 @@
using System.Diagnostics.CodeAnalysis;
// This file is used by Code Analysis to maintain SuppressMessage
// attributes that are applied to this project.
// Project-level suppressions either have no target or are given
// a specific target and scoped to a namespace, type, member, etc.
[assembly: SuppressMessage("Style", "VSTHRD200:Use \"Async\" suffix for async methods", Justification = "Test names are special")]