Prettify

Following stackoverflow’s example, I’ve started using prettify for syntax highlighting on this blog. I’ve used the Google syntax highlighter in the past, but prettify just seems easier as I don’t need to mark it with class names or anything - all I need to do is wrap code in pre... [Read More]
Tags: prettify

Using the WiX Installer

I’ve been playing with the Wix Installer for the last few days, and I’m absolutely amazed by it. It’s a real bastard to get into, but once you’re up and running it’s pretty incredible how much can be customised. There is a LOT of documentation out there, but the most... [Read More]
Tags: wix

Unit Testing and DateTime Comparisons

One thing I’ve found annoying for the long time, is trying to assert DateTime equality when unit testing, particularly when the DateTimes have been parsed from strings in the underlying method. Two DateTime constructs, despite being identical in terms of their values, often won’t assert as being equal and your... [Read More]
Tags: .net

Combining .NET Assemblies with ILMerge

I Used ILMerge today for the first time, and it’s great. Aspnet_merge.exe is actually based on this tool, and it allows you to combine all your assemblies into a single exe or dll - great for simple deployment. [Read More]
Tags: .net