Kovács Ádám
Kovács Ádám
A get-only property can not be set but if it is an ICollection and the constructor initialized it we can copy the deserialized items with Add. This yaml currently can't...
Currently Tuples are not handled so great. For example I can subscribe to an IObservable like this ``` observable.Subscribe( ((int, int) tuple) => Console.WriteLine(tuple.Item1 + tuple.Item2) ); ``` With the...
Currently with PropertyCallMethodAttribute we can add method calls for property setters but getters will always only use the backing field. Please add an other attribute for getter to support lazy...
The descriptions in the documentation in Enviroment Variables section are mixed up.
The extension methods doesn't have an overload with ReadOnlyObservableCollection. As ReadOnlyObservableCollection does not inherit from ObservableCollection we have to specify type parameters (or create our own extension methods for ReadOnlyObservableCollection).
Using this code, the source generator does not generate anything: ```csharp [GenerateOneOf] public partial class Result : OneOfBase { } [GenerateOneOf] public partial class Result : OneOfBase { } ```...
If a test file contains file scoped namespace in a mstest project, tests are reported failing although they do pass. As it turns out at the "intermediate results" step the...
**Describe the bug** When using `showWholeGraph` the graph is the commits panel works as expected, but when opening the commits of a branch (so pressing Enter on a branch name)...
## Description The file formatter currently strips all the folders from the path if the whole path is too long. When there are multiple files with the same name the...