I have a very simple class
public class Preferences
{
public bool RepeatInfinite { get; set; }
public int RepeatCount { get; set; }
}
If I put this class in another assembly it shows up in the Settings tab when you browse for the type. If I however put this class in the same assembly as the running program, I can't see it or browse for it. What's going on here?