diff --git a/.editorconfig b/.editorconfig index d3a1461..dd47b22 100644 --- a/.editorconfig +++ b/.editorconfig @@ -4,6 +4,7 @@ charset = utf-8-bom [*.cs] +dotnet_diagnostic.S6934.severity = suggestion dotnet_diagnostic.S6967.severity = suggestion dotnet_diagnostic.ASP0023.severity = suggestion dotnet_diagnostic.CA1510.severity = suggestion diff --git a/src/DNTCaptcha.Core/DNTCaptcha.Core.csproj b/src/DNTCaptcha.Core/DNTCaptcha.Core.csproj index be07db8..45cde0d 100644 --- a/src/DNTCaptcha.Core/DNTCaptcha.Core.csproj +++ b/src/DNTCaptcha.Core/DNTCaptcha.Core.csproj @@ -1,7 +1,7 @@ DNTCaptcha.Core is a captcha generator and validator for ASP.NET Core applications. - 5.2.6 + 5.2.7 Vahid Nasiri net8.0;net7.0;net6.0; true diff --git a/src/DNTCaptcha.Core/DNTCaptchaImageController.cs b/src/DNTCaptcha.Core/DNTCaptchaImageController.cs index e79cf47..89f6acb 100644 --- a/src/DNTCaptcha.Core/DNTCaptchaImageController.cs +++ b/src/DNTCaptcha.Core/DNTCaptchaImageController.cs @@ -23,7 +23,6 @@ namespace DNTCaptcha.Core; /// DNTCaptcha Image Controller /// [AllowAnonymous] -[Route("[controller]")] #if NET7_0 || NET8_0 [EnableRateLimiting(DNTCaptchaRateLimiterPolicy.Name)] #endif