I had some spare time and decided to add support for Visual Studio 2019 to Righthand Dataset Debugger Visualizer. Along the path I decided to upgrade underlying DevExpress […]
Switching from packages.config to PackageReference for .NET projects
Recently NuGet introduced a new way of handling packages within a project. Instead of stuffing references in a separate packages.config file, it introduced storing package references right in […]
About in parameter modifier on value type, properties and defensive copy
in parameter modifier was introduced in C# 7.2. It lets you pass (value) types by reference but at the same time protect you against modifying the actual instance. […]
Troubleshooting Live Unit Test build failure
It happens that I have a .NET 4.6.2 solution including Unit Test projects that builds just fine. However, when starting Live Unit Test it would complain build completed […]
More about SharpRedux
Since last post about SharpRedux I added GettingStarted sample, did a bit of refactoring and added quite some documentation. Go check the documentation and play with both samples. […]
Quick introduction to Righthand.SharpRedux library
I’ve been experimenting with a redux implementation for .net lately and here is the current state. The core library is quite functional and ready for a bit more […]
Mono, Docker, 3.14, WebAPI on NTK 2016
This year I’ll be presenting at Microsoft’s NT Konferenca as I do every year. As the topic I’ve picked my experience of using Docker I gathered from a […]
TwoWay binding trap on Windows Store apps
Imagine having a TextBox bound to a viewmodel’s property in a TwoWay mode. In between a converter that does possibly an asymmetric conversion – in this case the […]
NCrunch and SQLite testing problem and solution
I have some NUnit tests on .net 4.5.1 class library against PCL and both use SQLite.Net PCL, the former uses its Win32 platform.When running from a test runner […]