• Transactions and Unit Testing with NUnit (part 2)

    The good news - I got the transaction unit testing code to work. Two traps that caught me out:

    1. Make sure the test fixture class inherits from the class defined in the transaction library assembly.
    2. Make sure your machine has a valid DNS entry! Turns out mine didn’t as I’d reinstalled the OS a couple of months back, and our Active Directory DNS had kept the old record with a SID for the old machine - hence the new install had a different SID and wasn’t allowed to update the DNS record. This had the effect that the remote server could not resolve my workstation to get the RPC conversation working properly.

  • Code analysis without buying Visual Studio Team System

    If you download the Microsoft® Windows® Software Development Kit (SDK) for Beta 2 of Windows Vista and WinFX Runtime Components, then you actually get the C++ compiler that includes support for the “preFAST” /analyze code analysis feature.

    Normally, you’d only get this if you purchased Visual Studio Team System for lots of $$$.

    I installed it, and managed to get Mozilla Firefox compiled (just a couple of patches required - problems with the new headers in the SDK conflicting with Mozilla code).

    The easiest way to analyze the code is to edit your mozconfig file and add the following:

    ac_add_options --enable-optimize="-analyze"

    I’ve uploaded a build log that includes the various warnings. Many are spurious, so the trick is to weed out the noise and find the ones that are relevant.

  • Customising Visual Studio.NET 2005 for Single and Dual Monitors

    I have been using a dual-monitor setup for a couple of years now, and find it a very practial way to develop.

    I also work from home, and use Remote Desktop (RDP) to connect back to my workstation at work. The problem is that RDP only works on a single screen - so when you launch Visual Studio, all the windows that were anchored on the second screen now are messed up.

    The solution is to use the Import and Export Settings wizard to save two window layouts - one for a single screen and one for a dual screen. You can then load these settings to reset the window layout for the appropriate monitor.

    To automate the process even further, you can create some Visual Studio Macros and assign them to a custom toolbar so that you can do it all with a single click of your mouse.

    Here’s my macro code that loads the two different window settings:

    Sub RDPLayout()

        DTE.ExecuteCommand(“Tools.ImportandExportSettings”, “/import:”“U:\My Documents\Visual Studio 2005\Settings\rdp.vssettings”””)

    End Sub

    Sub DualMonitorLayout()

        DTE.ExecuteCommand(“Tools.ImportandExportSettings”, “/import:”“U:\My Documents\Visual Studio 2005\Settings\dual monitor.vssettings”””)

    End Sub