Category Archives: Development

Dotnet development

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

Remote debugger setup

Setting up the remote debugger from Windows 8 (Visual Studio) to Windows XP SP3 (Program) was a fight, but I won. Read my steps below. Program machine ~ virtualxp Add a user for remote debugging that will be available on … Continue reading

Posted in Development | Tagged , , , , , , | 2 Comments

ILMerge alternative with embedded resources for class library

In my previous post I pointed out how to implement the Jeffrey Richter alternative to ILmerge on WPF applications. Now I want to show you how to do this with class libraries using module initializers tool from Einar Egilsson. Again … Continue reading

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

ILMerge alternative with embedded resources

We use ILMerge to merge a lot of assemblies to a single one for simpler deployment. The result is not compatible with Mono and has issues with WPF. “… ILMerge works only on Windows-based platforms. It does not yet support … Continue reading

Posted in Development | Tagged , , , , , , , , | 3 Comments

switch code snippet power

Today I discovered the code snippet with the best timesaving ever: switch. You can use it from the snippet menu (CTRL + K, X) or you can simply type switch and use code completion (CTRL + SPACE and TAB) Then … Continue reading

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