article

Error VSP1048 when trying to instrument assembly created using Visual Studio 2019

A brief note on assemblies compiled with Visual Studio 2019 and their compatibility with older Visual Studio tooling.

avatar
Richard Moss
article

Generating code using T4 templates

Recently I was updating a library that contains two keyed collection classes. These collections aren't the usual run-of-the-mill collections as they need to be able to support duplicate keys. Normally I'd inherit from `KeyedCollection` but as with most collection implementations, duplicate keys are not permitted in this class. This article describes how I used T4 templates to dynamically generate my custom collection classes without requiring a public base class.

avatar
Richard Moss
article

Add Projects Extension - 1.0.1.0

The Add Projects extension for Visual Studio has been updated to version 1.0.1.0, adding a filter option to make it easier to find specific projects in a long list.

avatar
Richard Moss
article

Visual Studio Extension for adding multiple projects to a solution

This article describes a simple extension that can be used to add multiple projects at once to a Visual Studio solution.

avatar
Richard Moss