diff --git a/Projects/Win32/BCC.551/Xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.cpp b/Projects/Win32/BCC.551/Xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.cpp
deleted file mode 100644
index 95a992121f02dd4e219a444f9768abca7f4479b6..0000000000000000000000000000000000000000
--- a/Projects/Win32/BCC.551/Xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-
-#pragma hdrstop
-
-//---------------------------------------------------------------------------
-
-//---------------------------------------------------------------------------
-
-#ifdef NEVER_COMPILE
-#include <stdio.h>
-
-// Dummy entry point
-int main(int argc, char* argv[])
-{
-	printf("*** Compile XercesC Library with Deprecated DOM API for this test\n");
-	return 0;
-}
-#else
- // The real entry point is in the Samples folder
- #include <DeprecatedDOMCount.cpp>
-#endif
diff --git a/Projects/Win32/BCC.551/Xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.mak b/Projects/Win32/BCC.551/Xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.mak
deleted file mode 100644
index 430323cd3cd59c39d2b7dbaf90ab9fb737ae86ec..0000000000000000000000000000000000000000
--- a/Projects/Win32/BCC.551/Xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.mak
+++ /dev/null
@@ -1,146 +0,0 @@
-# ---------------------------------------------------------------------------
-!if !$d(BCB)
-BCB = $(MAKEDIR)\..
-!endif
-# ---------------------------------------------------------------------------
-TARGETPATH=..\..\..\..\..\Build\Win32\BCC.551
-PROJECT = $(TARGETPATH)\DeprecatedDOMCount.exe
-!if $d(WITHDEPRDOM)
-!else
-NO_DEPRDOM_PRODUCEMAIN=NEVER_COMPILE
-!endif
-OBJFILES = $(TARGETPATH)\obj\DeprecatedDOMCount.obj
-RESFILES = 
-MAINSOURCE = DeprecatedDOMCount.cpp
-RESDEPEN = $(RESFILES)
-LIBFILES = $(TARGETPATH)\xerces-bor_$(XERCESVER).lib
-IDLFILES = 
-IDLGENFILES = 
-LIBRARIES = 
-PACKAGES = 
-SPARELIBS = 
-DEFFILE = 
-# ---------------------------------------------------------------------------
-PATHCPP = .;
-PATHASM = .;
-PATHPAS = .;
-PATHRC = .;
-USERDEFINES = _DEBUG;XERCES_NO_CONFIGURE_SUPPORT;$(NO_DEPRDOM_PRODUCEMAIN)
-SYSDEFINES = _NO_VCL;NO_STRICT;_VIS_NOLIB;_RTLDLL
-INCLUDEPATH = ..\..\..\..\..\tests\src\DOM\DeprecatedDOMCount;..\..\..\..\..\src
-LIBPATH = 
-WARNINGS= 
-# ---------------------------------------------------------------------------
-CFLAG1 = -Od -w -g0 -Tkh30000 -X- -r- -a8 -4 -b -k -y -v -vi- -c -tWM -tWC
-IDLCFLAGS = -src_suffix cpp -boa
-PFLAGS = -N2$(TARGETPATH)\obj \
-    -N0$(TARGETPATH)\obj -$YD -$W -$O- -v -JPHN -M
-RFLAGS = 
-AFLAGS = /mx /w2 /zd
-LFLAGS = -I$(TARGETPATH)\obj -ap -Tpe -x -Gn -v
-# ---------------------------------------------------------------------------
-ALLOBJ = c0x32.obj $(OBJFILES)
-ALLRES = $(RESFILES)
-ALLLIB = $(LIBFILES) import32.lib cw32mti.lib
-# ---------------------------------------------------------------------------
-
-
-
-
-
-# ---------------------------------------------------------------------------
-# MAKE SECTION
-# ---------------------------------------------------------------------------
-# This section of the project file is not used by the BCB IDE.  It is for
-# the benefit of building from the command-line using the MAKE utility.
-# ---------------------------------------------------------------------------
-
-.autodepend
-# ---------------------------------------------------------------------------
-!if "$(USERDEFINES)" != ""
-AUSERDEFINES = -d$(USERDEFINES:;= -d)
-!else
-AUSERDEFINES =
-!endif
-
-!if !$d(BCC32)
-BCC32 = bcc32
-!endif
-
-!if !$d(CPP32)
-CPP32 = cpp32
-!endif
-
-!if !$d(DCC32)
-DCC32 = dcc32
-!endif
-
-!if !$d(TASM32)
-TASM32 = tasm32
-!endif
-
-!if !$d(LINKER)
-LINKER = ilink32
-!endif
-
-!if !$d(BRCC32)
-BRCC32 = brcc32
-!endif
-
-
-# ---------------------------------------------------------------------------
-!if $d(PATHCPP)
-.PATH.CPP = $(PATHCPP)
-.PATH.C   = $(PATHCPP)
-!endif
-
-!if $d(PATHPAS)
-.PATH.PAS = $(PATHPAS)
-!endif
-
-!if $d(PATHASM)
-.PATH.ASM = $(PATHASM)
-!endif
-
-!if $d(PATHRC)
-.PATH.RC  = $(PATHRC)
-!endif
-# ---------------------------------------------------------------------------
-$(PROJECT): $(IDLGENFILES) $(OBJFILES) $(RESDEPEN) $(DEFFILE)
-    $(BCB)\BIN\$(LINKER) @&&!
-    $(LFLAGS) -L$(LIBPATH) +
-    $(ALLOBJ), +
-    $(PROJECT),, +
-    $(ALLLIB), +
-    $(DEFFILE), +
-    $(ALLRES)
-!
-# ---------------------------------------------------------------------------
-.pas.hpp:
-    $(BCB)\BIN\$(DCC32) $(PFLAGS) -U$(INCLUDEPATH) -D$(USERDEFINES);$(SYSDEFINES) -O$(INCLUDEPATH) --BCB {$< }
-
-.pas.obj:
-    $(BCB)\BIN\$(DCC32) $(PFLAGS) -U$(INCLUDEPATH) -D$(USERDEFINES);$(SYSDEFINES) -O$(INCLUDEPATH) --BCB {$< }
-
-.cpp.obj:
-    $(BCB)\BIN\$(BCC32) $(CFLAG1) $(WARNINGS) -I$(INCLUDEPATH) -D$(USERDEFINES);$(SYSDEFINES) -n$(@D) {$< }
-
-.c.obj:
-    $(BCB)\BIN\$(BCC32) $(CFLAG1) $(WARNINGS) -I$(INCLUDEPATH) -D$(USERDEFINES);$(SYSDEFINES) -n$(@D) {$< }
-
-.c.i:
-    $(BCB)\BIN\$(CPP32) $(CFLAG1) $(WARNINGS) -I$(INCLUDEPATH) -D$(USERDEFINES);$(SYSDEFINES) -n. {$< }
-
-.cpp.i:
-    $(BCB)\BIN\$(CPP32) $(CFLAG1) $(WARNINGS) -I$(INCLUDEPATH) -D$(USERDEFINES);$(SYSDEFINES) -n. {$< }
-
-.asm.obj:
-    $(BCB)\BIN\$(TASM32) $(AFLAGS) -i$(INCLUDEPATH:;= -i) $(AUSERDEFINES) -d$(SYSDEFINES:;= -d) $<, $@
-
-.rc.res:
-    $(BCB)\BIN\$(BRCC32) $(RFLAGS) -I$(INCLUDEPATH) -D$(USERDEFINES);$(SYSDEFINES) -fo$@ $<
-# ---------------------------------------------------------------------------
-
-
-
-
diff --git a/Projects/Win32/VC6/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.dsp b/Projects/Win32/VC6/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.dsp
deleted file mode 100644
index 739d7f840a362c9c2003e8342e6e1f6f0ca42988..0000000000000000000000000000000000000000
--- a/Projects/Win32/VC6/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.dsp
+++ /dev/null
@@ -1,158 +0,0 @@
-# Microsoft Developer Studio Project File - Name="DeprecatedDOMCount" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-
-CFG=DeprecatedDOMCount - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "DeprecatedDOMCount.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "DeprecatedDOMCount.mak" CFG="DeprecatedDOMCount - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "DeprecatedDOMCount - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "DeprecatedDOMCount - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "DeprecatedDOMCount - Win64 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "DeprecatedDOMCount - Win64 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE 
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "DeprecatedDOMCount - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "..\..\..\..\..\Build\Win32\VC6\Release"
-# PROP Intermediate_Dir "..\..\..\..\..\Build\Win32\VC6\Release\obj"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /G6 /MD /W3 /GX /O2 /Ob2 /I "..\..\..\..\..\src" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /FD /c
-# SUBTRACT CPP /YX
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /subsystem:console /machine:I386
-# ADD LINK32 xerces-depdom_3.lib kernel32.lib user32.lib xerces-c_3.lib /version:1.0 /subsystem:console /machine:I386 /libpath:"..\..\..\..\..\Build\Win32\VC6\Release"
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "..\..\..\..\..\Build\Win32\VC6\Debug"
-# PROP Intermediate_Dir "..\..\..\..\..\Build\Win32\VC6\Debug\obj"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
-# ADD CPP /G6 /MDd /W3 /Gm /GX /ZI /Od /I "..\..\..\..\..\src" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /FD /GZ /c
-# SUBTRACT CPP /YX
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /subsystem:console /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 xerces-depdom_3D.lib kernel32.lib user32.lib xerces-c_3D.lib /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\..\..\..\Build\Win32\VC6\Debug"
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win64 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Ignore_Export_Lib 0
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "..\..\..\..\..\Build\Win64\VC6\Debug"
-# PROP Intermediate_Dir "..\..\..\..\..\Build\Win64\VC6\Debug\obj"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /G6 /MDd /Za /W3 /Gm /GX /ZI /Od /I "..\..\..\..\..\src" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /D "PLATFORM_WIN32" /FD /GZ /c
-# SUBTRACT BASE CPP /YX
-# ADD CPP /MDd /W3 /Gm /GX /ZI /Od /I "..\..\..\..\..\src" /D "WIN64" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /FD /GZ /c
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-LINK32=link.exe
-# ADD BASE LINK32 /machine:IX86
-# ADD LINK32 xerces-depdom_3D.lib kernel32.lib user32.lib xerces-c_3D.lib /subsystem:console /debug /machine:IX86 /pdbtype:sept /libpath:"..\..\..\..\..\Build\Win64\VC6\Debug" /machine:IA64
-# SUBTRACT LINK32 /pdb:none
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win64 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Ignore_Export_Lib 0
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "..\..\..\..\..\Build\Win64\VC6\Release"
-# PROP Intermediate_Dir "..\..\..\..\..\Build\Win64\VC6\Release\obj"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /G6 /MD /W3 /GX /O2 /Ob2 /I "..\..\..\..\..\src" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /D "PLATFORM_WIN32" /FD /c
-# SUBTRACT BASE CPP /YX
-# ADD CPP /MD /W3 /GX /O2 /Ob2 /I "..\..\..\..\..\src" /D "WIN64" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /FD /c
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-LINK32=link.exe
-# ADD BASE LINK32 /machine:IX86
-# ADD LINK32 xerces-depdom_3.lib kernel32.lib user32.lib xerces-c_3.lib /version:1.0 /subsystem:console /incremental:yes /machine:IX86 /libpath:"..\..\..\..\..\Build\Win64\VC6\Release" /machine:IA64
-# SUBTRACT LINK32 /pdb:none
-
-!ENDIF 
-
-# Begin Target
-
-# Name "DeprecatedDOMCount - Win32 Release"
-# Name "DeprecatedDOMCount - Win32 Debug"
-# Name "DeprecatedDOMCount - Win64 Debug"
-# Name "DeprecatedDOMCount - Win64 Release"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=..\..\..\..\..\tests\src\DOM\DeprecatedDOMCount\DeprecatedDOMCount.cpp
-# End Source File
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
-# Begin Source File
-
-SOURCE=..\..\..\..\..\tests\src\DOM\DeprecatedDOMCount\DeprecatedDOMCount.hpp
-# End Source File
-# End Group
-# Begin Group "Resource Files"
-
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
-# End Group
-# End Target
-# End Project
diff --git a/Projects/Win32/VC6/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.mak b/Projects/Win32/VC6/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.mak
deleted file mode 100644
index 263289e8c3c85da181a8647ffa6df3ac8514be91..0000000000000000000000000000000000000000
--- a/Projects/Win32/VC6/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.mak
+++ /dev/null
@@ -1,490 +0,0 @@
-# Microsoft Developer Studio Generated NMAKE File, Based on DeprecatedDOMCount.dsp
-!IF "$(CFG)" == ""
-CFG=DeprecatedDOMCount - Win32 Debug
-!MESSAGE No configuration specified. Defaulting to DeprecatedDOMCount - Win32 Debug.
-!ENDIF 
-
-!IF "$(CFG)" != "DeprecatedDOMCount - Win32 Release" && "$(CFG)" != "DeprecatedDOMCount - Win32 Debug" && "$(CFG)" != "DeprecatedDOMCount - Win64 Debug" && "$(CFG)" != "DeprecatedDOMCount - Win64 Release"
-!MESSAGE Invalid configuration "$(CFG)" specified.
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "DeprecatedDOMCount.mak" CFG="DeprecatedDOMCount - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "DeprecatedDOMCount - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "DeprecatedDOMCount - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "DeprecatedDOMCount - Win64 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "DeprecatedDOMCount - Win64 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE 
-!ERROR An invalid configuration is specified.
-!ENDIF 
-
-!IF "$(OS)" == "Windows_NT"
-NULL=
-!ELSE 
-NULL=nul
-!ENDIF 
-
-!IF  "$(CFG)" == "DeprecatedDOMCount - Win32 Release"
-
-OUTDIR=.\..\..\..\..\..\Build\Win32\VC6\Release
-INTDIR=.\..\..\..\..\..\Build\Win32\VC6\Release\obj
-# Begin Custom Macros
-OutDir=.\..\..\..\..\..\Build\Win32\VC6\Release
-# End Custom Macros
-
-!IF "$(RECURSE)" == "0" 
-
-ALL : "$(OUTDIR)\DeprecatedDOMCount.exe"
-
-!ELSE 
-
-ALL : "XercesDeprecatedDOMLib - Win32 Release" "XercesLib - Win32 Release" "$(OUTDIR)\DeprecatedDOMCount.exe"
-
-!ENDIF 
-
-!IF "$(RECURSE)" == "1" 
-CLEAN :"XercesLib - Win32 ReleaseCLEAN" "XercesDeprecatedDOMLib - Win32 ReleaseCLEAN" 
-!ELSE 
-CLEAN :
-!ENDIF 
-	-@erase "$(INTDIR)\DeprecatedDOMCount.obj"
-	-@erase "$(INTDIR)\vc60.idb"
-	-@erase "$(OUTDIR)\DeprecatedDOMCount.exe"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-"$(INTDIR)" :
-    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
-
-CPP=$(CPP)
-CPP_PROJ=/G6 /MD /W3 /GX /O2 /Ob2 /I "..\..\..\..\..\src" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /D "PLATFORM_WIN32" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
-
-.c{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.c{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-RSC=rc.exe
-BSC32=bscmake.exe
-BSC32_FLAGS=/o"$(OUTDIR)\DeprecatedDOMCount.bsc" 
-BSC32_SBRS= \
-	
-LINK32=link.exe
-LINK32_FLAGS=kernel32.lib user32.lib xerces-c_2.lib xerces-depdom_2.lib /version:1.0 /subsystem:console /incremental:no /pdb:"$(OUTDIR)\DeprecatedDOMCount.pdb" /machine:I386 /out:"$(OUTDIR)\DeprecatedDOMCount.exe" /libpath:"..\..\..\..\..\Build\Win32\VC6\Release" 
-LINK32_OBJS= \
-	"$(INTDIR)\DeprecatedDOMCount.obj" \
-	"$(OUTDIR)\xerces-c_2.lib" \
-	"$(OUTDIR)\xerces-depdom_2.lib"
-
-"$(OUTDIR)\DeprecatedDOMCount.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win32 Debug"
-
-OUTDIR=.\..\..\..\..\..\Build\Win32\VC6\Debug
-INTDIR=.\..\..\..\..\..\Build\Win32\VC6\Debug\obj
-# Begin Custom Macros
-OutDir=.\..\..\..\..\..\Build\Win32\VC6\Debug
-# End Custom Macros
-
-!IF "$(RECURSE)" == "0" 
-
-ALL : "$(OUTDIR)\DeprecatedDOMCount.exe"
-
-!ELSE 
-
-ALL : "XercesDeprecatedDOMLib - Win32 Debug" "XercesLib - Win32 Debug" "$(OUTDIR)\DeprecatedDOMCount.exe"
-
-!ENDIF 
-
-!IF "$(RECURSE)" == "1" 
-CLEAN :"XercesLib - Win32 DebugCLEAN" "XercesDeprecatedDOMLib - Win32 DebugCLEAN" 
-!ELSE 
-CLEAN :
-!ENDIF 
-	-@erase "$(INTDIR)\DeprecatedDOMCount.obj"
-	-@erase "$(INTDIR)\vc60.idb"
-	-@erase "$(INTDIR)\vc60.pdb"
-	-@erase "$(OUTDIR)\DeprecatedDOMCount.exe"
-	-@erase "$(OUTDIR)\DeprecatedDOMCount.ilk"
-	-@erase "$(OUTDIR)\DeprecatedDOMCount.pdb"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-"$(INTDIR)" :
-    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
-
-CPP=$(CPP)
-CPP_PROJ=/G6 /MDd /Za /W3 /Gm /GX /ZI /Od /I "..\..\..\..\..\src" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /D "PLATFORM_WIN32" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c 
-
-.c{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.c{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-RSC=rc.exe
-BSC32=bscmake.exe
-BSC32_FLAGS=/o"$(OUTDIR)\DeprecatedDOMCount.bsc" 
-BSC32_SBRS= \
-	
-LINK32=link.exe
-LINK32_FLAGS=kernel32.lib user32.lib xerces-c_2D.lib xerces-depdom_2D.lib /subsystem:console /incremental:yes /pdb:"$(OUTDIR)\DeprecatedDOMCount.pdb" /debug /machine:I386 /out:"$(OUTDIR)\DeprecatedDOMCount.exe" /pdbtype:sept /libpath:"..\..\..\..\..\Build\Win32\VC6\Debug" 
-LINK32_OBJS= \
-	"$(INTDIR)\DeprecatedDOMCount.obj" \
-	"$(OUTDIR)\xerces-c_2D.lib" \
-	"$(OUTDIR)\xerces-depdom_2D.lib"
-
-"$(OUTDIR)\DeprecatedDOMCount.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win64 Debug"
-
-OUTDIR=.\..\..\..\..\..\Build\Win64\VC6\Debug
-INTDIR=.\..\..\..\..\..\Build\Win64\VC6\Debug\obj
-# Begin Custom Macros
-OutDir=.\..\..\..\..\..\Build\Win64\VC6\Debug
-# End Custom Macros
-
-!IF "$(RECURSE)" == "0" 
-
-ALL : "$(OUTDIR)\DeprecatedDOMCount.exe"
-
-!ELSE 
-
-ALL : "XercesDeprecatedDOMLib - Win64 Debug" "XercesLib - Win64 Debug" "$(OUTDIR)\DeprecatedDOMCount.exe"
-
-!ENDIF 
-
-!IF "$(RECURSE)" == "1" 
-CLEAN :"XercesLib - Win64 DebugCLEAN" "XercesDeprecatedDOMLib - Win64 DebugCLEAN" 
-!ELSE 
-CLEAN :
-!ENDIF 
-	-@erase "$(INTDIR)\DeprecatedDOMCount.obj"
-	-@erase "$(INTDIR)\vc60.idb"
-	-@erase "$(INTDIR)\vc60.pdb"
-	-@erase "$(OUTDIR)\DeprecatedDOMCount.exe"
-	-@erase "$(OUTDIR)\DeprecatedDOMCount.ilk"
-	-@erase "$(OUTDIR)\DeprecatedDOMCount.pdb"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-"$(INTDIR)" :
-    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
-
-CPP=$(CPP)
-CPP_PROJ=/MDd /W3 /Gm /GX /ZI /Od /I "..\..\..\..\..\src" /D "WIN64" /D "_DEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /D "PLATFORM_WIN32" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /GZ /c 
-
-.c{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.c{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-RSC=rc.exe
-BSC32=bscmake.exe
-BSC32_FLAGS=/o"$(OUTDIR)\DeprecatedDOMCount.bsc" 
-BSC32_SBRS= \
-	
-LINK32=link.exe
-LINK32_FLAGS=kernel32.lib user32.lib xerces-c_2D.lib xerces-depdom_2D.lib /subsystem:console /incremental:yes /pdb:"$(OUTDIR)\DeprecatedDOMCount.pdb" /debug /machine:IX86 /out:"$(OUTDIR)\DeprecatedDOMCount.exe" /pdbtype:sept /libpath:"..\..\..\..\..\Build\Win64\VC6\Debug" /machine:IA64 
-LINK32_OBJS= \
-	"$(INTDIR)\DeprecatedDOMCount.obj" \
-	"$(OUTDIR)\xerces-c_2D.lib" \
-	"$(OUTDIR)\xerces-depdom_2D.lib"
-
-"$(OUTDIR)\DeprecatedDOMCount.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win64 Release"
-
-OUTDIR=.\..\..\..\..\..\Build\Win64\VC6\Release
-INTDIR=.\..\..\..\..\..\Build\Win64\VC6\Release\obj
-# Begin Custom Macros
-OutDir=.\..\..\..\..\..\Build\Win64\VC6\Release
-# End Custom Macros
-
-!IF "$(RECURSE)" == "0" 
-
-ALL : "$(OUTDIR)\DeprecatedDOMCount.exe"
-
-!ELSE 
-
-ALL : "XercesDeprecatedDOMLib - Win64 Release" "XercesLib - Win64 Release" "$(OUTDIR)\DeprecatedDOMCount.exe"
-
-!ENDIF 
-
-!IF "$(RECURSE)" == "1" 
-CLEAN :"XercesLib - Win64 ReleaseCLEAN" "XercesDeprecatedDOMLib - Win64 ReleaseCLEAN" 
-!ELSE 
-CLEAN :
-!ENDIF 
-	-@erase "$(INTDIR)\DeprecatedDOMCount.obj"
-	-@erase "$(INTDIR)\vc60.idb"
-	-@erase "$(OUTDIR)\DeprecatedDOMCount.exe"
-	-@erase "$(OUTDIR)\DeprecatedDOMCount.ilk"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-"$(INTDIR)" :
-    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
-
-CPP=$(CPP)
-CPP_PROJ=/MD /W3 /GX /O2 /Ob2 /I "..\..\..\..\..\src" /D "WIN64" /D "NDEBUG" /D "_CONSOLE" /D "WIN32" /D "_WINDOWS" /D "PLATFORM_WIN32" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
-
-.c{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.c{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-RSC=rc.exe
-BSC32=bscmake.exe
-BSC32_FLAGS=/o"$(OUTDIR)\DeprecatedDOMCount.bsc" 
-BSC32_SBRS= \
-	
-LINK32=link.exe
-LINK32_FLAGS=kernel32.lib user32.lib xerces-c_2.lib xerces-depdom_2.lib /version:1.0 /subsystem:console /incremental:yes /pdb:"$(OUTDIR)\DeprecatedDOMCount.pdb" /machine:IX86 /out:"$(OUTDIR)\DeprecatedDOMCount.exe" /libpath:"..\..\..\..\..\Build\Win64\VC6\Release" /machine:IA64 
-LINK32_OBJS= \
-	"$(INTDIR)\DeprecatedDOMCount.obj" \
-	"$(OUTDIR)\xerces-c_2.lib" \
-	"$(OUTDIR)\xerces-depdom_2.lib"
-
-"$(OUTDIR)\DeprecatedDOMCount.exe" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ENDIF 
-
-
-!IF "$(NO_EXTERNAL_DEPS)" != "1"
-!IF EXISTS("DeprecatedDOMCount.dep")
-!INCLUDE "DeprecatedDOMCount.dep"
-!ELSE 
-!MESSAGE Warning: cannot find "DeprecatedDOMCount.dep"
-!ENDIF 
-!ENDIF 
-
-
-!IF "$(CFG)" == "DeprecatedDOMCount - Win32 Release" || "$(CFG)" == "DeprecatedDOMCount - Win32 Debug" || "$(CFG)" == "DeprecatedDOMCount - Win64 Debug" || "$(CFG)" == "DeprecatedDOMCount - Win64 Release"
-SOURCE=..\..\..\..\..\tests\DOM\DeprecatedDOMCount\DeprecatedDOMCount.cpp
-
-"$(INTDIR)\DeprecatedDOMCount.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-!IF  "$(CFG)" == "DeprecatedDOMCount - Win32 Release"
-
-"XercesLib - Win32 Release" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesLib.mak" CFG="XercesLib - Win32 Release" 
-   cd "..\DeprecatedDOMCount"
-
-"XercesLib - Win32 ReleaseCLEAN" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesLib.mak" CFG="XercesLib - Win32 Release" RECURSE=1 CLEAN 
-   cd "..\DeprecatedDOMCount"
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win32 Debug"
-
-"XercesLib - Win32 Debug" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesLib.mak" CFG="XercesLib - Win32 Debug" 
-   cd "..\DeprecatedDOMCount"
-
-"XercesLib - Win32 DebugCLEAN" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesLib.mak" CFG="XercesLib - Win32 Debug" RECURSE=1 CLEAN 
-   cd "..\DeprecatedDOMCount"
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win64 Debug"
-
-"XercesLib - Win64 Debug" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesLib.mak" CFG="XercesLib - Win64 Debug" 
-   cd "..\DeprecatedDOMCount"
-
-"XercesLib - Win64 DebugCLEAN" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesLib.mak" CFG="XercesLib - Win64 Debug" RECURSE=1 CLEAN 
-   cd "..\DeprecatedDOMCount"
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win64 Release"
-
-"XercesLib - Win64 Release" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesLib.mak" CFG="XercesLib - Win64 Release" 
-   cd "..\DeprecatedDOMCount"
-
-"XercesLib - Win64 ReleaseCLEAN" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesLib.mak" CFG="XercesLib - Win64 Release" RECURSE=1 CLEAN 
-   cd "..\DeprecatedDOMCount"
-
-!ENDIF 
-
-!IF  "$(CFG)" == "DeprecatedDOMCount - Win32 Release"
-
-"XercesDeprecatedDOMLib - Win32 Release" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win32 Release" 
-   cd "..\DeprecatedDOMCount"
-
-"XercesDeprecatedDOMLib - Win32 ReleaseCLEAN" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win32 Release" RECURSE=1 CLEAN 
-   cd "..\DeprecatedDOMCount"
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win32 Debug"
-
-"XercesDeprecatedDOMLib - Win32 Debug" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win32 Debug" 
-   cd "..\DeprecatedDOMCount"
-
-"XercesDeprecatedDOMLib - Win32 DebugCLEAN" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win32 Debug" RECURSE=1 CLEAN 
-   cd "..\DeprecatedDOMCount"
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win64 Debug"
-
-"XercesDeprecatedDOMLib - Win64 Debug" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win64 Debug" 
-   cd "..\DeprecatedDOMCount"
-
-"XercesDeprecatedDOMLib - Win64 DebugCLEAN" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win64 Debug" RECURSE=1 CLEAN 
-   cd "..\DeprecatedDOMCount"
-
-!ELSEIF  "$(CFG)" == "DeprecatedDOMCount - Win64 Release"
-
-"XercesDeprecatedDOMLib - Win64 Release" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win64 Release" 
-   cd "..\DeprecatedDOMCount"
-
-"XercesDeprecatedDOMLib - Win64 ReleaseCLEAN" : 
-   cd "..\XercesLib"
-   $(MAKE) CPP=$(CPP)  /$(MAKEFLAGS) /F ".\XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win64 Release" RECURSE=1 CLEAN 
-   cd "..\DeprecatedDOMCount"
-
-!ENDIF 
-
-
-!ENDIF 
-
diff --git a/Projects/Win32/VC6/xerces-all/XercesLib/XercesDeprecatedDOMLib.dsp b/Projects/Win32/VC6/xerces-all/XercesLib/XercesDeprecatedDOMLib.dsp
deleted file mode 100644
index 92affe9cd0d0d2ab43b74db1b86c9533b42838a2..0000000000000000000000000000000000000000
--- a/Projects/Win32/VC6/xerces-all/XercesLib/XercesDeprecatedDOMLib.dsp
+++ /dev/null
@@ -1,642 +0,0 @@
-# Microsoft Developer Studio Project File - Name="XercesDeprecatedDOMLib" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
-
-CFG=XercesDeprecatedDOMLib - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "XercesDeprecatedDOMLib.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "XercesDeprecatedDOMLib - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "XercesDeprecatedDOMLib - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "XercesDeprecatedDOMLib - Win64 Debug" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "XercesDeprecatedDOMLib - Win64 Release" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE 
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-MTL=midl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "XercesDeprecatedDOMLib - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "..\..\..\..\..\Build\Win32\VC6\Release"
-# PROP Intermediate_Dir "..\..\..\..\..\Build\Win32\VC6\Release\obj"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c
-# ADD CPP /GB /MD /Ze /W3 /GX /O2 /Ob2 /I "..\..\..\..\..\src" /D "NDEBUG" /D "_CRTDBG_MAP_ALLOC" /D "XERCES_BUILDING_DEPRECATED_LIBRARY" /D "WIN32" /D "_WINDOWS" /FD /c
-# SUBTRACT CPP /Fr
-# ADD BASE MTL /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /subsystem:windows /dll /machine:I386
-# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib xerces-c_3.lib /base:"0x12000000" /subsystem:windows /dll /map /machine:I386 /out:"..\..\..\..\..\Build\Win32\VC6\Release\xerces-depdom_3_0.dll" /implib:"..\..\..\..\..\Build\Win32\VC6\Release\xerces-depdom_3.lib" /libpath:"..\..\..\..\..\Build\Win32\VC6\Release"
-# SUBTRACT LINK32 /pdb:none
-
-!ELSEIF  "$(CFG)" == "XercesDeprecatedDOMLib - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "..\..\..\..\..\Build\Win32\VC6\Debug"
-# PROP Intermediate_Dir "..\..\..\..\..\Build\Win32\VC6\Debug\obj"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /MTd /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /c
-# ADD CPP /GB /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\..\..\src" /D "_DEBUG" /D "_CRTDBG_MAP_ALLOC" /D "XERCES_BUILDING_DEPRECATED_LIBRARY" /D "WIN32" /D "_WINDOWS" /FD /c
-# SUBTRACT CPP /Fr /YX
-# ADD BASE MTL /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib xerces-c_3D.lib /base:"0x12000000" /subsystem:windows /dll /debug /machine:I386 /out:"..\..\..\..\..\Build\Win32\VC6\Debug/xerces-depdom_3_0D.dll" /implib:"..\..\..\..\..\Build\Win32\VC6\Debug/xerces-depdom_3D.lib" /pdbtype:sept /libpath:"..\..\..\..\..\Build\Win32\VC6\Debug"
-# SUBTRACT LINK32 /pdb:none
-
-!ELSEIF  "$(CFG)" == "XercesDeprecatedDOMLib - Win64 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Ignore_Export_Lib 0
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "..\..\..\..\..\Build\Win64\VC6\Debug"
-# PROP Intermediate_Dir "..\..\..\..\..\Build\Win64\VC6\Debug\obj"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /G6 /MDd /Za /W3 /Gm /GX /Zi /Od /I "..\..\..\..\..\src" /D "_CRTDBG_MAP_ALLOC" /D "PROJ_SAX2" /D "_DEBUG" /D "PROJ_XMLPARSER" /D "PROJ_XMLUTIL" /D "PROJ_PARSERS" /D "PROJ_SAX4C" /D "PROJ_DOM" /D "PROJ_VALIDATORS" /D "XML_SINGLEDLL" /D "WIN32" /D "_WINDOWS" /D "XML_USE_WIN32_TRANSCODER" /D "XML_USE_WIN32_MSGLOADER" /D "XML_USE_NETACCESSOR_WINSOCK" /FD /c
-# SUBTRACT BASE CPP /Fr /YX
-# ADD CPP /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\..\..\src" /D "WIN64" /D "_DEBUG" /D "_CRTDBG_MAP_ALLOC" /D "XERCES_BUILDING_DEPRECATED_LIBRARY" /D "WIN32" /D "_WINDOWS" /FD /c
-# ADD BASE MTL /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /D "_DEBUG" /mktyplib203 /o "NUL" /win32
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-LINK32=link.exe
-# ADD BASE LINK32 /machine:IX86
-# SUBTRACT BASE LINK32 /pdb:none
-# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib xerces-c_3D.lib /base:"0x12000000" /subsystem:windows /dll /debug /machine:IX86 /out:"..\..\..\..\..\Build\Win64\VC6\Debug/xerces-depdom_3_0D.dll" /implib:"..\..\..\..\..\Build\Win64\VC6\Debug/xerces-depdom_3D.lib" /pdbtype:sept /libpath:"..\..\..\..\..\Build\Win64\VC6\Debug" /machine:IA64
-# SUBTRACT LINK32 /pdb:none
-
-!ELSEIF  "$(CFG)" == "XercesDeprecatedDOMLib - Win64 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Ignore_Export_Lib 0
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "..\..\..\..\..\Build\Win64\VC6\Release"
-# PROP Intermediate_Dir "..\..\..\..\..\Build\Win64\VC6\Release\obj"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /G6 /MD /Za /W3 /GX /O2 /I "..\..\..\..\..\src" /D "NDEBUG" /D "PLATFORM_WIN32" /D "_CRTDBG_MAP_ALLOC" /D "PROJ_XMLPARSER" /D "PROJ_XMLUTIL" /D "PROJ_PARSERS" /D "PROJ_SAX4C" /D "PROJ_SAX2" /D "PROJ_DOM" /D "PROJ_VALIDATORS" /D "XML_SINGLEDLL" /D "WIN32" /D "_WINDOWS" /D "XML_USE_WIN32_TRANSCODER" /D "XML_USE_WIN32_MSGLOADER" /D "XML_USE_NETACCESSOR_WINSOCK" /FD /c
-# ADD CPP /MD /W3 /GX /O2 /I "..\..\..\..\..\src" /D "WIN64" /D "NDEBUG" /D "_CRTDBG_MAP_ALLOC" /D "XERCES_BUILDING_DEPRECATED_LIBRARY" /D "WIN32" /D "_WINDOWS" /FD /c
-# ADD BASE MTL /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-# ADD MTL /D "NDEBUG" /mktyplib203 /o "NUL" /win32
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-LINK32=link.exe
-# ADD BASE LINK32 /machine:IX86
-# SUBTRACT BASE LINK32 /pdb:none /incremental:yes
-# ADD LINK32 kernel32.lib user32.lib advapi32.lib ws2_32.lib xerces-c_3.lib /base:"0x12000000" /subsystem:windows /dll /incremental:yes /map /machine:IX86 /out:"..\..\..\..\..\Build\Win64\VC6\Release\xerces-depdom_3_0.dll" /implib:"..\..\..\..\..\Build\Win64\VC6\Release\xerces-depdom_3.lib" /libpath:"..\..\..\..\..\Build\Win64\VC6\Release" /machine:IA64
-# SUBTRACT LINK32 /pdb:none
-
-!ENDIF 
-
-# Begin Target
-
-# Name "XercesDeprecatedDOMLib - Win32 Release"
-# Name "XercesDeprecatedDOMLib - Win32 Debug"
-# Name "XercesDeprecatedDOMLib - Win64 Debug"
-# Name "XercesDeprecatedDOMLib - Win64 Release"
-# Begin Group "dom"
-
-# PROP Default_Filter ""
-# Begin Group "deprecated"
-
-# PROP Default_Filter ""
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\AttrImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\AttrImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\AttrMapImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\AttrMapImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\AttrNSImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\AttrNSImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\CDATASectionImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\CDATASectionImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\CharacterDataImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\CharacterDataImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ChildNode.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ChildNode.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\CommentImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\CommentImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DeepNodeListImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DeepNodeListImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DocumentFragmentImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DocumentFragmentImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DocumentImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DocumentImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DocumentTypeImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DocumentTypeImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Attr.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Attr.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CDATASection.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CDATASection.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CharacterData.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CharacterData.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Comment.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Comment.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Document.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Document.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentFragment.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentFragment.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentType.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentType.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMException.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMException.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMImplementation.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMImplementation.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Element.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Element.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Entity.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Entity.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_EntityReference.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_EntityReference.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NamedNodeMap.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NamedNodeMap.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Node.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Node.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeFilter.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeFilter.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeIterator.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeIterator.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeList.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeList.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Notation.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Notation.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_ProcessingInstruction.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_ProcessingInstruction.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Range.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Range.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_RangeException.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_RangeException.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Text.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Text.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_TreeWalker.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_TreeWalker.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_XMLDecl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_XMLDecl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DomMemDebug.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DomMemDebug.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOMParser.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOMParser.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOMString.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOMString.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOMStringImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DStringPool.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DStringPool.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ElementDefinitionImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ElementDefinitionImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ElementImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ElementNSImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ElementNSImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\EntityImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\EntityImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\EntityReferenceImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\EntityReferenceImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\Makefile.in
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\MemDebug.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NamedNodeMapImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NamedNodeMapImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NameNodeFilter.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeIDMap.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeIDMap.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeIteratorImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeIteratorImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeListImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeListImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeVector.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeVector.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NotationImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NotationImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ParentNode.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ParentNode.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ProcessingInstructionImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ProcessingInstructionImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\RangeImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\RangeImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\RefCountedImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\RefCountedImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\TextImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\TextImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\TreeWalkerImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\TreeWalkerImpl.hpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\XMLDeclImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\XMLDeclImpl.hpp
-# End Source File
-# End Group
-# End Group
-# End Target
-# End Project
diff --git a/Projects/Win32/VC6/xerces-all/XercesLib/XercesDeprecatedDOMLib.mak b/Projects/Win32/VC6/xerces-all/XercesLib/XercesDeprecatedDOMLib.mak
deleted file mode 100644
index 577b06b66a13308ae09b416aaad950902b51469d..0000000000000000000000000000000000000000
--- a/Projects/Win32/VC6/xerces-all/XercesLib/XercesDeprecatedDOMLib.mak
+++ /dev/null
@@ -1,1154 +0,0 @@
-# Microsoft Developer Studio Generated NMAKE File, Based on XercesDeprecatedDOMLib.dsp
-!IF "$(CFG)" == ""
-CFG=XercesDeprecatedDOMLib - Win32 Debug
-!MESSAGE No configuration specified. Defaulting to XercesDeprecatedDOMLib - Win32 Debug.
-!ENDIF 
-
-!IF "$(CFG)" != "XercesDeprecatedDOMLib - Win32 Release" && "$(CFG)" != "XercesDeprecatedDOMLib - Win32 Debug" && "$(CFG)" != "XercesDeprecatedDOMLib - Win64 Debug" && "$(CFG)" != "XercesDeprecatedDOMLib - Win64 Release"
-!MESSAGE Invalid configuration "$(CFG)" specified.
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "XercesDeprecatedDOMLib.mak" CFG="XercesDeprecatedDOMLib - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "XercesDeprecatedDOMLib - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "XercesDeprecatedDOMLib - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "XercesDeprecatedDOMLib - Win64 Debug" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "XercesDeprecatedDOMLib - Win64 Release" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE 
-!ERROR An invalid configuration is specified.
-!ENDIF 
-
-!IF "$(OS)" == "Windows_NT"
-NULL=
-!ELSE 
-NULL=nul
-!ENDIF 
-
-!IF  "$(CFG)" == "XercesDeprecatedDOMLib - Win32 Release"
-
-OUTDIR=.\..\..\..\..\..\Build\Win32\VC6\Release
-INTDIR=.\..\..\..\..\..\Build\Win32\VC6\Release\obj
-# Begin Custom Macros
-OutDir=.\..\..\..\..\..\Build\Win32\VC6\Release
-# End Custom Macros
-
-ALL : "$(OUTDIR)\xerces-depdom_3_0.dll"
-
-
-CLEAN :
-	-@erase "$(INTDIR)\AttrImpl.obj"
-	-@erase "$(INTDIR)\AttrMapImpl.obj"
-	-@erase "$(INTDIR)\AttrNSImpl.obj"
-	-@erase "$(INTDIR)\CDATASectionImpl.obj"
-	-@erase "$(INTDIR)\CharacterDataImpl.obj"
-	-@erase "$(INTDIR)\ChildNode.obj"
-	-@erase "$(INTDIR)\CommentImpl.obj"
-	-@erase "$(INTDIR)\DeepNodeListImpl.obj"
-	-@erase "$(INTDIR)\DocumentFragmentImpl.obj"
-	-@erase "$(INTDIR)\DocumentImpl.obj"
-	-@erase "$(INTDIR)\DocumentTypeImpl.obj"
-	-@erase "$(INTDIR)\DOM_Attr.obj"
-	-@erase "$(INTDIR)\DOM_CDATASection.obj"
-	-@erase "$(INTDIR)\DOM_CharacterData.obj"
-	-@erase "$(INTDIR)\DOM_Comment.obj"
-	-@erase "$(INTDIR)\DOM_Document.obj"
-	-@erase "$(INTDIR)\DOM_DocumentFragment.obj"
-	-@erase "$(INTDIR)\DOM_DocumentType.obj"
-	-@erase "$(INTDIR)\DOM_DOMException.obj"
-	-@erase "$(INTDIR)\DOM_DOMImplementation.obj"
-	-@erase "$(INTDIR)\DOM_Element.obj"
-	-@erase "$(INTDIR)\DOM_Entity.obj"
-	-@erase "$(INTDIR)\DOM_EntityReference.obj"
-	-@erase "$(INTDIR)\DOM_NamedNodeMap.obj"
-	-@erase "$(INTDIR)\DOM_Node.obj"
-	-@erase "$(INTDIR)\DOM_NodeFilter.obj"
-	-@erase "$(INTDIR)\DOM_NodeIterator.obj"
-	-@erase "$(INTDIR)\DOM_NodeList.obj"
-	-@erase "$(INTDIR)\DOM_Notation.obj"
-	-@erase "$(INTDIR)\DOM_ProcessingInstruction.obj"
-	-@erase "$(INTDIR)\DOM_Range.obj"
-	-@erase "$(INTDIR)\DOM_RangeException.obj"
-	-@erase "$(INTDIR)\DOM_Text.obj"
-	-@erase "$(INTDIR)\DOM_TreeWalker.obj"
-	-@erase "$(INTDIR)\DOM_XMLDecl.obj"
-	-@erase "$(INTDIR)\DomMemDebug.obj"
-	-@erase "$(INTDIR)\DOMParser.obj"
-	-@erase "$(INTDIR)\DOMString.obj"
-	-@erase "$(INTDIR)\DStringPool.obj"
-	-@erase "$(INTDIR)\ElementDefinitionImpl.obj"
-	-@erase "$(INTDIR)\ElementImpl.obj"
-	-@erase "$(INTDIR)\ElementNSImpl.obj"
-	-@erase "$(INTDIR)\EntityImpl.obj"
-	-@erase "$(INTDIR)\EntityReferenceImpl.obj"
-	-@erase "$(INTDIR)\NamedNodeMapImpl.obj"
-	-@erase "$(INTDIR)\NodeIDMap.obj"
-	-@erase "$(INTDIR)\NodeImpl.obj"
-	-@erase "$(INTDIR)\NodeIteratorImpl.obj"
-	-@erase "$(INTDIR)\NodeListImpl.obj"
-	-@erase "$(INTDIR)\NodeVector.obj"
-	-@erase "$(INTDIR)\NotationImpl.obj"
-	-@erase "$(INTDIR)\ParentNode.obj"
-	-@erase "$(INTDIR)\ProcessingInstructionImpl.obj"
-	-@erase "$(INTDIR)\RangeImpl.obj"
-	-@erase "$(INTDIR)\RefCountedImpl.obj"
-	-@erase "$(INTDIR)\TextImpl.obj"
-	-@erase "$(INTDIR)\TreeWalkerImpl.obj"
-	-@erase "$(INTDIR)\vc60.idb"
-	-@erase "$(INTDIR)\XMLDeclImpl.obj"
-	-@erase "$(OUTDIR)\obj\xerces-depdom_3_0.map"
-	-@erase "$(OUTDIR)\xerces-depdom_3.exp"
-	-@erase "$(OUTDIR)\xerces-depdom_3.lib"
-	-@erase "$(OUTDIR)\xerces-depdom_3_0.dll"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-"$(INTDIR)" :
-    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
-
-CPP=$(CPP)
-CPP_PROJ=/MD /W3 /GX /O2 /Ob2 /I "..\..\..\..\..\src" /D "NDEBUG" /D "_CRTDBG_MAP_ALLOC" /D "XERCES_BUILDING_DEPRECATED_LIBRARY" /D "WIN32" /D "_WINDOWS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
-
-.c{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.c{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-MTL=midl.exe
-MTL_PROJ=/D "NDEBUG" /mktyplib203 /o "NUL" /win32 
-RSC=rc.exe
-BSC32=bscmake.exe
-BSC32_FLAGS=/o"$(OUTDIR)\XercesDeprecatedDOMLib.bsc" 
-BSC32_SBRS= \
-	
-LINK32=link.exe
-LINK32_FLAGS=kernel32.lib user32.lib advapi32.lib ws2_32.lib xerces-c_3.lib /base:"0x12000000" /subsystem:windows /dll /incremental:no /pdb:"$(OUTDIR)\xerces-depdom_3_0.pdb" /map:"$(INTDIR)\xerces-depdom_3_0.map" /machine:I386 /out:"$(OUTDIR)\xerces-depdom_3_0.dll" /implib:"$(OUTDIR)\xerces-depdom_3.lib" /libpath:"..\..\..\..\..\Build\Win32\VC6\Release" 
-LINK32_OBJS= \
-	"$(INTDIR)\AttrImpl.obj" \
-	"$(INTDIR)\AttrMapImpl.obj" \
-	"$(INTDIR)\AttrNSImpl.obj" \
-	"$(INTDIR)\CDATASectionImpl.obj" \
-	"$(INTDIR)\CharacterDataImpl.obj" \
-	"$(INTDIR)\ChildNode.obj" \
-	"$(INTDIR)\CommentImpl.obj" \
-	"$(INTDIR)\DeepNodeListImpl.obj" \
-	"$(INTDIR)\DocumentFragmentImpl.obj" \
-	"$(INTDIR)\DocumentImpl.obj" \
-	"$(INTDIR)\DocumentTypeImpl.obj" \
-	"$(INTDIR)\DOM_Attr.obj" \
-	"$(INTDIR)\DOM_CDATASection.obj" \
-	"$(INTDIR)\DOM_CharacterData.obj" \
-	"$(INTDIR)\DOM_Comment.obj" \
-	"$(INTDIR)\DOM_Document.obj" \
-	"$(INTDIR)\DOM_DocumentFragment.obj" \
-	"$(INTDIR)\DOM_DocumentType.obj" \
-	"$(INTDIR)\DOM_DOMException.obj" \
-	"$(INTDIR)\DOM_DOMImplementation.obj" \
-	"$(INTDIR)\DOM_Element.obj" \
-	"$(INTDIR)\DOM_Entity.obj" \
-	"$(INTDIR)\DOM_EntityReference.obj" \
-	"$(INTDIR)\DOM_NamedNodeMap.obj" \
-	"$(INTDIR)\DOM_Node.obj" \
-	"$(INTDIR)\DOM_NodeFilter.obj" \
-	"$(INTDIR)\DOM_NodeIterator.obj" \
-	"$(INTDIR)\DOM_NodeList.obj" \
-	"$(INTDIR)\DOM_Notation.obj" \
-	"$(INTDIR)\DOM_ProcessingInstruction.obj" \
-	"$(INTDIR)\DOM_Range.obj" \
-	"$(INTDIR)\DOM_RangeException.obj" \
-	"$(INTDIR)\DOM_Text.obj" \
-	"$(INTDIR)\DOM_TreeWalker.obj" \
-	"$(INTDIR)\DOM_XMLDecl.obj" \
-	"$(INTDIR)\DomMemDebug.obj" \
-	"$(INTDIR)\DOMParser.obj" \
-	"$(INTDIR)\DOMString.obj" \
-	"$(INTDIR)\DStringPool.obj" \
-	"$(INTDIR)\ElementDefinitionImpl.obj" \
-	"$(INTDIR)\ElementImpl.obj" \
-	"$(INTDIR)\ElementNSImpl.obj" \
-	"$(INTDIR)\EntityImpl.obj" \
-	"$(INTDIR)\EntityReferenceImpl.obj" \
-	"$(INTDIR)\NamedNodeMapImpl.obj" \
-	"$(INTDIR)\NodeIDMap.obj" \
-	"$(INTDIR)\NodeImpl.obj" \
-	"$(INTDIR)\NodeIteratorImpl.obj" \
-	"$(INTDIR)\NodeListImpl.obj" \
-	"$(INTDIR)\NodeVector.obj" \
-	"$(INTDIR)\NotationImpl.obj" \
-	"$(INTDIR)\ParentNode.obj" \
-	"$(INTDIR)\ProcessingInstructionImpl.obj" \
-	"$(INTDIR)\RangeImpl.obj" \
-	"$(INTDIR)\RefCountedImpl.obj" \
-	"$(INTDIR)\TextImpl.obj" \
-	"$(INTDIR)\TreeWalkerImpl.obj" \
-	"$(INTDIR)\XMLDeclImpl.obj"
-
-"$(OUTDIR)\xerces-depdom_3_0.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF  "$(CFG)" == "XercesDeprecatedDOMLib - Win32 Debug"
-
-OUTDIR=.\..\..\..\..\..\Build\Win32\VC6\Debug
-INTDIR=.\..\..\..\..\..\Build\Win32\VC6\Debug\obj
-# Begin Custom Macros
-OutDir=.\..\..\..\..\..\Build\Win32\VC6\Debug
-# End Custom Macros
-
-ALL : "$(OUTDIR)\xerces-depdom_3_0D.dll"
-
-
-CLEAN :
-	-@erase "$(INTDIR)\AttrImpl.obj"
-	-@erase "$(INTDIR)\AttrMapImpl.obj"
-	-@erase "$(INTDIR)\AttrNSImpl.obj"
-	-@erase "$(INTDIR)\CDATASectionImpl.obj"
-	-@erase "$(INTDIR)\CharacterDataImpl.obj"
-	-@erase "$(INTDIR)\ChildNode.obj"
-	-@erase "$(INTDIR)\CommentImpl.obj"
-	-@erase "$(INTDIR)\DeepNodeListImpl.obj"
-	-@erase "$(INTDIR)\DocumentFragmentImpl.obj"
-	-@erase "$(INTDIR)\DocumentImpl.obj"
-	-@erase "$(INTDIR)\DocumentTypeImpl.obj"
-	-@erase "$(INTDIR)\DOM_Attr.obj"
-	-@erase "$(INTDIR)\DOM_CDATASection.obj"
-	-@erase "$(INTDIR)\DOM_CharacterData.obj"
-	-@erase "$(INTDIR)\DOM_Comment.obj"
-	-@erase "$(INTDIR)\DOM_Document.obj"
-	-@erase "$(INTDIR)\DOM_DocumentFragment.obj"
-	-@erase "$(INTDIR)\DOM_DocumentType.obj"
-	-@erase "$(INTDIR)\DOM_DOMException.obj"
-	-@erase "$(INTDIR)\DOM_DOMImplementation.obj"
-	-@erase "$(INTDIR)\DOM_Element.obj"
-	-@erase "$(INTDIR)\DOM_Entity.obj"
-	-@erase "$(INTDIR)\DOM_EntityReference.obj"
-	-@erase "$(INTDIR)\DOM_NamedNodeMap.obj"
-	-@erase "$(INTDIR)\DOM_Node.obj"
-	-@erase "$(INTDIR)\DOM_NodeFilter.obj"
-	-@erase "$(INTDIR)\DOM_NodeIterator.obj"
-	-@erase "$(INTDIR)\DOM_NodeList.obj"
-	-@erase "$(INTDIR)\DOM_Notation.obj"
-	-@erase "$(INTDIR)\DOM_ProcessingInstruction.obj"
-	-@erase "$(INTDIR)\DOM_Range.obj"
-	-@erase "$(INTDIR)\DOM_RangeException.obj"
-	-@erase "$(INTDIR)\DOM_Text.obj"
-	-@erase "$(INTDIR)\DOM_TreeWalker.obj"
-	-@erase "$(INTDIR)\DOM_XMLDecl.obj"
-	-@erase "$(INTDIR)\DomMemDebug.obj"
-	-@erase "$(INTDIR)\DOMParser.obj"
-	-@erase "$(INTDIR)\DOMString.obj"
-	-@erase "$(INTDIR)\DStringPool.obj"
-	-@erase "$(INTDIR)\ElementDefinitionImpl.obj"
-	-@erase "$(INTDIR)\ElementImpl.obj"
-	-@erase "$(INTDIR)\ElementNSImpl.obj"
-	-@erase "$(INTDIR)\EntityImpl.obj"
-	-@erase "$(INTDIR)\EntityReferenceImpl.obj"
-	-@erase "$(INTDIR)\NamedNodeMapImpl.obj"
-	-@erase "$(INTDIR)\NodeIDMap.obj"
-	-@erase "$(INTDIR)\NodeImpl.obj"
-	-@erase "$(INTDIR)\NodeIteratorImpl.obj"
-	-@erase "$(INTDIR)\NodeListImpl.obj"
-	-@erase "$(INTDIR)\NodeVector.obj"
-	-@erase "$(INTDIR)\NotationImpl.obj"
-	-@erase "$(INTDIR)\ParentNode.obj"
-	-@erase "$(INTDIR)\ProcessingInstructionImpl.obj"
-	-@erase "$(INTDIR)\RangeImpl.obj"
-	-@erase "$(INTDIR)\RefCountedImpl.obj"
-	-@erase "$(INTDIR)\TextImpl.obj"
-	-@erase "$(INTDIR)\TreeWalkerImpl.obj"
-	-@erase "$(INTDIR)\vc60.idb"
-	-@erase "$(INTDIR)\vc60.pdb"
-	-@erase "$(INTDIR)\XMLDeclImpl.obj"
-	-@erase "$(OUTDIR)\xerces-depdom_3_0D.dll"
-	-@erase "$(OUTDIR)\xerces-depdom_3_0D.ilk"
-	-@erase "$(OUTDIR)\xerces-depdom_3_0D.pdb"
-	-@erase "$(OUTDIR)\xerces-depdom_3D.exp"
-	-@erase "$(OUTDIR)\xerces-depdom_3D.lib"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-"$(INTDIR)" :
-    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
-
-CPP=$(CPP)
-CPP_PROJ=/MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\..\..\src" /D "_DEBUG" /D "_CRTDBG_MAP_ALLOC" /D "XERCES_BUILDING_DEPRECATED_LIBRARY" /D "WIN32" /D "_WINDOWS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
-
-.c{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.c{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-MTL=midl.exe
-MTL_PROJ=/D "_DEBUG" /mktyplib203 /o "NUL" /win32 
-RSC=rc.exe
-BSC32=bscmake.exe
-BSC32_FLAGS=/o"$(OUTDIR)\XercesDeprecatedDOMLib.bsc" 
-BSC32_SBRS= \
-	
-LINK32=link.exe
-LINK32_FLAGS=kernel32.lib user32.lib advapi32.lib ws2_32.lib xerces-c_3D.lib /base:"0x12000000" /subsystem:windows /dll /incremental:yes /pdb:"$(OUTDIR)\xerces-depdom_3_0D.pdb" /debug /machine:I386 /out:"$(OUTDIR)\xerces-depdom_3_0D.dll" /implib:"$(OUTDIR)\xerces-depdom_3D.lib" /pdbtype:sept /libpath:"..\..\..\..\..\Build\Win32\VC6\Debug" 
-LINK32_OBJS= \
-	"$(INTDIR)\AttrImpl.obj" \
-	"$(INTDIR)\AttrMapImpl.obj" \
-	"$(INTDIR)\AttrNSImpl.obj" \
-	"$(INTDIR)\CDATASectionImpl.obj" \
-	"$(INTDIR)\CharacterDataImpl.obj" \
-	"$(INTDIR)\ChildNode.obj" \
-	"$(INTDIR)\CommentImpl.obj" \
-	"$(INTDIR)\DeepNodeListImpl.obj" \
-	"$(INTDIR)\DocumentFragmentImpl.obj" \
-	"$(INTDIR)\DocumentImpl.obj" \
-	"$(INTDIR)\DocumentTypeImpl.obj" \
-	"$(INTDIR)\DOM_Attr.obj" \
-	"$(INTDIR)\DOM_CDATASection.obj" \
-	"$(INTDIR)\DOM_CharacterData.obj" \
-	"$(INTDIR)\DOM_Comment.obj" \
-	"$(INTDIR)\DOM_Document.obj" \
-	"$(INTDIR)\DOM_DocumentFragment.obj" \
-	"$(INTDIR)\DOM_DocumentType.obj" \
-	"$(INTDIR)\DOM_DOMException.obj" \
-	"$(INTDIR)\DOM_DOMImplementation.obj" \
-	"$(INTDIR)\DOM_Element.obj" \
-	"$(INTDIR)\DOM_Entity.obj" \
-	"$(INTDIR)\DOM_EntityReference.obj" \
-	"$(INTDIR)\DOM_NamedNodeMap.obj" \
-	"$(INTDIR)\DOM_Node.obj" \
-	"$(INTDIR)\DOM_NodeFilter.obj" \
-	"$(INTDIR)\DOM_NodeIterator.obj" \
-	"$(INTDIR)\DOM_NodeList.obj" \
-	"$(INTDIR)\DOM_Notation.obj" \
-	"$(INTDIR)\DOM_ProcessingInstruction.obj" \
-	"$(INTDIR)\DOM_Range.obj" \
-	"$(INTDIR)\DOM_RangeException.obj" \
-	"$(INTDIR)\DOM_Text.obj" \
-	"$(INTDIR)\DOM_TreeWalker.obj" \
-	"$(INTDIR)\DOM_XMLDecl.obj" \
-	"$(INTDIR)\DomMemDebug.obj" \
-	"$(INTDIR)\DOMParser.obj" \
-	"$(INTDIR)\DOMString.obj" \
-	"$(INTDIR)\DStringPool.obj" \
-	"$(INTDIR)\ElementDefinitionImpl.obj" \
-	"$(INTDIR)\ElementImpl.obj" \
-	"$(INTDIR)\ElementNSImpl.obj" \
-	"$(INTDIR)\EntityImpl.obj" \
-	"$(INTDIR)\EntityReferenceImpl.obj" \
-	"$(INTDIR)\NamedNodeMapImpl.obj" \
-	"$(INTDIR)\NodeIDMap.obj" \
-	"$(INTDIR)\NodeImpl.obj" \
-	"$(INTDIR)\NodeIteratorImpl.obj" \
-	"$(INTDIR)\NodeListImpl.obj" \
-	"$(INTDIR)\NodeVector.obj" \
-	"$(INTDIR)\NotationImpl.obj" \
-	"$(INTDIR)\ParentNode.obj" \
-	"$(INTDIR)\ProcessingInstructionImpl.obj" \
-	"$(INTDIR)\RangeImpl.obj" \
-	"$(INTDIR)\RefCountedImpl.obj" \
-	"$(INTDIR)\TextImpl.obj" \
-	"$(INTDIR)\TreeWalkerImpl.obj" \
-	"$(INTDIR)\XMLDeclImpl.obj"
-
-"$(OUTDIR)\xerces-depdom_3_0D.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF  "$(CFG)" == "XercesDeprecatedDOMLib - Win64 Debug"
-
-OUTDIR=.\..\..\..\..\..\Build\Win64\VC6\Debug
-INTDIR=.\..\..\..\..\..\Build\Win64\VC6\Debug\obj
-# Begin Custom Macros
-OutDir=.\..\..\..\..\..\Build\Win64\VC6\Debug
-# End Custom Macros
-
-ALL : "$(OUTDIR)\xerces-depdom_3_0D.dll"
-
-
-CLEAN :
-	-@erase "$(INTDIR)\AttrImpl.obj"
-	-@erase "$(INTDIR)\AttrMapImpl.obj"
-	-@erase "$(INTDIR)\AttrNSImpl.obj"
-	-@erase "$(INTDIR)\CDATASectionImpl.obj"
-	-@erase "$(INTDIR)\CharacterDataImpl.obj"
-	-@erase "$(INTDIR)\ChildNode.obj"
-	-@erase "$(INTDIR)\CommentImpl.obj"
-	-@erase "$(INTDIR)\DeepNodeListImpl.obj"
-	-@erase "$(INTDIR)\DocumentFragmentImpl.obj"
-	-@erase "$(INTDIR)\DocumentImpl.obj"
-	-@erase "$(INTDIR)\DocumentTypeImpl.obj"
-	-@erase "$(INTDIR)\DOM_Attr.obj"
-	-@erase "$(INTDIR)\DOM_CDATASection.obj"
-	-@erase "$(INTDIR)\DOM_CharacterData.obj"
-	-@erase "$(INTDIR)\DOM_Comment.obj"
-	-@erase "$(INTDIR)\DOM_Document.obj"
-	-@erase "$(INTDIR)\DOM_DocumentFragment.obj"
-	-@erase "$(INTDIR)\DOM_DocumentType.obj"
-	-@erase "$(INTDIR)\DOM_DOMException.obj"
-	-@erase "$(INTDIR)\DOM_DOMImplementation.obj"
-	-@erase "$(INTDIR)\DOM_Element.obj"
-	-@erase "$(INTDIR)\DOM_Entity.obj"
-	-@erase "$(INTDIR)\DOM_EntityReference.obj"
-	-@erase "$(INTDIR)\DOM_NamedNodeMap.obj"
-	-@erase "$(INTDIR)\DOM_Node.obj"
-	-@erase "$(INTDIR)\DOM_NodeFilter.obj"
-	-@erase "$(INTDIR)\DOM_NodeIterator.obj"
-	-@erase "$(INTDIR)\DOM_NodeList.obj"
-	-@erase "$(INTDIR)\DOM_Notation.obj"
-	-@erase "$(INTDIR)\DOM_ProcessingInstruction.obj"
-	-@erase "$(INTDIR)\DOM_Range.obj"
-	-@erase "$(INTDIR)\DOM_RangeException.obj"
-	-@erase "$(INTDIR)\DOM_Text.obj"
-	-@erase "$(INTDIR)\DOM_TreeWalker.obj"
-	-@erase "$(INTDIR)\DOM_XMLDecl.obj"
-	-@erase "$(INTDIR)\DomMemDebug.obj"
-	-@erase "$(INTDIR)\DOMParser.obj"
-	-@erase "$(INTDIR)\DOMString.obj"
-	-@erase "$(INTDIR)\DStringPool.obj"
-	-@erase "$(INTDIR)\ElementDefinitionImpl.obj"
-	-@erase "$(INTDIR)\ElementImpl.obj"
-	-@erase "$(INTDIR)\ElementNSImpl.obj"
-	-@erase "$(INTDIR)\EntityImpl.obj"
-	-@erase "$(INTDIR)\EntityReferenceImpl.obj"
-	-@erase "$(INTDIR)\NamedNodeMapImpl.obj"
-	-@erase "$(INTDIR)\NodeIDMap.obj"
-	-@erase "$(INTDIR)\NodeImpl.obj"
-	-@erase "$(INTDIR)\NodeIteratorImpl.obj"
-	-@erase "$(INTDIR)\NodeListImpl.obj"
-	-@erase "$(INTDIR)\NodeVector.obj"
-	-@erase "$(INTDIR)\NotationImpl.obj"
-	-@erase "$(INTDIR)\ParentNode.obj"
-	-@erase "$(INTDIR)\ProcessingInstructionImpl.obj"
-	-@erase "$(INTDIR)\RangeImpl.obj"
-	-@erase "$(INTDIR)\RefCountedImpl.obj"
-	-@erase "$(INTDIR)\TextImpl.obj"
-	-@erase "$(INTDIR)\TreeWalkerImpl.obj"
-	-@erase "$(INTDIR)\vc60.idb"
-	-@erase "$(INTDIR)\vc60.pdb"
-	-@erase "$(INTDIR)\XMLDeclImpl.obj"
-	-@erase "$(OUTDIR)\xerces-depdom_3_0D.dll"
-	-@erase "$(OUTDIR)\xerces-depdom_3_0D.ilk"
-	-@erase "$(OUTDIR)\xerces-depdom_3_0D.pdb"
-	-@erase "$(OUTDIR)\xerces-depdom_3D.exp"
-	-@erase "$(OUTDIR)\xerces-depdom_3D.lib"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-"$(INTDIR)" :
-    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
-
-CPP=$(CPP)
-CPP_PROJ=/MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\..\..\src" /D "WIN64" /D "_DEBUG" /D "_CRTDBG_MAP_ALLOC" /D "XERCES_BUILDING_DEPRECATED_LIBRARY" /D "WIN32" /D "_WINDOWS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
-
-.c{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.c{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-MTL=midl.exe
-MTL_PROJ=/D "_DEBUG" /mktyplib203 /o "NUL" /win32 
-RSC=rc.exe
-BSC32=bscmake.exe
-BSC32_FLAGS=/o"$(OUTDIR)\XercesDeprecatedDOMLib.bsc" 
-BSC32_SBRS= \
-	
-LINK32=link.exe
-LINK32_FLAGS=kernel32.lib user32.lib advapi32.lib ws2_32.lib xerces-c_3D.lib /base:"0x12000000" /subsystem:windows /dll /incremental:yes /pdb:"$(OUTDIR)\xerces-depdom_3_0D.pdb" /debug /machine:IX86 /out:"$(OUTDIR)\xerces-depdom_3_0D.dll" /implib:"$(OUTDIR)\xerces-depdom_3D.lib" /pdbtype:sept /libpath:"..\..\..\..\..\Build\Win64\VC6\Debug" /machine:IA64 
-LINK32_OBJS= \
-	"$(INTDIR)\AttrImpl.obj" \
-	"$(INTDIR)\AttrMapImpl.obj" \
-	"$(INTDIR)\AttrNSImpl.obj" \
-	"$(INTDIR)\CDATASectionImpl.obj" \
-	"$(INTDIR)\CharacterDataImpl.obj" \
-	"$(INTDIR)\ChildNode.obj" \
-	"$(INTDIR)\CommentImpl.obj" \
-	"$(INTDIR)\DeepNodeListImpl.obj" \
-	"$(INTDIR)\DocumentFragmentImpl.obj" \
-	"$(INTDIR)\DocumentImpl.obj" \
-	"$(INTDIR)\DocumentTypeImpl.obj" \
-	"$(INTDIR)\DOM_Attr.obj" \
-	"$(INTDIR)\DOM_CDATASection.obj" \
-	"$(INTDIR)\DOM_CharacterData.obj" \
-	"$(INTDIR)\DOM_Comment.obj" \
-	"$(INTDIR)\DOM_Document.obj" \
-	"$(INTDIR)\DOM_DocumentFragment.obj" \
-	"$(INTDIR)\DOM_DocumentType.obj" \
-	"$(INTDIR)\DOM_DOMException.obj" \
-	"$(INTDIR)\DOM_DOMImplementation.obj" \
-	"$(INTDIR)\DOM_Element.obj" \
-	"$(INTDIR)\DOM_Entity.obj" \
-	"$(INTDIR)\DOM_EntityReference.obj" \
-	"$(INTDIR)\DOM_NamedNodeMap.obj" \
-	"$(INTDIR)\DOM_Node.obj" \
-	"$(INTDIR)\DOM_NodeFilter.obj" \
-	"$(INTDIR)\DOM_NodeIterator.obj" \
-	"$(INTDIR)\DOM_NodeList.obj" \
-	"$(INTDIR)\DOM_Notation.obj" \
-	"$(INTDIR)\DOM_ProcessingInstruction.obj" \
-	"$(INTDIR)\DOM_Range.obj" \
-	"$(INTDIR)\DOM_RangeException.obj" \
-	"$(INTDIR)\DOM_Text.obj" \
-	"$(INTDIR)\DOM_TreeWalker.obj" \
-	"$(INTDIR)\DOM_XMLDecl.obj" \
-	"$(INTDIR)\DomMemDebug.obj" \
-	"$(INTDIR)\DOMParser.obj" \
-	"$(INTDIR)\DOMString.obj" \
-	"$(INTDIR)\DStringPool.obj" \
-	"$(INTDIR)\ElementDefinitionImpl.obj" \
-	"$(INTDIR)\ElementImpl.obj" \
-	"$(INTDIR)\ElementNSImpl.obj" \
-	"$(INTDIR)\EntityImpl.obj" \
-	"$(INTDIR)\EntityReferenceImpl.obj" \
-	"$(INTDIR)\NamedNodeMapImpl.obj" \
-	"$(INTDIR)\NodeIDMap.obj" \
-	"$(INTDIR)\NodeImpl.obj" \
-	"$(INTDIR)\NodeIteratorImpl.obj" \
-	"$(INTDIR)\NodeListImpl.obj" \
-	"$(INTDIR)\NodeVector.obj" \
-	"$(INTDIR)\NotationImpl.obj" \
-	"$(INTDIR)\ParentNode.obj" \
-	"$(INTDIR)\ProcessingInstructionImpl.obj" \
-	"$(INTDIR)\RangeImpl.obj" \
-	"$(INTDIR)\RefCountedImpl.obj" \
-	"$(INTDIR)\TextImpl.obj" \
-	"$(INTDIR)\TreeWalkerImpl.obj" \
-	"$(INTDIR)\XMLDeclImpl.obj"
-
-"$(OUTDIR)\xerces-depdom_3_0D.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ELSEIF  "$(CFG)" == "XercesDeprecatedDOMLib - Win64 Release"
-
-OUTDIR=.\..\..\..\..\..\Build\Win64\VC6\Release
-INTDIR=.\..\..\..\..\..\Build\Win64\VC6\Release\obj
-# Begin Custom Macros
-OutDir=.\..\..\..\..\..\Build\Win64\VC6\Release
-# End Custom Macros
-
-ALL : "$(OUTDIR)\xerces-depdom_3_0.dll"
-
-
-CLEAN :
-	-@erase "$(INTDIR)\AttrImpl.obj"
-	-@erase "$(INTDIR)\AttrMapImpl.obj"
-	-@erase "$(INTDIR)\AttrNSImpl.obj"
-	-@erase "$(INTDIR)\CDATASectionImpl.obj"
-	-@erase "$(INTDIR)\CharacterDataImpl.obj"
-	-@erase "$(INTDIR)\ChildNode.obj"
-	-@erase "$(INTDIR)\CommentImpl.obj"
-	-@erase "$(INTDIR)\DeepNodeListImpl.obj"
-	-@erase "$(INTDIR)\DocumentFragmentImpl.obj"
-	-@erase "$(INTDIR)\DocumentImpl.obj"
-	-@erase "$(INTDIR)\DocumentTypeImpl.obj"
-	-@erase "$(INTDIR)\DOM_Attr.obj"
-	-@erase "$(INTDIR)\DOM_CDATASection.obj"
-	-@erase "$(INTDIR)\DOM_CharacterData.obj"
-	-@erase "$(INTDIR)\DOM_Comment.obj"
-	-@erase "$(INTDIR)\DOM_Document.obj"
-	-@erase "$(INTDIR)\DOM_DocumentFragment.obj"
-	-@erase "$(INTDIR)\DOM_DocumentType.obj"
-	-@erase "$(INTDIR)\DOM_DOMException.obj"
-	-@erase "$(INTDIR)\DOM_DOMImplementation.obj"
-	-@erase "$(INTDIR)\DOM_Element.obj"
-	-@erase "$(INTDIR)\DOM_Entity.obj"
-	-@erase "$(INTDIR)\DOM_EntityReference.obj"
-	-@erase "$(INTDIR)\DOM_NamedNodeMap.obj"
-	-@erase "$(INTDIR)\DOM_Node.obj"
-	-@erase "$(INTDIR)\DOM_NodeFilter.obj"
-	-@erase "$(INTDIR)\DOM_NodeIterator.obj"
-	-@erase "$(INTDIR)\DOM_NodeList.obj"
-	-@erase "$(INTDIR)\DOM_Notation.obj"
-	-@erase "$(INTDIR)\DOM_ProcessingInstruction.obj"
-	-@erase "$(INTDIR)\DOM_Range.obj"
-	-@erase "$(INTDIR)\DOM_RangeException.obj"
-	-@erase "$(INTDIR)\DOM_Text.obj"
-	-@erase "$(INTDIR)\DOM_TreeWalker.obj"
-	-@erase "$(INTDIR)\DOM_XMLDecl.obj"
-	-@erase "$(INTDIR)\DomMemDebug.obj"
-	-@erase "$(INTDIR)\DOMParser.obj"
-	-@erase "$(INTDIR)\DOMString.obj"
-	-@erase "$(INTDIR)\DStringPool.obj"
-	-@erase "$(INTDIR)\ElementDefinitionImpl.obj"
-	-@erase "$(INTDIR)\ElementImpl.obj"
-	-@erase "$(INTDIR)\ElementNSImpl.obj"
-	-@erase "$(INTDIR)\EntityImpl.obj"
-	-@erase "$(INTDIR)\EntityReferenceImpl.obj"
-	-@erase "$(INTDIR)\NamedNodeMapImpl.obj"
-	-@erase "$(INTDIR)\NodeIDMap.obj"
-	-@erase "$(INTDIR)\NodeImpl.obj"
-	-@erase "$(INTDIR)\NodeIteratorImpl.obj"
-	-@erase "$(INTDIR)\NodeListImpl.obj"
-	-@erase "$(INTDIR)\NodeVector.obj"
-	-@erase "$(INTDIR)\NotationImpl.obj"
-	-@erase "$(INTDIR)\ParentNode.obj"
-	-@erase "$(INTDIR)\ProcessingInstructionImpl.obj"
-	-@erase "$(INTDIR)\RangeImpl.obj"
-	-@erase "$(INTDIR)\RefCountedImpl.obj"
-	-@erase "$(INTDIR)\TextImpl.obj"
-	-@erase "$(INTDIR)\TreeWalkerImpl.obj"
-	-@erase "$(INTDIR)\vc60.idb"
-	-@erase "$(INTDIR)\XMLDeclImpl.obj"
-	-@erase "$(OUTDIR)\obj\xerces-depdom_3_0.map"
-	-@erase "$(OUTDIR)\xerces-depdom_3.exp"
-	-@erase "$(OUTDIR)\xerces-depdom_3.lib"
-	-@erase "$(OUTDIR)\xerces-depdom_3_0.dll"
-	-@erase "$(OUTDIR)\xerces-depdom_3_0.ilk"
-
-"$(OUTDIR)" :
-    if not exist "$(OUTDIR)/$(NULL)" mkdir "$(OUTDIR)"
-
-"$(INTDIR)" :
-    if not exist "$(INTDIR)/$(NULL)" mkdir "$(INTDIR)"
-
-CPP=$(CPP)
-CPP_PROJ=/MD /W3 /GX /O2 /I "..\..\..\..\..\src" /D "WIN64" /D "NDEBUG" /D "_CRTDBG_MAP_ALLOC" /D "XERCES_BUILDING_DEPRECATED_LIBRARY" /D "WIN32" /D "_WINDOWS" /Fo"$(INTDIR)\\" /Fd"$(INTDIR)\\" /FD /c 
-
-.c{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.obj::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.c{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cpp{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-.cxx{$(INTDIR)}.sbr::
-   $(CPP) @<<
-   $(CPP_PROJ) $< 
-<<
-
-MTL=midl.exe
-MTL_PROJ=/D "NDEBUG" /mktyplib203 /o "NUL" /win32 
-RSC=rc.exe
-BSC32=bscmake.exe
-BSC32_FLAGS=/o"$(OUTDIR)\XercesDeprecatedDOMLib.bsc" 
-BSC32_SBRS= \
-	
-LINK32=link.exe
-LINK32_FLAGS=kernel32.lib user32.lib advapi32.lib ws2_32.lib xerces-c_3.lib /base:"0x12000000" /subsystem:windows /dll /incremental:yes /pdb:"$(OUTDIR)\xerces-depdom_3_0.pdb" /map:"$(INTDIR)\xerces-depdom_3_0.map" /machine:IX86 /out:"$(OUTDIR)\xerces-depdom_3_0.dll" /implib:"$(OUTDIR)\xerces-depdom_3.lib" /libpath:"..\..\..\..\..\Build\Win64\VC6\Release" /machine:IA64 
-LINK32_OBJS= \
-	"$(INTDIR)\AttrImpl.obj" \
-	"$(INTDIR)\AttrMapImpl.obj" \
-	"$(INTDIR)\AttrNSImpl.obj" \
-	"$(INTDIR)\CDATASectionImpl.obj" \
-	"$(INTDIR)\CharacterDataImpl.obj" \
-	"$(INTDIR)\ChildNode.obj" \
-	"$(INTDIR)\CommentImpl.obj" \
-	"$(INTDIR)\DeepNodeListImpl.obj" \
-	"$(INTDIR)\DocumentFragmentImpl.obj" \
-	"$(INTDIR)\DocumentImpl.obj" \
-	"$(INTDIR)\DocumentTypeImpl.obj" \
-	"$(INTDIR)\DOM_Attr.obj" \
-	"$(INTDIR)\DOM_CDATASection.obj" \
-	"$(INTDIR)\DOM_CharacterData.obj" \
-	"$(INTDIR)\DOM_Comment.obj" \
-	"$(INTDIR)\DOM_Document.obj" \
-	"$(INTDIR)\DOM_DocumentFragment.obj" \
-	"$(INTDIR)\DOM_DocumentType.obj" \
-	"$(INTDIR)\DOM_DOMException.obj" \
-	"$(INTDIR)\DOM_DOMImplementation.obj" \
-	"$(INTDIR)\DOM_Element.obj" \
-	"$(INTDIR)\DOM_Entity.obj" \
-	"$(INTDIR)\DOM_EntityReference.obj" \
-	"$(INTDIR)\DOM_NamedNodeMap.obj" \
-	"$(INTDIR)\DOM_Node.obj" \
-	"$(INTDIR)\DOM_NodeFilter.obj" \
-	"$(INTDIR)\DOM_NodeIterator.obj" \
-	"$(INTDIR)\DOM_NodeList.obj" \
-	"$(INTDIR)\DOM_Notation.obj" \
-	"$(INTDIR)\DOM_ProcessingInstruction.obj" \
-	"$(INTDIR)\DOM_Range.obj" \
-	"$(INTDIR)\DOM_RangeException.obj" \
-	"$(INTDIR)\DOM_Text.obj" \
-	"$(INTDIR)\DOM_TreeWalker.obj" \
-	"$(INTDIR)\DOM_XMLDecl.obj" \
-	"$(INTDIR)\DomMemDebug.obj" \
-	"$(INTDIR)\DOMParser.obj" \
-	"$(INTDIR)\DOMString.obj" \
-	"$(INTDIR)\DStringPool.obj" \
-	"$(INTDIR)\ElementDefinitionImpl.obj" \
-	"$(INTDIR)\ElementImpl.obj" \
-	"$(INTDIR)\ElementNSImpl.obj" \
-	"$(INTDIR)\EntityImpl.obj" \
-	"$(INTDIR)\EntityReferenceImpl.obj" \
-	"$(INTDIR)\NamedNodeMapImpl.obj" \
-	"$(INTDIR)\NodeIDMap.obj" \
-	"$(INTDIR)\NodeImpl.obj" \
-	"$(INTDIR)\NodeIteratorImpl.obj" \
-	"$(INTDIR)\NodeListImpl.obj" \
-	"$(INTDIR)\NodeVector.obj" \
-	"$(INTDIR)\NotationImpl.obj" \
-	"$(INTDIR)\ParentNode.obj" \
-	"$(INTDIR)\ProcessingInstructionImpl.obj" \
-	"$(INTDIR)\RangeImpl.obj" \
-	"$(INTDIR)\RefCountedImpl.obj" \
-	"$(INTDIR)\TextImpl.obj" \
-	"$(INTDIR)\TreeWalkerImpl.obj" \
-	"$(INTDIR)\XMLDeclImpl.obj"
-
-"$(OUTDIR)\xerces-depdom_3_0.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
-    $(LINK32) @<<
-  $(LINK32_FLAGS) $(LINK32_OBJS)
-<<
-
-!ENDIF 
-
-
-!IF "$(NO_EXTERNAL_DEPS)" != "1"
-!IF EXISTS("XercesDeprecatedDOMLib.dep")
-!INCLUDE "XercesDeprecatedDOMLib.dep"
-!ELSE 
-!MESSAGE Warning: cannot find "XercesDeprecatedDOMLib.dep"
-!ENDIF 
-!ENDIF 
-
-
-!IF "$(CFG)" == "XercesDeprecatedDOMLib - Win32 Release" || "$(CFG)" == "XercesDeprecatedDOMLib - Win32 Debug" || "$(CFG)" == "XercesDeprecatedDOMLib - Win64 Debug" || "$(CFG)" == "XercesDeprecatedDOMLib - Win64 Release"
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\AttrImpl.cpp
-
-"$(INTDIR)\AttrImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\AttrMapImpl.cpp
-
-"$(INTDIR)\AttrMapImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\AttrNSImpl.cpp
-
-"$(INTDIR)\AttrNSImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\CDATASectionImpl.cpp
-
-"$(INTDIR)\CDATASectionImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\CharacterDataImpl.cpp
-
-"$(INTDIR)\CharacterDataImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ChildNode.cpp
-
-"$(INTDIR)\ChildNode.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\CommentImpl.cpp
-
-"$(INTDIR)\CommentImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DeepNodeListImpl.cpp
-
-"$(INTDIR)\DeepNodeListImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DocumentFragmentImpl.cpp
-
-"$(INTDIR)\DocumentFragmentImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DocumentImpl.cpp
-
-"$(INTDIR)\DocumentImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DocumentTypeImpl.cpp
-
-"$(INTDIR)\DocumentTypeImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Attr.cpp
-
-"$(INTDIR)\DOM_Attr.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CDATASection.cpp
-
-"$(INTDIR)\DOM_CDATASection.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CharacterData.cpp
-
-"$(INTDIR)\DOM_CharacterData.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Comment.cpp
-
-"$(INTDIR)\DOM_Comment.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Document.cpp
-
-"$(INTDIR)\DOM_Document.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentFragment.cpp
-
-"$(INTDIR)\DOM_DocumentFragment.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentType.cpp
-
-"$(INTDIR)\DOM_DocumentType.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMException.cpp
-
-"$(INTDIR)\DOM_DOMException.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMImplementation.cpp
-
-"$(INTDIR)\DOM_DOMImplementation.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Element.cpp
-
-"$(INTDIR)\DOM_Element.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Entity.cpp
-
-"$(INTDIR)\DOM_Entity.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_EntityReference.cpp
-
-"$(INTDIR)\DOM_EntityReference.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NamedNodeMap.cpp
-
-"$(INTDIR)\DOM_NamedNodeMap.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Node.cpp
-
-"$(INTDIR)\DOM_Node.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeFilter.cpp
-
-"$(INTDIR)\DOM_NodeFilter.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeIterator.cpp
-
-"$(INTDIR)\DOM_NodeIterator.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeList.cpp
-
-"$(INTDIR)\DOM_NodeList.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Notation.cpp
-
-"$(INTDIR)\DOM_Notation.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_ProcessingInstruction.cpp
-
-"$(INTDIR)\DOM_ProcessingInstruction.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Range.cpp
-
-"$(INTDIR)\DOM_Range.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_RangeException.cpp
-
-"$(INTDIR)\DOM_RangeException.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Text.cpp
-
-"$(INTDIR)\DOM_Text.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_TreeWalker.cpp
-
-"$(INTDIR)\DOM_TreeWalker.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOM_XMLDecl.cpp
-
-"$(INTDIR)\DOM_XMLDecl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DomMemDebug.cpp
-
-"$(INTDIR)\DomMemDebug.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOMParser.cpp
-
-"$(INTDIR)\DOMParser.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DOMString.cpp
-
-"$(INTDIR)\DOMString.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\DStringPool.cpp
-
-"$(INTDIR)\DStringPool.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ElementDefinitionImpl.cpp
-
-"$(INTDIR)\ElementDefinitionImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ElementImpl.cpp
-
-"$(INTDIR)\ElementImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ElementNSImpl.cpp
-
-"$(INTDIR)\ElementNSImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\EntityImpl.cpp
-
-"$(INTDIR)\EntityImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\EntityReferenceImpl.cpp
-
-"$(INTDIR)\EntityReferenceImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NamedNodeMapImpl.cpp
-
-"$(INTDIR)\NamedNodeMapImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeIDMap.cpp
-
-"$(INTDIR)\NodeIDMap.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeImpl.cpp
-
-"$(INTDIR)\NodeImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeIteratorImpl.cpp
-
-"$(INTDIR)\NodeIteratorImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeListImpl.cpp
-
-"$(INTDIR)\NodeListImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NodeVector.cpp
-
-"$(INTDIR)\NodeVector.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\NotationImpl.cpp
-
-"$(INTDIR)\NotationImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ParentNode.cpp
-
-"$(INTDIR)\ParentNode.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\ProcessingInstructionImpl.cpp
-
-"$(INTDIR)\ProcessingInstructionImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\RangeImpl.cpp
-
-"$(INTDIR)\RangeImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\RefCountedImpl.cpp
-
-"$(INTDIR)\RefCountedImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\TextImpl.cpp
-
-"$(INTDIR)\TextImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\TreeWalkerImpl.cpp
-
-"$(INTDIR)\TreeWalkerImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-SOURCE=..\..\..\..\..\src\xercesc\dom\deprecated\XMLDeclImpl.cpp
-
-"$(INTDIR)\XMLDeclImpl.obj" : $(SOURCE) "$(INTDIR)"
-	$(CPP) $(CPP_PROJ) $(SOURCE)
-
-
-
-!ENDIF 
-
diff --git a/Projects/Win32/VC7.1/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.vcproj b/Projects/Win32/VC7.1/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.vcproj
deleted file mode 100644
index 37e14c03411f542e38f010114710a6528b7243ab..0000000000000000000000000000000000000000
--- a/Projects/Win32/VC7.1/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.vcproj
+++ /dev/null
@@ -1,274 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="7.10"
-	Name="DeprecatedDOMCount"
-	ProjectGUID="{57E8C0FF-3B2D-4322-A64D-5DE7893A667C}"
-	SccProjectName=""
-	SccLocalPath="">
-	<Platforms>
-		<Platform
-			Name="Win32"/>
-	</Platforms>
-	<Configurations>
-		<Configuration
-			Name="Release|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\Release"
-			IntermediateDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\Release\obj"
-			ConfigurationType="1"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="FALSE">
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="2"
-				OptimizeForProcessor="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="NDEBUG;_CONSOLE;WIN32;_WINDOWS"
-				StringPooling="TRUE"
-				RuntimeLibrary="2"
-				EnableFunctionLevelLinking="TRUE"
-				PrecompiledHeaderFile="$(IntDir)\DeprecatedDOMCount.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\DeprecatedDOMCount_vc71.pdb"
-				WarningLevel="3"
-				CompileAs="0"/>
-			<Tool
-				Name="VCCustomBuildTool"/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="xerces-c_3.lib xerces-depdom_3.lib"
-				OutputFile="$(OutDir)\DeprecatedDOMCount.exe"
-				LinkIncremental="1"
-				AdditionalLibraryDirectories="$(OutDir)"
-				ProgramDatabaseFile="$(OutDir)\DeprecatedDOMCount.pdb"
-				SubSystem="1"/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName=".\..\..\..\..\..\Build\Win32\VC7.1\Release/DeprecatedDOMCount.tlb"/>
-			<Tool
-				Name="VCPostBuildEventTool"/>
-			<Tool
-				Name="VCPreBuildEventTool"/>
-			<Tool
-				Name="VCPreLinkEventTool"/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"/>
-			<Tool
-				Name="VCWebDeploymentTool"/>
-			<Tool
-				Name="VCManagedWrapperGeneratorTool"/>
-			<Tool
-				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
-		</Configuration>
-		<Configuration
-			Name="Debug|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\Debug"
-			IntermediateDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\Debug\obj"
-			ConfigurationType="1"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="FALSE">
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				ImproveFloatingPointConsistency="TRUE"
-				OptimizeForProcessor="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="_DEBUG;_CONSOLE;WIN32;_WINDOWS"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="3"
-				DisableLanguageExtensions="TRUE"
-				TreatWChar_tAsBuiltInType="FALSE"
-				PrecompiledHeaderFile="$(IntDir)\DeprecatedDOMCount.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\DeprecatedDOMCount_vc71.pdb"
-				WarningLevel="3"
-				DebugInformationFormat="4"
-				CompileAs="0"/>
-			<Tool
-				Name="VCCustomBuildTool"/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="xerces-c_3D.lib xerces-depdom_3D.lib"
-				OutputFile="$(OutDir)\DeprecatedDOMCount.exe"
-				LinkIncremental="2"
-				AdditionalLibraryDirectories="$(OutDir)"
-				GenerateDebugInformation="TRUE"
-				ProgramDatabaseFile="$(OutDir)\DeprecatedDOMCount.pdb"
-				SubSystem="1"/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName=".\..\..\..\..\..\Build\Win32\VC7.1\Debug/DeprecatedDOMCount.tlb"/>
-			<Tool
-				Name="VCPostBuildEventTool"/>
-			<Tool
-				Name="VCPreBuildEventTool"/>
-			<Tool
-				Name="VCPreLinkEventTool"/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"/>
-			<Tool
-				Name="VCWebDeploymentTool"/>
-			<Tool
-				Name="VCManagedWrapperGeneratorTool"/>
-			<Tool
-				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
-		</Configuration>
-		<Configuration
-			Name="Static Release|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\StaticRelease"
-			IntermediateDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\StaticRelease\obj"
-			ConfigurationType="1"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="FALSE">
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="2"
-				OptimizeForProcessor="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="NDEBUG;_CONSOLE;WIN32;_WINDOWS;XERCES_STATIC_LIBRARY"
-				StringPooling="TRUE"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="TRUE"
-				PrecompiledHeaderFile="$(IntDir)\DeprecatedDOMCount.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\DeprecatedDOMCount_vc71.pdb"
-				WarningLevel="3"
-				CompileAs="0"/>
-			<Tool
-				Name="VCCustomBuildTool"/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="xerces-c_static_3.lib xerces-depdom_static_3.lib"
-				OutputFile="$(OutDir)\DeprecatedDOMCount.exe"
-				LinkIncremental="1"
-				AdditionalLibraryDirectories="$(OutDir)"
-				ProgramDatabaseFile="$(OutDir)\DeprecatedDOMCount.pdb"
-				SubSystem="1"/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName=".\..\..\..\..\..\Build\Win32\VC7.1\StaticRelease/DeprecatedDOMCount.tlb"/>
-			<Tool
-				Name="VCPostBuildEventTool"/>
-			<Tool
-				Name="VCPreBuildEventTool"/>
-			<Tool
-				Name="VCPreLinkEventTool"/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"/>
-			<Tool
-				Name="VCWebDeploymentTool"/>
-			<Tool
-				Name="VCManagedWrapperGeneratorTool"/>
-			<Tool
-				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
-		</Configuration>
-		<Configuration
-			Name="Static Debug|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\StaticDebug"
-			IntermediateDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\StaticDebug\obj"
-			ConfigurationType="1"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="FALSE">
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				ImproveFloatingPointConsistency="TRUE"
-				OptimizeForProcessor="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="_DEBUG;_CONSOLE;WIN32;_WINDOWS;XERCES_STATIC_LIBRARY"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
-				DisableLanguageExtensions="TRUE"
-				PrecompiledHeaderFile="$(IntDir)\DeprecatedDOMCount.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\DeprecatedDOMCount_vc71.pdb"
-				WarningLevel="3"
-				DebugInformationFormat="4"
-				CompileAs="0"/>
-			<Tool
-				Name="VCCustomBuildTool"/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="xerces-c_static_3D.lib xerces-depdom_static_3D.lib"
-				OutputFile="$(OutDir)\DeprecatedDOMCount.exe"
-				LinkIncremental="2"
-				AdditionalLibraryDirectories="$(OutDir)"
-				GenerateDebugInformation="TRUE"
-				ProgramDatabaseFile="$(OutDir)\DeprecatedDOMCount.pdb"
-				SubSystem="1"/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName=".\..\..\..\..\..\Build\Win32\VC7.1\StaticDebug/DeprecatedDOMCount.tlb"/>
-			<Tool
-				Name="VCPostBuildEventTool"/>
-			<Tool
-				Name="VCPreBuildEventTool"/>
-			<Tool
-				Name="VCPreLinkEventTool"/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"/>
-			<Tool
-				Name="VCWebDeploymentTool"/>
-			<Tool
-				Name="VCManagedWrapperGeneratorTool"/>
-			<Tool
-				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
-			<File
-				RelativePath="..\..\..\..\..\tests\src\Dom\DeprecatedDOMCount\DeprecatedDOMCount.cpp">
-			</File>
-		</Filter>
-		<Filter
-			Name="Header Files"
-			Filter="h;hpp;hxx;hm;inl">
-			<File
-				RelativePath="..\..\..\..\..\tests\src\Dom\DeprecatedDOMCount\DeprecatedDOMCount.hpp">
-			</File>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Projects/Win32/VC7.1/xerces-all/XercesLib/XercesDeprecatedDOMLib.vcproj b/Projects/Win32/VC7.1/xerces-all/XercesLib/XercesDeprecatedDOMLib.vcproj
deleted file mode 100644
index 7d9c85c23fb5ff1008c77d5f6851dd0f35eaca2a..0000000000000000000000000000000000000000
--- a/Projects/Win32/VC7.1/xerces-all/XercesLib/XercesDeprecatedDOMLib.vcproj
+++ /dev/null
@@ -1,630 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="7.10"
-	Name="XercesDeprecatedDOMLib"
-	ProjectGUID="{E2D9921F-C2BE-47EE-B978-8C27A3D5EC9A}"
-	SccProjectName=""
-	SccLocalPath="">
-	<Platforms>
-		<Platform
-			Name="Win32"/>
-	</Platforms>
-	<Configurations>
-		<Configuration
-			Name="Release|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\Release"
-			IntermediateDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\Release\obj"
-			ConfigurationType="2"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="FALSE">
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="2"
-				ImproveFloatingPointConsistency="TRUE"
-				OptimizeForProcessor="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;XERCES_BUILDING_DEPRECATED_LIBRARY"
-				StringPooling="TRUE"
-				RuntimeLibrary="2"
-				EnableFunctionLevelLinking="TRUE"
-				DisableLanguageExtensions="TRUE"
-				PrecompiledHeaderFile="$(IntDir)\XercesDeprecatedDOMLib.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\XercesDeprecatedDOMLib_vc71.pdb"
-				WarningLevel="3"
-				CompileAs="0"/>
-			<Tool
-				Name="VCCustomBuildTool"/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="ws2_32.lib xerces-c_3.lib"
-				OutputFile="$(OutDir)\xerces-depdom_3_0.dll"
-				LinkIncremental="1"
-				AdditionalLibraryDirectories="$(OutDir)"
-				ProgramDatabaseFile="$(OutDir)\xerces-depdom_3_0.pdb"
-				GenerateMapFile="TRUE"
-				MapFileName="$(IntDir)\xerces-depdom_3_0.map"
-				SubSystem="2"
-				BaseAddress="0x12000000"
-				ImportLibrary="$(OutDir)\xerces-depdom_3.lib"/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="TRUE"
-				TargetEnvironment="1"
-				TypeLibraryName=".\..\..\..\..\..\Build\Win32\VC7.1\Release/XercesDeprecatedDOMLib.tlb"/>
-			<Tool
-				Name="VCPostBuildEventTool"/>
-			<Tool
-				Name="VCPreBuildEventTool"/>
-			<Tool
-				Name="VCPreLinkEventTool"/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"/>
-			<Tool
-				Name="VCWebDeploymentTool"/>
-			<Tool
-				Name="VCManagedWrapperGeneratorTool"/>
-			<Tool
-				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
-		</Configuration>
-		<Configuration
-			Name="Debug|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\Debug"
-			IntermediateDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\Debug\obj"
-			ConfigurationType="2"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="FALSE">
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				ImproveFloatingPointConsistency="TRUE"
-				OptimizeForProcessor="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;XERCES_BUILDING_DEPRECATED_LIBRARY"
-				RuntimeLibrary="3"
-				DisableLanguageExtensions="TRUE"
-				TreatWChar_tAsBuiltInType="FALSE"
-				PrecompiledHeaderFile="$(IntDir)\XercesDeprecatedDOMLib.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\XercesDeprecatedDOMLib_vc71.pdb"
-				WarningLevel="3"
-				DebugInformationFormat="3"
-				CompileAs="0"/>
-			<Tool
-				Name="VCCustomBuildTool"/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="ws2_32.lib xerces-c_3D.lib"
-				OutputFile="$(OutDir)\xerces-depdom_3_0D.dll"
-				LinkIncremental="2"
-				AdditionalLibraryDirectories="$(OutDir)"
-				GenerateDebugInformation="TRUE"
-				ProgramDatabaseFile="$(OutDir)\xerces-depdom_3_0D.pdb"
-				SubSystem="2"
-				BaseAddress="0x12000000"
-				ImportLibrary="$(OutDir)\xerces-depdom_3D.lib"/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="TRUE"
-				TargetEnvironment="1"
-				TypeLibraryName=".\..\..\..\..\..\Build\Win32\VC7.1\Debug/XercesDeprecatedDOMLib.tlb"/>
-			<Tool
-				Name="VCPostBuildEventTool"/>
-			<Tool
-				Name="VCPreBuildEventTool"/>
-			<Tool
-				Name="VCPreLinkEventTool"/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"/>
-			<Tool
-				Name="VCWebDeploymentTool"/>
-			<Tool
-				Name="VCManagedWrapperGeneratorTool"/>
-			<Tool
-				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
-		</Configuration>
-		<Configuration
-			Name="Static Release|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\StaticRelease"
-			IntermediateDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\StaticRelease\obj"
-			ConfigurationType="4"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="FALSE">
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="2"
-				ImproveFloatingPointConsistency="TRUE"
-				OptimizeForProcessor="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;XERCES_BUILDING_DEPRECATED_LIBRARY;XERCES_STATIC_LIBRARY"
-				StringPooling="TRUE"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="TRUE"
-				DisableLanguageExtensions="TRUE"
-				PrecompiledHeaderFile="$(IntDir)\XercesDeprecatedDOMLib.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\XercesDeprecatedDOMLib_vc71.pdb"
-				WarningLevel="3"
-				CompileAs="0"/>
-			<Tool
-				Name="VCCustomBuildTool"/>
-			<Tool
-				Name="VCLibrarianTool"
-				OutputFile="$(OutDir)\Xerces-depdom_static_3.lib"/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="TRUE"
-				TargetEnvironment="1"
-				TypeLibraryName=".\..\..\..\..\..\Build\Win32\VC7.1\StaticRelease/XercesDeprecatedDOMLib.tlb"/>
-			<Tool
-				Name="VCPostBuildEventTool"/>
-			<Tool
-				Name="VCPreBuildEventTool"/>
-			<Tool
-				Name="VCPreLinkEventTool"/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"/>
-			<Tool
-				Name="VCManagedWrapperGeneratorTool"/>
-			<Tool
-				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
-		</Configuration>
-		<Configuration
-			Name="Static Debug|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\StaticDebug"
-			IntermediateDirectory=".\..\..\..\..\..\Build\Win32\VC7.1\StaticDebug\obj"
-			ConfigurationType="4"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="FALSE">
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				ImproveFloatingPointConsistency="TRUE"
-				OptimizeForProcessor="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;XERCES_BUILDING_DEPRECATED_LIBRARY;XERCES_STATIC_LIBRARY"
-				RuntimeLibrary="1"
-				DisableLanguageExtensions="TRUE"
-				PrecompiledHeaderFile="$(IntDir)\XercesDeprecatedDOMLib.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\XercesDeprecatedDOMLib_vc71.pdb"
-				WarningLevel="3"
-				DebugInformationFormat="3"
-				CompileAs="0"/>
-			<Tool
-				Name="VCCustomBuildTool"/>
-			<Tool
-				Name="VCLibrarianTool"
-				OutputFile="$(OutDir)\Xerces-depdom_static_3D.lib"/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="TRUE"
-				TargetEnvironment="1"
-				TypeLibraryName=".\..\..\..\..\..\Build\Win32\VC7.1\StaticDebug/XercesDeprecatedDOMLib.tlb"/>
-			<Tool
-				Name="VCPostBuildEventTool"/>
-			<Tool
-				Name="VCPreBuildEventTool"/>
-			<Tool
-				Name="VCPreLinkEventTool"/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"/>
-			<Tool
-				Name="VCManagedWrapperGeneratorTool"/>
-			<Tool
-				Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="dom"
-			Filter="">
-			<Filter
-				Name="deprecated"
-				Filter="">
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrMapImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrMapImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrNSImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrNSImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CDATASectionImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CDATASectionImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CharacterDataImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CharacterDataImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ChildNode.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ChildNode.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CommentImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CommentImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DeepNodeListImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DeepNodeListImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentFragmentImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentFragmentImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentTypeImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentTypeImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Attr.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Attr.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CDATASection.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CDATASection.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CharacterData.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CharacterData.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Comment.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Comment.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Document.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Document.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentFragment.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentFragment.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentType.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentType.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMException.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMException.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMImplementation.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMImplementation.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Element.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Element.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Entity.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Entity.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_EntityReference.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_EntityReference.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NamedNodeMap.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NamedNodeMap.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Node.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Node.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeFilter.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeFilter.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeIterator.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeIterator.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeList.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeList.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Notation.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Notation.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_ProcessingInstruction.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_ProcessingInstruction.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Range.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Range.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_RangeException.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_RangeException.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Text.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Text.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_TreeWalker.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_TreeWalker.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_XMLDecl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_XMLDecl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DomMemDebug.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DomMemDebug.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMParser.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMParser.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMString.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMString.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMStringImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DStringPool.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DStringPool.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementDefinitionImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementDefinitionImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementNSImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementNSImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\EntityImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\EntityImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\EntityReferenceImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\EntityReferenceImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\Makefile.in">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\MemDebug.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NamedNodeMapImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NamedNodeMapImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NameNodeFilter.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeIDMap.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeIDMap.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeIteratorImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeIteratorImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeListImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeListImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeVector.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeVector.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NotationImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NotationImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ParentNode.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ParentNode.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ProcessingInstructionImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ProcessingInstructionImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\RangeImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\RangeImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\RefCountedImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\RefCountedImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\TextImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\TextImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\TreeWalkerImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\TreeWalkerImpl.hpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\XMLDeclImpl.cpp">
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\XMLDeclImpl.hpp">
-				</File>
-			</Filter>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Projects/Win32/VC8/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.vcproj b/Projects/Win32/VC8/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.vcproj
deleted file mode 100644
index cee0ec7afffbae9a09ce3ac6b49373fe51c8b554..0000000000000000000000000000000000000000
--- a/Projects/Win32/VC8/xerces-all/DeprecatedDOMCount/DeprecatedDOMCount.vcproj
+++ /dev/null
@@ -1,395 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8,00"
-	Name="DeprecatedDOMCount"
-	ProjectGUID="{57E8C0FF-3B2D-4322-A64D-5DE7893A667C}"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Release|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC8\Release"
-			IntermediateDirectory="$(OutDir)\obj\DeprecatedDOMCount"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName="$(OutDir)\DeprecatedDOMCount.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="2"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="NDEBUG;_CONSOLE;WIN32;_WINDOWS"
-				StringPooling="true"
-				RuntimeLibrary="2"
-				EnableFunctionLevelLinking="true"
-				PrecompiledHeaderFile="$(IntDir)\DeprecatedDOMCount.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\DeprecatedDOMCount_vc80"
-				WarningLevel="3"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="xerces-c_3.lib xerces-depdom_3.lib"
-				OutputFile="$(OutDir)\DeprecatedDOMCount.exe"
-				LinkIncremental="1"
-				AdditionalLibraryDirectories="$(OutDir)"
-				ProgramDatabaseFile="$(OutDir)\DeprecatedDOMCount.pdb"
-				SubSystem="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="Debug|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC8\Debug"
-			IntermediateDirectory="$(OutDir)\obj\DeprecatedDOMCount"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName="$(OutDir)\DeprecatedDOMCount.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="_DEBUG;_CONSOLE;WIN32;_WINDOWS"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="3"
-				DisableLanguageExtensions="true"
-				TreatWChar_tAsBuiltInType="true"
-				PrecompiledHeaderFile="$(IntDir)\DeprecatedDOMCount.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\DeprecatedDOMCount_vc80"
-				WarningLevel="3"
-				DebugInformationFormat="4"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="xerces-c_3D.lib xerces-depdom_3D.lib"
-				OutputFile="$(OutDir)\DeprecatedDOMCount.exe"
-				LinkIncremental="2"
-				AdditionalLibraryDirectories="$(OutDir)"
-				GenerateDebugInformation="true"
-				ProgramDatabaseFile="$(OutDir)\DeprecatedDOMCount.pdb"
-				SubSystem="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="Static Release|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC8\StaticRelease"
-			IntermediateDirectory="$(OutDir)\obj\DeprecatedDOMCount"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName="$(OutDir)\DeprecatedDOMCount.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="2"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="NDEBUG;_CONSOLE;WIN32;_WINDOWS;XERCES_STATIC_LIBRARY"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				PrecompiledHeaderFile="$(IntDir)\DeprecatedDOMCount.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\DeprecatedDOMCount_vc80"
-				WarningLevel="3"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="xerces-c_static_3.lib xerces-depdom_static_3.lib"
-				OutputFile="$(OutDir)\DeprecatedDOMCount.exe"
-				LinkIncremental="1"
-				AdditionalLibraryDirectories="$(OutDir)"
-				ProgramDatabaseFile="$(OutDir)\DeprecatedDOMCount.pdb"
-				SubSystem="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="Static Debug|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC8\StaticDebug"
-			IntermediateDirectory="$(OutDir)\obj\DeprecatedDOMCount"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName="$(OutDir)\DeprecatedDOMCount.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="_DEBUG;_CONSOLE;WIN32;_WINDOWS;XERCES_STATIC_LIBRARY"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
-				DisableLanguageExtensions="true"
-				PrecompiledHeaderFile="$(IntDir)\DeprecatedDOMCount.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\DeprecatedDOMCount_vc80"
-				WarningLevel="3"
-				DebugInformationFormat="4"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="xerces-c_static_3D.lib xerces-depdom_static_3D.lib"
-				OutputFile="$(OutDir)\DeprecatedDOMCount.exe"
-				LinkIncremental="2"
-				AdditionalLibraryDirectories="$(OutDir)"
-				GenerateDebugInformation="true"
-				ProgramDatabaseFile="$(OutDir)\DeprecatedDOMCount.pdb"
-				SubSystem="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>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Source Files"
-			Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-			>
-			<File
-				RelativePath="..\..\..\..\..\tests\src\Dom\DeprecatedDOMCount\DeprecatedDOMCount.cpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Header Files"
-			Filter="h;hpp;hxx;hm;inl"
-			>
-			<File
-				RelativePath="..\..\..\..\..\tests\src\Dom\DeprecatedDOMCount\DeprecatedDOMCount.hpp"
-				>
-			</File>
-		</Filter>
-		<Filter
-			Name="Resource Files"
-			Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
-			>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>
diff --git a/Projects/Win32/VC8/xerces-all/XercesLib/XercesDeprecatedDOMLib.vcproj b/Projects/Win32/VC8/xerces-all/XercesLib/XercesDeprecatedDOMLib.vcproj
deleted file mode 100644
index b90661be646f98356c3fbd419cdf93f8503d51e9..0000000000000000000000000000000000000000
--- a/Projects/Win32/VC8/xerces-all/XercesLib/XercesDeprecatedDOMLib.vcproj
+++ /dev/null
@@ -1,852 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
-	ProjectType="Visual C++"
-	Version="8,00"
-	Name="XercesDeprecatedDOMLib"
-	ProjectGUID="{E2D9921F-C2BE-47EE-B978-8C27A3D5EC9A}"
-	RootNamespace="XercesDeprecatedDOMLib"
-	>
-	<Platforms>
-		<Platform
-			Name="Win32"
-		/>
-	</Platforms>
-	<ToolFiles>
-	</ToolFiles>
-	<Configurations>
-		<Configuration
-			Name="Release|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC8\Release"
-			IntermediateDirectory="$(OutDir)\obj\XercesDeprecatedDOMLib"
-			ConfigurationType="2"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				TargetEnvironment="1"
-				TypeLibraryName="$(OutDir)\XercesDeprecatedDOMLib.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="2"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;XERCES_BUILDING_DEPRECATED_LIBRARY"
-				StringPooling="true"
-				RuntimeLibrary="2"
-				EnableFunctionLevelLinking="true"
-				DisableLanguageExtensions="true"
-				PrecompiledHeaderFile="$(IntDir)\XercesDeprecatedDOMLib.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\XercesDeprecatedDOMLib_vc80"
-				WarningLevel="3"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="ws2_32.lib xerces-c_3.lib"
-				OutputFile="$(OutDir)\xerces-depdom_3_0.dll"
-				LinkIncremental="1"
-				AdditionalLibraryDirectories="$(OutDir)"
-				ProgramDatabaseFile="$(OutDir)\xerces-depdom_3_0.pdb"
-				GenerateMapFile="true"
-				MapFileName="$(IntDir)\xerces-depdom_3_0.map"
-				SubSystem="2"
-				BaseAddress="0x12000000"
-				ImportLibrary="$(OutDir)\xerces-depdom_3.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>
-		<Configuration
-			Name="Debug|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC8\Debug"
-			IntermediateDirectory="$(OutDir)\obj\XercesDeprecatedDOMLib"
-			ConfigurationType="2"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				TargetEnvironment="1"
-				TypeLibraryName="$(OutDir)\XercesDeprecatedDOMLib.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;XERCES_BUILDING_DEPRECATED_LIBRARY"
-				RuntimeLibrary="3"
-				DisableLanguageExtensions="true"
-				TreatWChar_tAsBuiltInType="true"
-				PrecompiledHeaderFile="$(IntDir)\XercesDeprecatedDOMLib.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\XercesDeprecatedDOMLib_vc80"
-				WarningLevel="3"
-				DebugInformationFormat="3"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="ws2_32.lib xerces-c_3D.lib"
-				OutputFile="$(OutDir)\xerces-depdom_3_0D.dll"
-				LinkIncremental="2"
-				AdditionalLibraryDirectories="$(OutDir)"
-				GenerateDebugInformation="true"
-				ProgramDatabaseFile="$(OutDir)\xerces-depdom_3_0D.pdb"
-				SubSystem="2"
-				BaseAddress="0x12000000"
-				ImportLibrary="$(OutDir)\xerces-depdom_3D.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>
-		<Configuration
-			Name="Static Release|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC8\StaticRelease"
-			IntermediateDirectory="$(OutDir)\obj\XercesDeprecatedDOMLib"
-			ConfigurationType="4"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				TargetEnvironment="1"
-				TypeLibraryName="$(OutDir)\XercesDeprecatedDOMLib.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="2"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;XERCES_BUILDING_DEPRECATED_LIBRARY;XERCES_STATIC_LIBRARY"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				DisableLanguageExtensions="true"
-				PrecompiledHeaderFile="$(IntDir)\XercesDeprecatedDOMLib.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\XercesDeprecatedDOMLib_vc80"
-				WarningLevel="3"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLibrarianTool"
-				OutputFile="$(OutDir)\Xerces-depdom_static_3.lib"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="Static Debug|Win32"
-			OutputDirectory=".\..\..\..\..\..\Build\Win32\VC8\StaticDebug"
-			IntermediateDirectory="$(OutDir)\obj\XercesDeprecatedDOMLib"
-			ConfigurationType="4"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				TargetEnvironment="1"
-				TypeLibraryName="$(OutDir)\XercesDeprecatedDOMLib.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				AdditionalIncludeDirectories="..\..\..\..\..\src"
-				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_CRTDBG_MAP_ALLOC;XERCES_BUILDING_DEPRECATED_LIBRARY;XERCES_STATIC_LIBRARY"
-				RuntimeLibrary="1"
-				DisableLanguageExtensions="true"
-				PrecompiledHeaderFile="$(IntDir)\XercesDeprecatedDOMLib.pch"
-				AssemblerListingLocation="$(IntDir)\"
-				ObjectFile="$(IntDir)\"
-				ProgramDataBaseFileName="$(IntDir)\XercesDeprecatedDOMLib_vc80"
-				WarningLevel="3"
-				DebugInformationFormat="3"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLibrarianTool"
-				OutputFile="$(OutDir)\Xerces-depdom_static_3D.lib"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="dom"
-			>
-			<Filter
-				Name="deprecated"
-				>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrMapImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrMapImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrNSImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\AttrNSImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CDATASectionImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CDATASectionImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CharacterDataImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CharacterDataImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ChildNode.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ChildNode.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CommentImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\CommentImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DeepNodeListImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DeepNodeListImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentFragmentImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentFragmentImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentTypeImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DocumentTypeImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Attr.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Attr.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CDATASection.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CDATASection.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CharacterData.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_CharacterData.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Comment.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Comment.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Document.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Document.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentFragment.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentFragment.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentType.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DocumentType.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMException.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMException.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMImplementation.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_DOMImplementation.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Element.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Element.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Entity.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Entity.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_EntityReference.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_EntityReference.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NamedNodeMap.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NamedNodeMap.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Node.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Node.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeFilter.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeFilter.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeIterator.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeIterator.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeList.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_NodeList.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Notation.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Notation.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_ProcessingInstruction.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_ProcessingInstruction.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Range.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Range.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_RangeException.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_RangeException.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Text.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_Text.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_TreeWalker.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_TreeWalker.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_XMLDecl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOM_XMLDecl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DomMemDebug.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DomMemDebug.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMParser.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMParser.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMString.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMString.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DOMStringImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DStringPool.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\DStringPool.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementDefinitionImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementDefinitionImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementNSImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ElementNSImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\EntityImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\EntityImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\EntityReferenceImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\EntityReferenceImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\Makefile.in"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\MemDebug.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NamedNodeMapImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NamedNodeMapImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NameNodeFilter.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeIDMap.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeIDMap.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeIteratorImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeIteratorImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeListImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeListImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeVector.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NodeVector.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NotationImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\NotationImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ParentNode.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ParentNode.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ProcessingInstructionImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\ProcessingInstructionImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\RangeImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\RangeImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\RefCountedImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\RefCountedImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\TextImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\TextImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\TreeWalkerImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\TreeWalkerImpl.hpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\XMLDeclImpl.cpp"
-					>
-				</File>
-				<File
-					RelativePath="..\..\..\..\..\src\xercesc\dom\deprecated\XMLDeclImpl.hpp"
-					>
-				</File>
-			</Filter>
-		</Filter>
-	</Files>
-	<Globals>
-	</Globals>
-</VisualStudioProject>