Skip to content

Commit

Permalink
Casually wipes out 15k warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
TheXorog committed Jul 13, 2023
1 parent c014557 commit f1d9e41
Show file tree
Hide file tree
Showing 45 changed files with 157 additions and 59 deletions.
2 changes: 1 addition & 1 deletion DisCatSharp.ApplicationCommands/Context/BaseContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public string FullCommandName
/// <para>Gets the entitlements.</para>
/// <para>This is related to premium subscriptions for bots.</para>
/// <para><note type="warning">Can only be used if you have an associated application subscription sku.</note></para>
/// <see cref="DiscordClient.TryGetPublishedListingsAsync(ulong)"/> for more information.
/// <see cref="DiscordClient.TryGetPublishedListings(ulong, out IReadOnlyList{DiscordStoreSku})"/> for more information.
/// </summary>
[DiscordInExperiment("Currently in closed beta."), Experimental("We provide this type but can't provide support.")]
public List<ulong> Entitlements { get; internal set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Use it on top of your DisCatSharp powered bot and unleash the power of applicati
Documentation: https://docs.dcs.aitsys.dev/articles/modules/application_commands/intro.html
</Description>
<PackageTags>DisCatSharp,Discord API Wrapper,Discord,Bots,Discord Bots,AITSYS,Net6,Net7,Application Commands,Context Menu Commands</PackageTags>
<Nullable>annotations</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 6 additions & 0 deletions DisCatSharp.ApplicationCommands/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,9 @@
[assembly: SuppressMessage("Style", "IDE0060:Remove unused parameter", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.ApplicationCommands.Workers.RegistrationWorker.BuildGlobalDeleteList(DisCatSharp.DiscordClient,System.Collections.Generic.List{DisCatSharp.Entities.DiscordApplicationCommand})~System.Collections.Generic.List{System.UInt64}")]
[assembly: SuppressMessage("Style", "IDE0060:Remove unused parameter", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.ApplicationCommands.Workers.RegistrationWorker.BuildGuildCreateList(DisCatSharp.DiscordClient,System.UInt64,System.Collections.Generic.List{DisCatSharp.Entities.DiscordApplicationCommand})~System.Collections.Generic.List{DisCatSharp.Entities.DiscordApplicationCommand}")]
[assembly: SuppressMessage("Style", "IDE0060:Remove unused parameter", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.ApplicationCommands.Workers.RegistrationWorker.BuildGuildDeleteList(DisCatSharp.DiscordClient,System.UInt64,System.Collections.Generic.List{DisCatSharp.Entities.DiscordApplicationCommand})~System.Collections.Generic.List{System.UInt64}")]
[assembly: SuppressMessage("Usage", "DCS0102:[Discord] Deprecated", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0101:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0103:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0001:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0002:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>")]
1 change: 1 addition & 0 deletions DisCatSharp.CommandsNext/DisCatSharp.CommandsNext.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Note: Requires the Message Content Intent enabled for your discord application.
Documentation: https://docs.dcs.aitsys.dev/articles/modules/commandsnext/intro.html
</Description>
<PackageTags>DisCatSharp,Discord API Wrapper,Discord,Bots,Discord Bots,AITSYS,Net6,Net7,Text Commands</PackageTags>
<Nullable>annotations</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 7 additions & 1 deletion DisCatSharp.CommandsNext/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of the DisCatSharp project, based off DSharpPlus.
// This file is part of the DisCatSharp project, based off DSharpPlus.
//
// Copyright (c) 2021-2023 AITSYS
//
Expand All @@ -25,3 +25,9 @@
[assembly: SuppressMessage("Style", "IDE0046:Convert to conditional expression", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.CommandsNext.Attributes.RequireUserPermissionsAttribute.ExecuteCheckAsync(DisCatSharp.CommandsNext.CommandContext,System.Boolean)~System.Threading.Tasks.Task{System.Boolean}")]
[assembly: SuppressMessage("Performance", "CA1826:Do not use Enumerable methods on indexable collections", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.CommandsNext.Converters.DiscordMemberConverter.DisCatSharp#CommandsNext#Converters#IArgumentConverter<DisCatSharp#Entities#DiscordMember>#ConvertAsync(System.String,DisCatSharp.CommandsNext.CommandContext)~System.Threading.Tasks.Task{DisCatSharp.Entities.Optional{DisCatSharp.Entities.DiscordMember}}")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.CommandsNext.CommandsNextExtension.DefaultHelpModule.DefaultHelpAsync(DisCatSharp.CommandsNext.CommandContext,System.String[])~System.Threading.Tasks.Task")]
[assembly: SuppressMessage("Usage", "DCS0102:[Discord] Deprecated", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0101:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0103:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0001:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0002:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>")]
2 changes: 1 addition & 1 deletion DisCatSharp.Common/DisCatSharp.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ DisCatSharp Common Extension
Common tools for DisCatSharp, like regexes and converters!
</Description>
<PackageTags>DisCatSharp,Discord API Wrapper,Discord,Bots,Discord Bots,AITSYS,Net6,Net7,Common Tools</PackageTags>
<Nullable>enable</Nullable>
<Nullable>annotations</Nullable>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
Expand Down
6 changes: 6 additions & 0 deletions DisCatSharp.Common/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,9 @@
[assembly: SuppressMessage("Style", "IDE0045:Convert to conditional expression", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Common.Utilities.AsyncExecutor.Execute``1(System.Threading.Tasks.Task{``0})~``0")]
[assembly: SuppressMessage("Style", "IDE0062:Make local function 'static'", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Common.Utilities.AsyncExecutor.Execute``1(System.Threading.Tasks.Task{``0})~``0")]
[assembly: SuppressMessage("Style", "IDE0046:Convert to conditional expression", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Common.Utilities.ReflectionUtilities.ToDictionary``1(``0)~System.Collections.Generic.IReadOnlyDictionary{System.String,System.Object}")]
[assembly: SuppressMessage("Usage", "DCS0102:[Discord] Deprecated", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0101:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0103:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0001:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0002:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>")]
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ private IConfiguration HasSectionNoSuffixConfiguration() =>
.AddJsonFile("haphazard-discord.json")
.Build();

#pragma warning disable CS8620 // Argument cannot be used for parameter due to differences in the nullability of reference types.
private IConfiguration SampleConfig() => new ConfigurationBuilder()
.AddInMemoryCollection(new Dictionary<string, string>
{
Expand Down Expand Up @@ -158,6 +159,7 @@ private IConfiguration HasSectionNoSuffixConfiguration() =>
{ "SampleClass:ListTest", "[\"10\",\"20\",\"30\"]" }
})
.Build();
#pragma warning restore CS8620 // Argument cannot be used for parameter due to differences in the nullability of reference types.

[Fact]
public void TestExtractDiscordConfig_Intents()
Expand Down
6 changes: 6 additions & 0 deletions DisCatSharp.Configuration.Tests/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,9 @@
[assembly: SuppressMessage("DocumentationHeader", "ClassDocumentationHeader:The class must have a documentation header.", Justification = "<Pending>", Scope = "type", Target = "~T:DisCatSharp.Configuration.Tests.ConfigurationExtensionTests.SampleClass")]
[assembly: SuppressMessage("DocumentationHeader", "ClassDocumentationHeader:The class must have a documentation header.", Justification = "<Pending>", Scope = "type", Target = "~T:DisCatSharp.Configuration.Tests.ConfigurationExtensionTests.SampleClass2")]
[assembly: SuppressMessage("DocumentationHeader", "MethodDocumentationHeader:The method must have a documentation header.", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0102:[Discord] Deprecated", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0101:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0103:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0001:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0002:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>")]
1 change: 1 addition & 0 deletions DisCatSharp.Configuration/DisCatSharp.Configuration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<PackageId>DisCatSharp.Configuration</PackageId>
<Description>Configuration for the DisCatSharp Hosting Extension.</Description>
<PackageTags>DisCatSharp,Discord API Wrapper,Discord,Bots,Discord Bots,AITSYS,Net6,Net7,Hosting,Web,Configuration</PackageTags>
<Nullable>annotations</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 7 additions & 1 deletion DisCatSharp.Configuration/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of the DisCatSharp project.
// This file is part of the DisCatSharp project.
//
// Copyright (c) 2021-2023 AITSYS
//
Expand All @@ -23,3 +23,9 @@
using System.Diagnostics.CodeAnalysis;

[assembly: SuppressMessage("Style", "IDE0060:Remove unused parameter", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Configuration.ConfigurationExtensions.ConfigPath(Microsoft.Extensions.Configuration.IConfiguration,System.String[])~System.String")]
[assembly: SuppressMessage("Usage", "DCS0102:[Discord] Deprecated", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0101:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0103:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0001:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0002:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>")]
1 change: 1 addition & 0 deletions DisCatSharp.Experimental/DisCatSharp.Experimental.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
Experimental changes for DisCatSharp.
</Description>
<PackageTags>DisCatSharp,Experimental,Discord API Wrapper,Discord,Bots,Discord Bots,AITSYS,Net6,Net7</PackageTags>
<Nullable>annotations</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 8 additions & 0 deletions DisCatSharp.Experimental/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,11 @@
// SOFTWARE.


using System.Diagnostics.CodeAnalysis;

[assembly: SuppressMessage("Usage", "DCS0102:[Discord] Deprecated", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0101:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0103:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0001:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0002:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>")]
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<PackageId>DisCatSharp.Hosting.DependencyInjection</PackageId>
<Description>Dependency Injection for the DisCatSharp Hosting Extension.</Description>
<PackageTags>DisCatSharp,Discord API Wrapper,Discord,Bots,Discord Bots,AITSYS,Net6,Net7,Hosting,Web,Dependency Injection</PackageTags>
<Nullable>annotations</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 4 additions & 2 deletions DisCatSharp.Hosting.Tests/ExtensionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ private Dictionary<string, string> DefaultDiscord() =>
{ "DisCatSharp:Discord:Intents", "AllUnprivileged" }
};

#pragma warning disable CS8620 // Argument cannot be used for parameter due to differences in the nullability of reference types.
public IConfiguration DiscordInteractivityConfiguration() => new ConfigurationBuilder()
.AddInMemoryCollection(new Dictionary<string, string>(this.DefaultDiscord())
{
Expand All @@ -78,6 +79,7 @@ private Dictionary<string, string> DefaultDiscord() =>
public IConfiguration DiscordOnlyConfiguration() => new ConfigurationBuilder()
.AddInMemoryCollection(this.DefaultDiscord())
.Build();
#pragma warning restore CS8620 // Argument cannot be used for parameter due to differences in the nullability of reference types.

public IConfiguration DiscordInteractivityAndLavaLinkConfiguration() => new ConfigurationBuilder()
.AddJsonFile("interactivity-lavalink.json")
Expand Down Expand Up @@ -110,11 +112,11 @@ public void DiscoverExtensions_InteractivityAndLavaLink()

Assert.Equal(typeof(InteractivityConfiguration), first.Value.ConfigType);
Assert.Equal(typeof(InteractivityExtension), first.Value.ImplementationType);
Assert.True("InteractivityExtension".Equals(first.Key, StringComparison.OrdinalIgnoreCase));
Assert.Equal("InteractivityExtension", first.Key, ignoreCase: true);

Assert.Equal(typeof(LavalinkConfiguration), last.Value.ConfigType);
Assert.Equal(typeof(LavalinkExtension), last.Value.ImplementationType);
Assert.True("LavalinkExtension".Equals(last.Key, StringComparison.OrdinalIgnoreCase));
Assert.Equal("LavalinkExtension", last.Key, ignoreCase: true);
}
}

Expand Down
6 changes: 6 additions & 0 deletions DisCatSharp.Hosting.Tests/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,9 @@
[assembly: SuppressMessage("DocumentationHeader", "ConstructorDocumentationHeader:The constructor must have a documentation header.", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Hosting.Tests.Bot.#ctor(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.ILogger{DisCatSharp.Hosting.Tests.Bot},System.IServiceProvider,Microsoft.Extensions.Hosting.IHostApplicationLifetime)")]
[assembly: SuppressMessage("DocumentationHeader", "ConstructorDocumentationHeader:The constructor must have a documentation header.", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Hosting.Tests.BotTwoService.#ctor(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.ILogger{DisCatSharp.Hosting.Tests.BotTwoService},System.IServiceProvider,Microsoft.Extensions.Hosting.IHostApplicationLifetime)")]
[assembly: SuppressMessage("DocumentationHeader", "ConstructorDocumentationHeader:The constructor must have a documentation header.", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Hosting.Tests.MyCustomBot.#ctor(Microsoft.Extensions.Configuration.IConfiguration,Microsoft.Extensions.Logging.ILogger{DisCatSharp.Hosting.Tests.MyCustomBot},System.IServiceProvider,Microsoft.Extensions.Hosting.IHostApplicationLifetime)")]
[assembly: SuppressMessage("Usage", "DCS0102:[Discord] Deprecated", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0101:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0103:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0001:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0002:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>")]
2 changes: 2 additions & 0 deletions DisCatSharp.Hosting.Tests/HostTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,12 @@ private Dictionary<string, string> DefaultDiscord() =>
{ "DisCatSharp:Using", "[\"DisCatSharp.Interactivity\", \"DisCatSharp.Lavalink\"]" },
};

#pragma warning disable CS8620 // Argument cannot be used for parameter due to differences in the nullability of reference types.
IHostBuilder Create(Dictionary<string, string> configValues) =>
Host.CreateDefaultBuilder()
.ConfigureServices(services => services.AddSingleton<IDiscordHostedService, Bot>())
.ConfigureHostConfiguration(builder => builder.AddInMemoryCollection(configValues));
#pragma warning restore CS8620 // Argument cannot be used for parameter due to differences in the nullability of reference types.

IHostBuilder Create(string filename) =>
Host.CreateDefaultBuilder()
Expand Down
1 change: 1 addition & 0 deletions DisCatSharp.Hosting/DisCatSharp.Hosting.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<PackageId>DisCatSharp.Hosting</PackageId>
<Description>Hosting Extension for DisCatSharp.</Description>
<PackageTags>DisCatSharp,Discord API Wrapper,Discord,Bots,Discord Bots,AITSYS,Net6,Net7,Hosting,Web</PackageTags>
<Nullable>annotations</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 7 additions & 1 deletion DisCatSharp.Hosting/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This file is part of the DisCatSharp project.
// This file is part of the DisCatSharp project.
//
// Copyright (c) 2021-2023 AITSYS
//
Expand Down Expand Up @@ -35,3 +35,9 @@
[assembly: SuppressMessage("Usage", "CA2254:Template should be a static expression", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Hosting.BaseHostedService.InitializeExtensions(DisCatSharp.DiscordClient)~System.Threading.Tasks.Task")]
[assembly: SuppressMessage("Usage", "CA2254:Template should be a static expression", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Hosting.DiscordHostedService.ConfigureAsync~System.Threading.Tasks.Task")]
[assembly: SuppressMessage("Usage", "CA2254:Template should be a static expression", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Hosting.DiscordShardedHostedService.ConfigureAsync~System.Threading.Tasks.Task")]
[assembly: SuppressMessage("Usage", "DCS0102:[Discord] Deprecated", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0101:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0103:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0001:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0002:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>")]
1 change: 1 addition & 0 deletions DisCatSharp.Interactivity/DisCatSharp.Interactivity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Unleash the full power of discord commands.
Documentation: https://docs.dcs.aitsys.dev/articles/modules/interactivity.html
</Description>
<PackageTags>DisCatSharp,Discord API Wrapper,Discord,Bots,Discord Bots,AITSYS,Net6,Net7,Pagination,Reactions,Buttons,Interactive Commands,Interactivity,Message Components</PackageTags>
<Nullable>annotations</Nullable>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 6 additions & 0 deletions DisCatSharp.Interactivity/GlobalSuppressions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,9 @@
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Interactivity.InteractivityExtension.SplitString(System.String,System.Int32)~System.Collections.Generic.List{System.String}")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Interactivity.EventHandling.Paginator.PaginateAsync(DisCatSharp.Interactivity.EventHandling.IPaginationRequest,DisCatSharp.Entities.DiscordEmoji)~System.Threading.Tasks.Task")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>", Scope = "member", Target = "~M:DisCatSharp.Interactivity.EventHandling.Paginator.ResetReactionsAsync(DisCatSharp.Interactivity.EventHandling.IPaginationRequest)~System.Threading.Tasks.Task")]
[assembly: SuppressMessage("Usage", "DCS0102:[Discord] Deprecated", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0101:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0103:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0001:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Usage", "DCS0002:[Discord] InExperiment", Justification = "<Pending>")]
[assembly: SuppressMessage("Performance", "CA1822:Mark members as static", Justification = "<Pending>")]
Loading

0 comments on commit f1d9e41

Please sign in to comment.