--- trunk/gr2lib_UnitTest/Program.cs 2010/07/14 18:49:23 37 +++ trunk/gr2lib_UnitTest/Program.cs 2010/07/14 18:50:20 38 @@ -19,15 +19,15 @@ namespace gr2lib_UnitTest { // the loaded version does not match Console.WriteLine("Warning:\n" + - "\t Loaded Granny2 DLL Version: " + _version.APIVersion.Version + "\n" + - "\t Expected Version: " + _version.ExpectedAPIVersion.Version); + "\t Loaded Granny2 DLL Version: " + _version.apiversion.Version + "\n" + + "\t Expected Version: " + _version.expectedapiversion.Version); // return from void to exit application return; } else { // the loaded version matches - Console.WriteLine("Loaded granny2.dll: " + _version.APIVersion.Version); + Console.WriteLine("Loaded granny2.dll: " + _version.apiversion.Version); } // if we have arrived at this point, the loaded api version matches the what the library was built against }