[fdo-commits] r748 - branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS

svn_fdo at osgeo.org svn_fdo at osgeo.org
Wed Feb 14 17:34:27 EST 2007


Author: brentrobinson
Date: 2007-02-14 17:34:26 -0500 (Wed, 14 Feb 2007)
New Revision: 748

Added:
   branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoMultiThreadTest.cpp
   branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoMultiThreadTest.h
   branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoSelectTest.h
   branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisInit.txt
   branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/UnitTestPostGIS.vcproj
   branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/providers.xml
Log:
Added some missing files

Added: branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoMultiThreadTest.cpp
===================================================================
--- branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoMultiThreadTest.cpp	                        (rev 0)
+++ branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoMultiThreadTest.cpp	2007-02-14 22:34:26 UTC (rev 748)
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2004-2006  Autodesk, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of version 2.1 of the GNU Lesser
+ * General Public License as published by the Free Software Foundation.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ */
+
+#include "Pch.h"
+#include "PostGisFdoMultiThreadTest.h"
+#include "UnitTestUtil.h"
+
+CPPUNIT_TEST_SUITE_REGISTRATION( PostGisFdoMultiThreadTest );
+CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( PostGisFdoMultiThreadTest, "FdoMultiThreadTest");
+
+void PostGisFdoMultiThreadTest::set_provider()
+{
+	UnitTestUtil::SetProvider( "PostGIS" );
+}

Added: branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoMultiThreadTest.h
===================================================================
--- branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoMultiThreadTest.h	                        (rev 0)
+++ branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoMultiThreadTest.h	2007-02-14 22:34:26 UTC (rev 748)
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2004-2006  Autodesk, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of version 2.1 of the GNU Lesser
+ * General Public License as published by the Free Software Foundation.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ */
+
+#ifndef POSTGIS_FDOMULTITHREADTEST_H
+#define POSTGIS_FDOMULTITHREADTEST_H
+
+#include "FdoMultiThreadTest.h"
+
+class PostGisFdoMultiThreadTest : public FdoMultiThreadTest
+{
+    CPPUNIT_TEST_SUB_SUITE (PostGisFdoMultiThreadTest, FdoMultiThreadTest);
+    CPPUNIT_TEST_SUITE_END ();
+
+    void  set_provider();
+};
+
+#endif // PostGis_FDOMULTITHREADTEST_H

Added: branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoSelectTest.h
===================================================================
--- branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoSelectTest.h	                        (rev 0)
+++ branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisFdoSelectTest.h	2007-02-14 22:34:26 UTC (rev 748)
@@ -0,0 +1,32 @@
+/*
+ * Copyright (C) 2004-2006  Autodesk, Inc.
+ * 
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of version 2.1 of the GNU Lesser
+ * General Public License as published by the Free Software Foundation.
+ * 
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ * 
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ *
+ */
+
+#ifndef POSTGIS_FDOSELECTTEST_H
+#define POSTGIS_FDOSELECTTEST_H
+
+#include "FdoSelectTest.h"
+
+class PostGisFdoSelectTest : public FdoSelectTest
+{
+    CPPUNIT_TEST_SUB_SUITE (PostGisFdoSelectTest, FdoSelectTest);
+    CPPUNIT_TEST_SUITE_END ();
+
+    void  set_provider();
+};
+
+#endif // PostGis_FDOSELECTTEST_H

Added: branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisInit.txt
===================================================================
--- branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisInit.txt	                        (rev 0)
+++ branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/PostGisInit.txt	2007-02-14 22:34:26 UTC (rev 748)
@@ -0,0 +1 @@
+provider=PostGIS;service=localhost at fdotest;username=postgres;password=test;clean=true;
\ No newline at end of file

