I have TypeGen 2.1.1 package installed and am using version 2.1.1 of the CLI. I created the GenerationSpec below and added it to the root of my project. ``` public class MyGenerationSpec : GenerationSpec { public MyGenerationSpec() { AddEnum<FarmDTOs.Loss.Causes>(); } } ``` FarmDTOs.Loss.Causes is an enum inside of a class which resides in a Nuget package: ``` namespace FarmDTOs { public class Loss { public string Id; public DateTime Date; public Causes Cause; public int Amount; public Loss(); public enum Causes { Unspecified = 0, Earthquake = 1, Fire = 2, } } } ``` When I run `dotnet typegen generate` I get the following messages: `Generating files for project "."...` `Process is terminating due to StackOverflowException.` Any ideas as to what would be causing this?