Sander ten Brinke

Results 65 issues of Sander ten Brinke

### Description I would love to be able to set queryparameters in the route for a ShellContent instance so that I can re-use existing pages by passing different data to...

proposal/open
area/shell 🐢

**Description** An example, though others can be found as well: https://github.com/meilisearch/meilisearch-dotnet/blob/main/tests/Meilisearch.Tests/IndexTests.cs#L167 This line allows the `Limit` property to be `1` or greater. As far as I know, the result will...

**Description** Currently the test project uses `.NET Core 3.1`. [This is EOL in December](https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core). Because of this, I think it'd be a good idea to migrate the test project to...

Hello! I would like to add CI support in Azure Pipelines. This means I need to execute `start-app` in my CI pipeline and then add the generated `.exe` to the...

Hello! I have been playing around with your library this afternoon and it works really well! TL;DR: Will you make this library support .NET Core 3.0 because this will have...

Hello! I have noticed that `GetAsync` throws a POST 409 error. This means that the table or record already exists. I believe a GET should not use a POST. If...

Hi! I've written the following code which I find to be very readable: ```csharp [HttpGet("dosinglanes")] public async Task GetProductsOnDosingLanes() { await Task.CompletedTask; return Ok(); } ``` However, `csharpier` turns this...

type:enhancement
priority:medium

## Situation I'm trying to implement the [ignore formatting documentation](https://csharpier.com/docs/Ignore) for the following code: ```csharp [HttpDelete("{id:int:min(1)}/something")] [ProducesResponseType(StatusCodes.Status204NoContent)] [SwaggerResponse(StatusCodes.Status400BadRequest, typeof(ProblemDetails), Description = "Will be returned validation fails in this API")] [SwaggerResponse(StatusCodes.Status400BadRequest,...

type:enhancement

Hi! I [followed the advice](https://csharpier.com/docs/IntegratingWithLinters) about overriding editorconfig changes by adding `dotnet_diagnostic.IDE0055.severity = none` to the editorconfig. I don't use StyleCop (as far as I know) so I didn't apply...

**Description/Screenshot** **IMPORTANT:** I created this issue with the assumption that my issues lay elsewhere. The comments ended up helping find the root cause of this issue and uncovered the bug....

enhancement