From 0cd3027c289aa42d90c59b3121497849b978d07a Mon Sep 17 00:00:00 2001 From: Jonas Dellinger Date: Fri, 8 May 2020 16:39:00 +0200 Subject: [PATCH] Disable naming warning --- SpotifyAPI.Web/Clients/Interfaces/IArtistsClient.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SpotifyAPI.Web/Clients/Interfaces/IArtistsClient.cs b/SpotifyAPI.Web/Clients/Interfaces/IArtistsClient.cs index 81a74453..423eede6 100644 --- a/SpotifyAPI.Web/Clients/Interfaces/IArtistsClient.cs +++ b/SpotifyAPI.Web/Clients/Interfaces/IArtistsClient.cs @@ -6,6 +6,7 @@ namespace SpotifyAPI.Web { Task GetSeveral(ArtistsRequest request); + [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716")] Task Get(string artistId); Task> GetAlbums(string artistId);