VERNOU Cédric

Results 53 comments of VERNOU Cédric

@Hrxn A **.NET Runtime** version can have multiple **SDK version**. See [How .NET is versioned](https://learn.microsoft.com/en-us/dotnet/core/versions/#versioning-details) for more information. It's the case with `.NET 8.0.2` that has the two SDK versions...

I have a similar need. We have a build YAML (without release) to publish a product with the parameter `beta`. When `beta` is true, this publish a beta version of...

No, I didn't watch the video... that is a mistake. Like you suggested, I encapsulate the release notes task in a dummy stage. It's work, thank.

The default value of `MudDataGrid.FilterMode` is `DataGridFilterMode.Simple`. In this mode, all filters are managed in one popover in the data grid, that is displayed under the first column. If you...

In Open API Specification, it isn't possible to specify two content for the same status code. See [OpenAPI Specification](https://swagger.io/specification/), the chapter **Responses Object**. Moreover, in the expected json : ```json...

@jasonsaayman, you merged the fix in may. Do you when a new release 0.X will be deployed?

Same with "Microsoft Visual Studio Enterprise 2019 Version 16.11.16" and "Command Explorer version 1.0.22".

It's reproductive from the example in the doc : [Table > Server Side Filtering, Sorting and Pagination](https://mudblazor.com/components/table#server-side-filtering,-sorting-and-pagination) Go on the second page. Open the panel "Network" in the web developer...

Also, the doc present incoherent return for `Main.Program` : ```csharp // First example class Program { static async Task Main(string[] args) { ... return await rootCommand.InvokeAsync(args); } } // Second...