Sean O'Brien

Results 5 comments of Sean O'Brien

I just had the same issue and found that you need to add a reference to https://www.nuget.org/packages/TestCentric.Metadata/ to your project FYI I found this out by checking the logs and...

I've just done a quick test replacing bool with this and it doesn't break any tests: ```public class CarouselBulletItem { public CarouselBulletItem(bool selected) { Selected = selected; } public CarouselBulletItem(T...

Generally if you are working with the reactive extensions then it is preferable to use IObservable, more for consistencies sake then anything else. So when using ReactiveUI, this would be...

Good catch! Looking at the samples I think these are the only return types: ``` Task Task Task Task Observable Observable Observable ``` Note that there is no generic System.Observable...