[Quantproject-developers] QuantProject/b2_DataAccess DataAccess_SD.csproj, 1.4, 1.5
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-12-30 00:06:37
|
Update of /cvsroot/quantproject/QuantProject/b2_DataAccess In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv14957/b2_DataAccess Modified Files: DataAccess_SD.csproj Log Message: - b2_DataAccess\DataBaseLocator.cs has been moved to b2_DataAccess\ConfigurationManagement\AccessDataBaseLocator.cs - ConfigurationManagement\ConfigManager.cs has been added - ConfigurationManagement\DbType.cs has been added - ConfigurationManagement\DbTypeChooser.cs has been added - ConfigurationManagement\DbTypeChooser.Designer.cs has been added - ConfigurationManagement\MySqlConnectionForm.cs has been added - ConfigurationManagement\MySqlConnectionForm.Designer.cs has been added - DbCommandBuilderProvider.cs has been added - DbCommandProvider.cs has been added - DbDataAdapterProvider.cs has been added Index: DataAccess_SD.csproj =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b2_DataAccess/DataAccess_SD.csproj,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DataAccess_SD.csproj 12 Nov 2008 20:34:34 -0000 1.4 --- DataAccess_SD.csproj 30 Dec 2008 00:06:27 -0000 1.5 *************** *** 5,9 **** <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{3D38C64D-1118-4C16-A88E-5F2FFD6481BA}</ProjectGuid> ! <RootNamespace>DataAccess</RootNamespace> <AssemblyName>QuantProject.DataAccess</AssemblyName> <OutputType>Library</OutputType> --- 5,9 ---- <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{3D38C64D-1118-4C16-A88E-5F2FFD6481BA}</ProjectGuid> ! <RootNamespace>QuantProject.DataAccess</RootNamespace> <AssemblyName>QuantProject.DataAccess</AssemblyName> <OutputType>Library</OutputType> *************** *** 38,42 **** --- 38,44 ---- </PropertyGroup> <ItemGroup> + <Reference Include="MySql.Data" /> <Reference Include="System" /> + <Reference Include="System.Configuration" /> <Reference Include="System.Data" /> <Reference Include="System.Drawing" /> *************** *** 47,54 **** <Compile Include="AssemblyInfo.cs" /> <Compile Include="BarFieldNames.cs" /> <Compile Include="ConnectionProvider.cs" /> <Compile Include="DataBase.cs" /> - <Compile Include="DataBaseLocator.cs" /> <Compile Include="DataBaseVersionManager.cs" /> <Compile Include="OleDbSingleTableAdapter.cs" /> <Compile Include="QuoteField.cs" /> --- 49,67 ---- <Compile Include="AssemblyInfo.cs" /> <Compile Include="BarFieldNames.cs" /> + <Compile Include="ConfigurationManagement\AccessDataBaseLocator.cs" /> + <Compile Include="ConfigurationManagement\ConfigManager.cs" /> + <Compile Include="ConfigurationManagement\DbType.cs" /> + <Compile Include="ConfigurationManagement\DbTypeChooser.cs" /> + <Compile Include="ConfigurationManagement\DbTypeChooser.Designer.cs" /> + <Compile Include="ConfigurationManagement\MySqlConnectionForm.cs" /> + <Compile Include="ConfigurationManagement\MySqlConnectionForm.Designer.cs"> + <DependentUpon>MySqlConnectionForm.cs</DependentUpon> + </Compile> <Compile Include="ConnectionProvider.cs" /> <Compile Include="DataBase.cs" /> <Compile Include="DataBaseVersionManager.cs" /> + <Compile Include="DbCommandBuilderProvider.cs" /> + <Compile Include="DbCommandProvider.cs" /> + <Compile Include="DbDataAdapterProvider.cs" /> <Compile Include="OleDbSingleTableAdapter.cs" /> <Compile Include="QuoteField.cs" /> *************** *** 67,70 **** --- 80,89 ---- <Compile Include="Tables\EventType.cs" /> <Compile Include="MissingQuoteException.cs" /> + <EmbeddedResource Include="ConfigurationManagement\DbTypeChooser.resx"> + <DependentUpon>DbTypeChooser.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="ConfigurationManagement\MySqlConnectionForm.resx"> + <DependentUpon>MySqlConnectionForm.cs</DependentUpon> + </EmbeddedResource> </ItemGroup> <ItemGroup> *************** *** 73,76 **** --- 92,96 ---- <Name>b1_ADT</Name> </ProjectReference> + <Folder Include="ConfigurationManagement" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" /> |