I write xml doc strings for all of my classes, e.g.:
/// <summary>
/// Executes things
/// </summary>
public class ThingExecutor { }
But I've just realised that the xml documentation string is only visible when that assembly is loaded into my current solution. If I reference that assembly from another project then the those xml strings are not present.
How do I make those strings visible from within other projects?