dotnet
dotnet copied to clipboard
.NET Community Toolkit is a collection of helpers and APIs that work for all .NET developers and are agnostic of any specific UI platform. The toolkit is maintained and published by Microsoft, and par...
### Describe the bug When creating Memory2D from a MemoryManager the internal offset should be in bytes but it is just this index offset (see line 381). The created Memory2D...
### Overview It would be really nice if there is an overload for the StringPool.GetOrAdd method which accepts a custom InterpolatedStringHandler. This InterpolatedStringHandler would create a ReadOnlySpanand use this to...
### Describe the bug I have a solution consisting of multiple projects. Some are libraries and some are desktop applications based on WPF/XAML. All projects use the code MVVM source...
**Closes #451** I've added a pragma restore directive for the CS0108 warning into the ObservableObject class source generator. I haven't updated the tests to support the newly generated code yet....
### Describe the bug My project solution (GitExtensions.sln) can be built without issues in VS. But the `dotnet build` fails with an unhandled `NotImplementedException`: ``` PS D:\Build\gitextensions3_dev> dotnet build MSBuild...
### Describe the bug The new collection expression syntax that is going to be introduced in .NET 8.0 is not supported in attributes marked 'property' (passed from the field to...
### Describe the bug I have a MAUI app on Windows which shows a list of Buttons with a Click Command Binding to the ViewModel via ```xml
### Overview For instance, I already have a class I'm using which inherits from `INotifyPropertyChanged`. In my scenario, it's `ObservableCollection`, so I can't modify it as it's in the BCL....
### Describe the bug The famous 8.x bug of the invalid property during editing now (8.2.1) seems to be present only for RelayCommand:  As you can see,...
### Overview To simplify the Observable Property attribute required for all properties inside the class. Current Usage: ``` public partial class AddContact : ObservableObject { [ObservableProperty] private Guid id; [ObservableProperty]...