ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/gr2lib/trunk/gr2lib_UnitTest/Program.cs
(Generate patch)

Comparing trunk/gr2lib_UnitTest/Program.cs (file contents):
Revision 37 by william, Wed Jul 14 18:46:06 2010 UTC vs.
Revision 38 by william, Wed Jul 14 18:50:20 2010 UTC

--- 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
         }