Added: branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/UnitTestPostGIS.vcproj
===================================================================
--- branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/UnitTestPostGIS.vcproj	                        (rev 0)
+++ branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/UnitTestPostGIS.vcproj	2007-02-14 22:34:26 UTC (rev 748)
@@ -0,0 +1,822 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+	ProjectType="Visual C++"
+	Version="8.00"
+	Name="UnitTestPostGIS"
+	ProjectGUID="{D2EF6A19-4817-4978-8D61-066A694A6A34}"
+	RootNamespace="UnitTestPostGIS"
+	>
+	<Platforms>
+		<Platform
+			Name="Win32"
+		/>
+	</Platforms>
+	<ToolFiles>
+	</ToolFiles>
+	<Configurations>
+		<Configuration
+			Name="Debug|Win32"
+			OutputDirectory="..\Dbg"
+			IntermediateDirectory="..\Dbg\PostGIS"
+			ConfigurationType="1"
+			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
+			UseOfMFC="0"
+			CharacterSet="2"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				Optimization="0"
+				AdditionalIncludeDirectories="&quot;$(FDO)\Unmanaged\inc&quot;;&quot;$(FDO)\Unmanaged&quot;;&quot;$(FDOTHIRDPARTY)\cppunit\include&quot;;&quot;$(FDOUTILITIES)\SchemaMgr\inc&quot;;&quot;$(FDOUTILITIES)\Common\inc&quot;;..\..\LockManager;..\..\LongTransactionManager;..\..\Gdbi;..\..\..\Inc;..\..\..;..\..\Fdo\Connection;..\..\Fdo\SpatialContext;..\..\Fdo\Other;..\..\Fdo\FeatureCommands;../../;..\PostGis;..\Common;&quot;$(FDOUTILITIES)\TestCommon\inc&quot;"
+				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;RDBI_STATIC;_CRT_SECURE_NO_DEPRECATE;__CPPUNIT_MFC_APP"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="3"
+				TreatWChar_tAsBuiltInType="true"
+				RuntimeTypeInfo="true"
+				UsePrecompiledHeader="2"
+				PrecompiledHeaderThrough="Pch.h"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="true"
+				DebugInformationFormat="4"
+				DisableSpecificWarnings="4250"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalDependencies="cppunitd.lib FDO.lib FDOCommon.lib FDOGeometry.lib FdoGeneric.lib libpq.lib Rdbi.lib Gdbi_PostGis.lib schemamgrnew.lib PostGISDriver.lib ProvidersCommon.lib rdbmsoverrides.lib schemamgr_lpnew.lib schemamgr_phnew.lib SchemaMgr_OVNew.lib grdschemamgr.lib util.lib Advapi32.lib TestCommon.lib"
+				LinkIncremental="2"
+				AdditionalLibraryDirectories="..\..\..\Lib\Win32\Debug;&quot;$(FDO)\Unmanaged\Lib\Win32\Debug&quot;;&quot;$(FDOUTILITIES)\Common\Lib\Win32\Debug&quot;;&quot;$(FDOUTILITIES)\SchemaMgr\Lib\Win32\Debug&quot;;&quot;$(FDOTHIRDPARTY)\cppunit\lib&quot;;&quot;$(FDOPOSTGRESQL)\lib\ms&quot;;&quot;$(FDOUTILITIES)\TestCommon\Lib\Win32\Debug&quot;"
+				IgnoreDefaultLibraryNames="libcmtd.lib"
+				GenerateDebugInformation="true"
+				ProgramDatabaseFile="$(OutDir)/$(ProjectName).pdb"
+				SubSystem="1"
+				TargetMachine="1"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Release|Win32"
+			OutputDirectory="..\Rel"
+			IntermediateDirectory="..\Rel\PostGIS"
+			ConfigurationType="1"
+			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
+			UseOfMFC="0"
+			CharacterSet="2"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				AdditionalIncludeDirectories="&quot;$(FDO)\Unmanaged\inc&quot;;&quot;$(FDO)\Unmanaged&quot;;&quot;$(FDOTHIRDPARTY)\cppunit\include&quot;;&quot;$(FDOUTILITIES)\SchemaMgr\inc&quot;;&quot;$(FDOUTILITIES)\Common\inc&quot;;..\..\LockManager;..\..\LongTransactionManager;..\..\Gdbi;..\..\..\Inc;..\..\..;..\..\Fdo\Connection;..\..\Fdo\SpatialContext;..\..\Fdo\Other;..\..\Fdo\FeatureCommands;../../;..\PostGis;..\Common;&quot;$(FDOUTILITIES)\TestCommon\inc&quot;"
+				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;RDBI_STATIC;_CRT_SECURE_NO_DEPRECATE"
+				RuntimeLibrary="2"
+				TreatWChar_tAsBuiltInType="true"
+				RuntimeTypeInfo="true"
+				UsePrecompiledHeader="2"
+				PrecompiledHeaderThrough="Pch.h"
+				DisableSpecificWarnings="4250"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				AdditionalDependencies="cppunit.lib FDO.lib FDOCommon.lib FDOGeometry.lib FdoGeneric.lib libpq.lib Rdbi.lib Gdbi_PostGis.lib schemamgrnew.lib PostGISDriver.lib ProvidersCommon.lib rdbmsoverrides.lib schemamgr_lpnew.lib schemamgr_phnew.lib SchemaMgr_OVNew.lib grdschemamgr.lib util.lib Advapi32.lib TestCommon.lib"
+				AdditionalLibraryDirectories="..\..\..\..\Lib\Win32\Release;&quot;$(FDO)\Unmanaged\Lib\Win32\Release&quot;;&quot;$(FDOUTILITIES)\Common\Lib\Win32\Release&quot;;&quot;$(FDOUTILITIES)\SchemaMgr\Lib\Win32\Release&quot;;&quot;$(FDOTHIRDPARTY)\cppunit\lib&quot;;&quot;$(FDOPOSTGRESQL)\lib\ms&quot;;&quot;$(FDOUTILITIES)\TestCommon\Lib\Win32\Release&quot;"
+				IgnoreDefaultLibraryNames="libc.lib"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+	</Configurations>
+	<References>
+	</References>
+	<Files>
+		<Filter
+			Name="Framework"
+			>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\HostApp.cpp"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\HostApp.h"
+				>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\HostAppDoc.cpp"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\HostAppDoc.h"
+				>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\HostAppView.cpp"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\HostAppView.h"
+				>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\MainFrm.cpp"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\MainFrm.h"
+				>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\Resource.h"
+				>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\StdAfx.cpp"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="1"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="1"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\StdAfx.h"
+				>
+			</File>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\TestMain.cpp"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="2"
+						PrecompiledHeaderThrough="StdAfx.h"
+						PrecompiledHeaderFile="$(IntDir)/StdAfx.pch"
+					/>
+				</FileConfiguration>
+			</File>
+		</Filter>
+		<Filter
+			Name="Resource Files"
+			>
+			<File
+				RelativePath="$(FDOTHIRDPARTY)\cppunit\HostApp\HostApp.rc"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Symbolic Targets"
+			>
+			<File
+				RelativePath="CopyFdo"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+						Description="Copying FDO files"
+						CommandLine="copy $(FDO)\Unmanaged\Bin\Win32\Debug\FDO.dll $(OutDir)&#x0D;&#x0A;copy $(FDO)\Unmanaged\Bin\Win32\Debug\FDOCommon.dll $(OutDir)&#x0D;&#x0A;copy $(FDO)\Unmanaged\Bin\Win32\Debug\FDOMessage.dll $(OutDir)&#x0D;&#x0A;copy $(FDO)\Unmanaged\Bin\Win32\Debug\FDOGeometry.dll $(OutDir)&#x0D;&#x0A;copy $(FDO)\Unmanaged\Bin\Win32\Debug\FDOSpatial.dll $(OutDir)&#x0D;&#x0A;echo &quot;delete me please&quot;&gt;$(OutDir)\CopyFdo.ilk&#x0D;&#x0A;"
+						AdditionalDependencies="$(FDO)\Unmanaged\Bin\Win32\Debug\FDO.dll;$(FDO)\Unmanaged\Bin\Win32\Debug\FDOCommon.dll;$(FDO)\Unmanaged\Bin\Win32\Debug\FDOGeometry.dll;$(FDO)\Unmanaged\Bin\Win32\Debug\FDOSpatial.dll;$(FDO)\Unmanaged\Bin\Win32\Debug\FDOMessage.dll"
+						Outputs="$(OutDir)\CopyFdo.ilk"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+						Description="Copying FDO files"
+						CommandLine="copy $(FDO)\Unmanaged\Bin\Win32\Release\FDO.dll $(OutDir)&#x0D;&#x0A;copy $(FDO)\Unmanaged\Bin\Win32\Release\FDOCommon.dll $(OutDir)&#x0D;&#x0A;copy $(FDO)\Unmanaged\Bin\Win32\Release\FDOGeometry.dll $(OutDir)&#x0D;&#x0A;copy $(FDO)\Unmanaged\Bin\Win32\Release\FDOSpatial.dll $(OutDir)&#x0D;&#x0A;copy $(FDO)\Unmanaged\Bin\Win32\Release\FDOMessage.dll $(OutDir)&#x0D;&#x0A;echo &quot;delete me please&quot;&gt;$(OutDir)\CopyFdo.ilk&#x0D;&#x0A;"
+						AdditionalDependencies="$(FDO)\Unmanaged\Bin\Win32\Release\FDO.dll;$(FDO)\Unmanaged\Bin\Win32\Release\FDOCommon.dll;$(FDO)\Unmanaged\Bin\Win32\Release\FDOGeometry.dll;$(FDO)\Unmanaged\Bin\Win32\Release\FDOSpatial.dll;$(FDO)\Unmanaged\Bin\Win32\Debug\FDOMessage.dll"
+						Outputs="$(OutDir)\CopyFdo.ilk"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="CopyThirdparty"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+						Description="Copying thirdparty dlls"
+						CommandLine="copy $(FDOTHIRDPARTY)\apache\xml-xalan\c\Build\Win32\VC8\Debug\Xalan-C_1_7_0D.dll $(OutDir)&#x0D;&#x0A;copy $(FDOTHIRDPARTY)\apache\xml-xalan\c\Build\Win32\VC8\Debug\XalanMessages_1_7_0D.dll $(OutDir)&#x0D;&#x0A;copy $(FDOTHIRDPARTY)\apache\xml-xerces\c\Build\Win32\VC8\Debug\xerces-c_2_5_0D.dll $(OutDir)&#x0D;&#x0A;copy $(FDOTHIRDPARTY)\cppunit\lib\cppunitd_dll.dll $(OutDir)&#x0D;&#x0A;copy &quot;$(FDOPOSTGRESQL)\bin\libpq.dll&quot; $(OutDir)&#x0D;&#x0A;copy &quot;$(FDOPOSTGRESQL)\bin\comerr32.dll&quot; $(OutDir)&#x0D;&#x0A;copy &quot;$(FDOPOSTGRESQL)\bin\libintl-2.dll&quot; $(OutDir)&#x0D;&#x0A;copy &quot;$(FDOPOSTGRESQL)\bin\libiconv-2.dll&quot; $(OutDir)&#x0D;&#x0A;copy &quot;$(FDOPOSTGRESQL)\bin\krb5_32.dll&quot; $(OutDir)&#x0D;&#x0A;echo &quot;delete me please&quot;&gt;$(OutDir)\CopyThirdparty.ilk&#x0D;&#x0A;"
+						AdditionalDependencies="$(FDOTHIRDPARTY)\apache\xml-xalan\c\Build\Win32\VC7\Debug\Xalan-C_1_7_0D.dll;$(FDOTHIRDPARTY)\apache\xml-xalan\c\Build\Win32\VC7\Debug\XalanMessages_1_7_0D.dll;$(FDOTHIRDPARTY)\apache\xml-xerces\c\Build\Win32\VC7\Debug\xerces-c_2_5_0D.dll;&quot;$(FDOPOSTGRESQL)\bin\libpq.dll&quot;;&quot;$(FDOPOSTGRESQL)\bin\comerr32.dll&quot;;&quot;$(FDOPOSTGRESQL)\bin\libintl-2.dll&quot;;&quot;$(FDOPOSTGRESQL)\bin\libiconvl-2.dll&quot;;&quot;$(FDOPOSTGRESQL)\bin\krb5_32.dll&quot;;$(FDOTHIRDPARTY)\cppunit\lib\cppunitd_dll.dll"
+						Outputs="$(OutDir)\CopyThirdparty.ilk"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+						Description="Copying thirdparty dlls"
+						CommandLine="copy $(FDOTHIRDPARTY)\apache\xml-xalan\c\Build\Win32\VC8\Release\Xalan-C_1_7_0.dll $(OutDir)&#x0D;&#x0A;copy $(FDOTHIRDPARTY)\apache\xml-xalan\c\Build\Win32\VC8\Release\XalanMessages_1_7_0.dll $(OutDir)&#x0D;&#x0A;copy $(FDOTHIRDPARTY)\apache\xml-xerces\c\Build\Win32\VC8\Release\xerces-c_2_5_0.dll $(OutDir)&#x0D;&#x0A;copy $(FDOTHIRDPARTY)\cppunit\lib\cppunit_dll.dll $(OutDir)&#x0D;&#x0A;copy &quot;$(FDOPOSTGRESQL)\bin\libpq.dll&quot; $(OutDir)&#x0D;&#x0A;echo &quot;delete me please&quot;&gt;$(OutDir)\CopyThirdparty.ilk&#x0D;&#x0A;"
+						AdditionalDependencies="$(FDOTHIRDPARTY)\cppunit\lib\cppunit_dll.dll;$(FDOTHIRDPARTY)\apache\xml-xalan\c\Build\Win32\VC7\Release\Xalan-C_1_7_0.dll;$(FDOTHIRDPARTY)\apache\xml-xalan\c\Build\Win32\VC7\Release\XalanMessages_1_7_0.dll;$(FDOTHIRDPARTY)\apache\xml-xerces\c\Build\Win32\VC7\Release\xerces-c_2_5_0.dll;&quot;$(FDOPOSTGRESQL)\bin\libpq.dll&quot;"
+						Outputs="$(OutDir)\CopyThirdparty.ilk"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath="FakeInstall"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+						Description="Performing fake install"
+						CommandLine="copy providers.xml $(OutDir)&#x0D;&#x0A;copy PostGisInit.txt $(OutDir)&#x0D;&#x0A;copy ..\g_coords.txt $(OutDir)&#x0D;&#x0A;copy ..\polyAttr.txt $(OutDir)&#x0D;&#x0A;mkdir $(OutDir)\com&#x0D;&#x0A;copy ..\..\sql\*.sql $(OutDir)\com&#x0D;&#x0A;copy ..\*.xml $(OutDir)&#x0D;&#x0A;del /F $(OutDir)\*_master.txt&#x0D;&#x0A;copy ..\*_master.txt $(OutDir)&#x0D;&#x0A;del /F $(OutDir)\*_in.xml&#x0D;&#x0A;copy ..\*_in.xml $(OutDir)&#x0D;&#x0A;del /F $(OutDir)\*.xslt&#x0D;&#x0A;copy ..\*.xslt $(OutDir)&#x0D;&#x0A;copy ..\..\..\Bin\Win32\Debug\RdbmsOverrides.dll $(OutDir)&#x0D;&#x0A;copy ..\..\..\Bin\Win32\Debug\PostGISOverrides.dll $(OutDir)&#x0D;&#x0A;copy ..\..\..\Bin\Win32\Debug\PostGISProvider.dll $(OutDir)&#x0D;&#x0A;copy $(FDOUTILITIES)\SchemaMgr\Bin\Win32\Debug\SmMessage.dll $(OutDir)&#x0D;&#x0A;echo &quot;delete me please&quot;&gt;$(OutDir)\FakeInstall.ilk&#x0D;&#x0A;"
+						AdditionalDependencies="providers.xml;PostGisInit.txt;..\g_coords.txt;..\polyAttr.txt;..\..\..\..\com\postgis_fdo_sys.sql;..\..\..\..\com\postgis_fdo_sys_idx.sql;..\..\..\..\com\fdosys_sys.sql;..\describeSchemas.xml;..\FdoSchemaTest_SqlServerOutput.xml;..\SchemaOverrideAll.xml;..\SchemaOverrideAll2.xml;..\SchemaOverrideErr.xml;..\smtables_logical.xml;..\smtables_physical.xml;..\temp_out.xml;..\apply_schema_err1_master.txt;..\apply_schema_err2_master.txt;..\apply_schema_err2M_master.txt;..\apply_schema_err3_master.txt;..\apply_schema_err3S_master.txt;..\apply_schema_err3M_master.txt;..\apply_schema_err4_master.txt;..\apply_schema_err5_master.txt;..\apply_schema_err5M_master.txt;..\apply_schema_err6_master.txt;..\apply_schema_err6S_master.txt;..\apply_schema_err7_master.txt;..\apply_schema_err8_master.txt;..\apply_schema_err8M_master.txt;..\apply_schema_err9_master.txt;..\apply_schema_overrides_out1.xml;..\apply_schema_overrides_out2.xml;..\apply_schema_test1_master.txt;apply_schema_test2_master.txt;..\apply_schema_test3_master.txt;..\apply_schema_test_ov1_master.txt;..\apply_schema_test_ov2_master.txt;..\apply_schema_test_ov3_master.txt;..\gen_default1_PostGIS_master.txt;..\gen_default1_Oracle_master.txt;..\gen_default1_SqlServer_master.txt;..\impexp_err1_master.txt;..\impexp_err7_master.txt;..\impexp2a_master.txt;..\impexp2b_master.txt;..\SchemaOverrideAll2_master.txt;..\SchemaOverrideErrHigh_master.txt;..\SchemaOverrideErrLow_master.txt;..\SchemaOverrideErrNormal_master.txt;..\apply_schema_overrides3_master.txt;..\apply_schema_overrides_out1_master.txt;..\apply_schema_overrides_out2_master.txt;..\schemaGenConfig1_master.txt;..\apply_schema_overrides1_master.txt;..\apply_schema_overrides2_master.txt;..\temp_in.xml;..\config1_in.xml;..\schema_rb_nnyn_master.txt;..\..\..\Bin\Win32\Debug\RdbmsOverrides.dll;..\..\..\Bin\Win32\Debug\PostGISOverrides.dll;..\..\..\Bin\Win32\Debug\PostGISProvider.dll;$(FDOUTILITIES)\SchemaMgr\Bin\Win32\Debug\SmMessage.dll;..\OverrideBender.xslt"
+						Outputs="$(OutDir)\FakeInstall.ilk"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+						Description="Performing fake install"
+						CommandLine="copy providers.xml $(OutDir)&#x0D;&#x0A;copy PostGisInit.txt $(OutDir)&#x0D;&#x0A;copy g_coords.txt $(OutDir)&#x0D;&#x0A;copy polyAttr.txt $(OutDir)&#x0D;&#x0A;mkdir $(OutDir)\com&#x0D;&#x0A;copy ..\..\..\..\com\fdo_sys.sql $(OutDir)\com&#x0D;&#x0A;copy ..\..\..\..\com\fdo_sys_idx.sql $(OutDir)\com&#x0D;&#x0A;copy ..\..\..\..\com\fdosys_sys.sql $(OutDir)\com&#x0D;&#x0A;copy ..\..\..\..\..\..\Oracle\com\storage.sql $(OutDir)\com&#x0D;&#x0A;copy *.xml $(OutDir)&#x0D;&#x0A;del /F $(OutDir)\*_master.txt&#x0D;&#x0A;copy *_master.txt $(OutDir)&#x0D;&#x0A;del /F $(OutDir)\*_in.xml&#x0D;&#x0A;copy *_in.xml $(OutDir)&#x0D;&#x0A;del /F $(OutDir)\*.xslt&#x0D;&#x0A;copy *.xslt $(OutDir)&#x0D;&#x0A;copy ..\..\..\..\Bin\Win32\Release\RdbmsOverrides.dll $(OutDir)&#x0D;&#x0A;copy ..\..\..\..\Bin\Win32\Release\PostGISOverrides.dll $(OutDir)&#x0D;&#x0A;copy ..\..\..\..\Bin\Win32\Release\PostGISProvider.dll $(OutDir)&#x0D;&#x0A;copy $(FDOUTILITIES)\SchemaMgr\Bin\Win32\Release\SmMessage.dll $(OutDir)&#x0D;&#x0A;echo &quot;delete me please&quot;&gt;$(OutDir)\FakeInstall.ilk&#x0D;&#x0A;"
+						AdditionalDependencies="providers.xml;PostGisInit.txt;g_coords.txt;polyAttr.txt;..\..\..\..\com\fdo_sys.sql;..\..\..\..\com\fdo_sys_idx.sql;..\..\..\..\com\fdosys_sys.sql;..\..\..\..\..\..\Oracle\com\storage.sql;describeSchemas.xml;FdoSchemaTest_SqlServerOutput.xml;impexp_err1_master.txt;impexp_err7_master.txt;impexp2a_master.txt;impexp2b_master.txt;SchemaOverrideAll.xml;SchemaOverrideAll2.xml;SchemaOverrideErr.xml;smtables_logical.xml;smtables_physical.xml;temp_out.xml;apply_schema_err1_master.txt;apply_schema_err2_master.txt;apply_schema_err2M_master.txt;apply_schema_err3_master.txt;apply_schema_err3S_master.txt;apply_schema_err3M_master.txt;apply_schema_err4_master.txt;apply_schema_err5_master.txt;apply_schema_err5M_master.txt;apply_schema_err6_master.txt;apply_schema_err6S_master.txt;apply_schema_err7_master.txt;apply_schema_err8_master.txt;apply_schema_err8M_master.txt;apply_schema_err9_master.txt;apply_schema_overrides_out1.xml;apply_schema_overrides_out2.xml;apply_schema_test1_master.txt;apply_schema_test2_master.txt;apply_schema_test3_master.txt;apply_schema_test_ov1_master.txt;apply_schema_test_ov2_master.txt;apply_schema_test_ov3_master.txt;SchemaOverrideAll2_master.txt;SchemaOverrideErrHigh_master.txt;SchemaOverrideErrLow_master.txt;SchemaOverrideErrNormal_master.txt;apply_schema_overrides3_master.txt;apply_schema_overrides_out1_master.txt;apply_schema_overrides_out2_master.txt;schemaGenConfig1_master.txt;apply_schema_overrides1_master.txt;apply_schema_overrides2_master.txt;temp_in.xml;config1_in.xml;schema_rb_nnyn_master.txt;..\..\..\..\Bin\Win32\Release\RdbmsOverrides.dll;..\..\..\..\Bin\Win32\Release\PostGISOverrides.dll;..\..\..\..\Bin\Win32\Release\PostGISProvider.dll;$(FDOUTILITIES)\SchemaMgr\Bin\Win32\Release\SmMessage.dll;OverrideBender.xslt"
+						Outputs="$(OutDir)\FakeInstall.ilk"
+					/>
+				</FileConfiguration>
+			</File>
+		</Filter>
+		<Filter
+			Name="Common"
+			>
+			<File
+				RelativePath="..\Common\ConnectionUtil.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\ConnectionUtil.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\ConnectTests.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\ConnectTests.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\DataTypeTests.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\DataTypeTests.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\DescribeSchemaTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\DescribeSchemaTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAdvancedSelectTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAdvancedSelectTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoApplySchemaTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoApplySchemaTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationDeleteTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationDeleteTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationInsertTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationInsertTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationSchemaTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationSchemaTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationSelectTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationSelectTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationUpdateTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoAssociationUpdateTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoCapabilityTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoCapabilityTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoConnectionInfoTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoConnectionInfoTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoConnectTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoConnectTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoConstraintsTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoConstraintsTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoDatastoreTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoDatastoreTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoDeleteTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoDeleteTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoForeignSchemaTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoForeignSchemaTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoImportExportTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoImportExportTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoInsertTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoInsertTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoMultiThreadTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoMultiThreadTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoSchemaRollbackTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoSchemaRollbackTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoSchemaTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoSchemaTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoSelectTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoSelectTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoSqlCmdTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoSqlCmdTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoUpdateTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\FdoUpdateTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\GeometryTests.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\GeometryTests.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\MessageTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\MessageTest.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\SchemaMgrTests.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\SchemaMgrTests.h"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Utils"
+			>
+			<File
+				RelativePath=".\PostGisConnectionUtil.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisConnectionUtil.h"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisTestRegister.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\StringPropertiesDictionary.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\UnitTestUtil.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\UnitTestUtil.h"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\XmlFormatter.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\Common\XmlFormatter.h"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Specific"
+			>
+			<File
+				RelativePath=".\PostGisConnectTests.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisConnectTests.h"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoConnectionInfoTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoConnectionInfoTest.h"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoConnectTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoConnectTest.h"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoDeleteTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoDeleteTest.h"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoInsertTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoInsertTest.h"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoMultiThreadTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoMultiThreadTest.h"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoSelectTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoSelectTest.h"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoSqlCmdTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoSqlCmdTest.h"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoUpdateTest.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\PostGisFdoUpdateTest.h"
+				>
+			</File>
+		</Filter>
+		<File
+			RelativePath="..\Common\Pch.cpp"
+			>
+			<FileConfiguration
+				Name="Debug|Win32"
+				>
+				<Tool
+					Name="VCCLCompilerTool"
+					UsePrecompiledHeader="1"
+				/>
+			</FileConfiguration>
+			<FileConfiguration
+				Name="Release|Win32"
+				>
+				<Tool
+					Name="VCCLCompilerTool"
+					UsePrecompiledHeader="1"
+				/>
+			</FileConfiguration>
+		</File>
+		<File
+			RelativePath="..\Common\Pch.h"
+			>
+		</File>
+		<File
+			RelativePath=".\providers.xml"
+			>
+		</File>
+	</Files>
+	<Globals>
+	</Globals>
+</VisualStudioProject>

