From: Richard B. <rb...@us...> - 2005-04-11 00:32:34
|
Update of /cvsroot/jcframework/dotnet/Providers/AF_MaxDB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv815/Providers/AF_MaxDB Modified Files: AF_MaxDB.vbproj AssemblyInfo.vb CMaxDBDatabase.vb Log Message: Name changes to bring class library into line with Microsoft naming standards. FxCop directory added Nunit tests moved into main repository Index: AF_MaxDB.vbproj =================================================================== RCS file: /cvsroot/jcframework/dotnet/Providers/AF_MaxDB/AF_MaxDB.vbproj,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- AF_MaxDB.vbproj 7 Feb 2005 07:37:37 -0000 1.1 +++ AF_MaxDB.vbproj 11 Apr 2005 00:31:46 -0000 1.2 @@ -20,8 +20,8 @@ OptionCompare = "Binary" OptionExplicit = "On" OptionStrict = "Off" - RootNamespace = "AF_MaxDB" - StartupObject = "" + RootNamespace = "AtomsFramework.Providers.MaxDB" + StartupObject = "AtomsFramework.Providers.MaxDB.(None)" > <Config Name = "Debug" Index: CMaxDBDatabase.vb =================================================================== RCS file: /cvsroot/jcframework/dotnet/Providers/AF_MaxDB/CMaxDBDatabase.vb,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- CMaxDBDatabase.vb 6 Apr 2005 06:34:22 -0000 1.2 +++ CMaxDBDatabase.vb 11 Apr 2005 00:31:46 -0000 1.3 @@ -1,7 +1,7 @@ Option Strict Off Option Explicit On -Imports AF_ODBC +Imports AtomsFramework.Providers.ODBC '''----------------------------------------------------------------------------- ''' Project : AToMSFramework @@ -9,7 +9,7 @@ ''' '''----------------------------------------------------------------------------- ''' <summary> -''' Implementation of CRelationalDatabase for MaxDB Servers. +''' Implementation of RelationalDatabase for MaxDB Servers. ''' </summary> ''' <remarks>This class contains the specific functionality required for the ''' framework to interact with MaxDB databases. The only .NET provider is an ODBC connection Index: AssemblyInfo.vb =================================================================== RCS file: /cvsroot/jcframework/dotnet/Providers/AF_MaxDB/AssemblyInfo.vb,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- AssemblyInfo.vb 6 Apr 2005 06:34:22 -0000 1.2 +++ AssemblyInfo.vb 11 Apr 2005 00:31:46 -0000 1.3 @@ -29,5 +29,5 @@ ' You can specify all the values or you can default the Build and Revision Numbers ' by using the '*' as shown below: -<Assembly: AssemblyVersion("2.1.0.0")> -<Assembly: AssemblyFileVersion("2.1.0.0")> +<Assembly: AssemblyVersion("2.2.0.0")> +<Assembly: AssemblyFileVersion("2.2.0.0")> |