Sören Nils Kuklau
Sören Nils Kuklau
I have a C# wrapper around a native macOS library for Xamarin, and want it to work with .NET 6 as well. It also has a package reference to a...
Picker's `ItemsSource` property [is `IList`](https://github.com/xamarin/Xamarin.Forms/blob/ad71f116ed5a5d8402bbd25dbf0b96bb7821d5e1/Xamarin.Forms.Core/Picker.cs#L30) instead of `IEnumerable`. If we use an `IList`, CollectionViewSource will switch to `ListCollectionView` anyway, which internally provides an `IList`. This PR just exposes that externally...
### Is your feature request related to a problem? Please describe. Currently, the recommended approach to authentication is an API key. However, this only enables you to set one API...
It would be great if I could take a screenshot to the clipboard (by holding ⌃), paste it into a Monal conversation window, and have it sent (possibly using a...
If I use a `Directory.Packages.props` with content like: ```xml true ``` And then reference that package in my `csproj` (notice that leaving out the version is mandatory in this case):...
### Is your feature request related to a problem? Please describe. I would like to use C# 14's extension properties, e.g. ```csharp var s = ""; Console.WriteLine(s.IsFancy); public static class...