Author Archives: erictummers

Unknown's avatar

About erictummers

Working in a DevOps team is the best thing that happened to me. I like challenges and sharing the solutions with others. On my blog I’ll mostly post about my work, but expect an occasional home project, productivity tip and tooling review.

Visual Studio 2012 upgrade from 2010

First some tips from Scott Hanselman to get the look-and-feel back. Next to replace the pre- and postbuild macro with an add-in. The template takes care of the plumbing and running/debugging will make it available for use. Make sure to … Continue reading

Posted in Tooling | Tagged , , , , , , , , , , | Leave a comment

15 minute ssd upgrade

Ever since the native boot blog post from Scott Hanselman I’ve been running my Windows from a VHD. When my new machine arrived I upgraded to VHDX as that would support TRIM. I was preparing my machine for a SSD … Continue reading

Posted in Tooling | 2 Comments

Visual Studio 2010 profiler on Windows 8 issue

I’ve been using Microsoft Visual Studio 2010 on my Windows 8 machine for a while now. Never had an issue until today when I tried to start the profiler. Turns out the driver it uses is not compatible with Windows … Continue reading

Posted in Tooling | Tagged , , , , | Leave a comment

AmbiguousMatchException on mock creation

See simple code below of ClassToTest with two public constructors with one parameter. My favorite mocking framework (Rhino Mocks) is unable to determine which constructor to use for mocking. The CreatePartialMock method throws an AmbiguousMatchException. The workaround for this is … Continue reading

Posted in Test | Tagged , , , | Leave a comment

Mobile building blocks

By using partial classes I can create libraries for every mobile platform that share a common interface. The component- / classdiagram below is a concept of this principle. The light yellow blocks are generic code and the purple blocks are … Continue reading

Posted in Development | Tagged , , , , , , , , | Leave a comment