Valters Melnalksnis
Valters Melnalksnis
Seems like this issue is still relevant in 1.19.3. Both PRs mentioned in this issue seem to be left open with all checks passing and no unresolved comments, is there...
I checked the source code, and I guess what's missing is an `else` clause for this `if` statement https://github.com/canton7/PropertyChanged.SourceGenerator/blob/94690bbaa71d8e7c6c1bc9e7e3b3f63b4b15dbc6/src/PropertyChanged.SourceGenerator/Generator.cs#L130C11-L130C11. Something like ```csharp if (interfaceAnalysis.RaiseMethodType != RaisePropertyChangedMethodType.Override) { // existing logic...
I guess there have been more fixes since, because the nightly version correctly generated coverage where the current release generated 0% coverage. Any updates on when the next release is...
Seems that this is related to https://github.com/dotnet/runtime/issues/92345, and the workaround is adding `true` to the publish project. However, that enables it everything, not only Swashbuckle. It is recommended to switch...
@quality-leftovers And how do you handle the Swagger UI? Currently the exception happens in the `RespondWithIndexHtml` method, so I don't see how using the CLI to generate the spec fixes...
@cijothomas I'm having similiar issues, where publishing the application with `-r win10-x64` everything works as expected, but with `-r linux-x64` nothing is exported. I also tried creating the `OTEL_DIAGNOSTICS.json` file,...
I have another workaround without using the dispatcher. It requires the wrapper I mentioned in [this discussion](https://github.com/AvaloniaUI/Avalonia/discussions/11907#discussioncomment-6300413), and with a few changes it works as expected: ```csharp public DataGridItemCollectionView Persons...
@wsficke I forgot to add `DataGrid.CanUserSortColumns = false;` in the above example. Using this code, after sorting a column and clicking the button, the sorting is reset and cannot be...
Here's examples with `DataGridCollectionView` wrapper where this works as expected, both in code-behind and with a view model. [SortClearTest.zip](https://github.com/AvaloniaUI/Avalonia/files/11946632/SortClearTest.zip) [SortClearTest_ViewModel.zip](https://github.com/AvaloniaUI/Avalonia/files/11946634/SortClearTest_ViewModel.zip)
I also encountered this issue after switching to .NET 8, but only when running a published application, not in tests. Adding `false` to the project that was using `Dapper` was...