DotNetAnalyzers / AspNetCoreAnalyzers

MIT License
62 stars 4 forks source link

ASP007 false positive when attributes used #103

Open dzmitry-lahoda opened 2 years ago

dzmitry-lahoda commented 2 years ago
        [HttpGet("/foobar/servers/{poolIdOrName}/level/{levelid}")]
        public async Task<IEnumerable<FooBar>> GetFooBar(
            [Range(1, int.MaxValue)] int levelid,
            [Required][MinLength(1)] string poolIdOrName)

will raise ASP007, seems because of attributes