Currently I am using 2 references in my C# project:
using Czm.Perimetry.Analysis.Core;
using Czm.Perimetry.Analysis.IO;
And when I look at my project in Visual Studio no errors come up. However when I run the project I get:
Error CS0246 The type or namespace name 'Czm' could not be found
(are you missing a using directive or an assembly reference?)
I don't understand what's going on, and nothing else with the project comes up with an error.