DotNetAnalyzers / AspNetCoreAnalyzers

MIT License
62 stars 4 forks source link

Default value must be last segment? #43

Open JohanLarsson opened 5 years ago

JohanLarsson commented 5 years ago
[HttpGet("api/xs/{x=2}/meh")]
public ActionResult<string> Get(int x)
{
    ...
}