Added: branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/providers.xml
===================================================================
--- branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/providers.xml	                        (rev 0)
+++ branches/fdordbms-postgis/Providers/GenericRdbms/Src/UnitTest/PostGIS/providers.xml	2007-02-14 22:34:26 UTC (rev 748)
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
+<FeatureProviderRegistry>
+  <FeatureProvider>
+    <Name>Autodesk.Oracle.3.2</Name>
+    <DisplayName>Oracle FDO Provider</DisplayName>
+    <Description>FDO Provider for Oracle RDBMS</Description>
+    <IsManaged>False</IsManaged>
+    <Version>3.2.1.0</Version>
+    <FeatureDataObjectsVersion>3.2.1.0</FeatureDataObjectsVersion>
+    <LibraryPath>.\OracleProvider.dll</LibraryPath>
+  </FeatureProvider>
+  <FeatureProvider>
+    <Name>OSGeo.MySQL.3.2</Name>
+    <DisplayName>OSGeo FDO Provider for MySQL</DisplayName>
+    <Description>FDO Provider for MySql</Description>
+    <IsManaged>False</IsManaged>
+    <Version>3.2.1.0</Version>
+    <FeatureDataObjectsVersion>3.2.1.0</FeatureDataObjectsVersion>
+    <LibraryPath>.\MySQLProvider.dll</LibraryPath>
+  </FeatureProvider>
+  <FeatureProvider>
+    <Name>Autodesk.SqlServer.3.2</Name>
+    <DisplayName>SQL Server FDO Provider</DisplayName>
+    <Description>FDO Provider for SQL Server</Description>
+    <IsManaged>False</IsManaged>
+    <Version>3.2.0.0</Version>
+    <FeatureDataObjectsVersion>3.2.0.0</FeatureDataObjectsVersion>
+    <LibraryPath>.\SqlServerProvider.dll</LibraryPath>
+  </FeatureProvider>
+  <FeatureProvider>
+    <Name>OSGeo.ODBC.3.2</Name>
+    <DisplayName>OSGeo FDO Provider for ODBC</DisplayName>
+    <Description>Autodesk FDO Provider for ODBC</Description>
+    <IsManaged>False</IsManaged>
+    <Version>3.2.0.0</Version>
+    <FeatureDataObjectsVersion>3.2.0.0</FeatureDataObjectsVersion>
+    <LibraryPath>.\OdbcProvider.dll</LibraryPath>
+  </FeatureProvider>
+  <FeatureProvider>
+    <Name>OSGeo.PostGIS.3.2</Name>
+    <DisplayName>OSGeo FDO Provider for PostgreSQL with PostGIS</DisplayName>
+    <Description>FDO Provider for PostGIS</Description>
+    <IsManaged>False</IsManaged>
+    <Version>3.2.0.0</Version>
+    <FeatureDataObjectsVersion>3.2.0.0</FeatureDataObjectsVersion>
+    <LibraryPath>.\PostGISProvider.dll</LibraryPath>
+  </FeatureProvider>
+</FeatureProviderRegistry>



More information about the fdo-commits mailing list