SOLVED!
I was looking into some more of your suggestions and decided to change the version of my support DLL.Suddenly cats and dogs were living together and my code showed changes.
Since it would be a pain to change the version every time I built, I implemented some auto versioning via ms magic in my AssemblyInfo.cs
// You can specify all the values or you can default the Build and Revision Numbers// by using the '*' as shown below:// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("2016.07.*")] [assembly: AssemblyFileVersion("2016.07.*")]
Matthew, thank you so much for your help on this. I owe you either a beer or ice cream. Your choice.