From 2054d7ec88640bc2fe1a87f2a84caa7636bd106a Mon Sep 17 00:00:00 2001 From: Tad Marshall Date: Sun, 29 Apr 2012 09:49:29 -0400 Subject: Visual Studio build improvements Several changes to make Visual Studio match scons behavior more closely. Build SpiderMonkey from source in every executable that uses it so there is no dependency on separately downloaded pre-built .lib files. Make debug builds statically link the C runtime so there is no dependency on external C runtime DLLs. This is required for the Visual Studio debug build to work with IAT hooking. Use both the platform and configuration names (e.g. x64 Release) for the output directory structure so that switching between build types doesn't require recompiling everything. Make output directories be relative to the project file instead of the solution file so that projects that are included in more than one solution do not conflict across solutions. Rename db.vcxproj* to mongod.vcxproj* and rename dbgrid.vcxproj* to mongos.vcxproj* to make the files easier to find and associate with their executables. Add solution files mongod.sln and mongos.sln to make it easier to build individual executables. Organize filters to model the directory layout to make it easier to find files, break up the db filter into alphabetical groups, use the same pattern for mongod.exe and test.exe to make it easier to switch between projects without getting lost. Remove some non-existent files from project file lists. --- src/mongo/db/db_10.sln | 100 +++++++++++++++++++++++++------------------------ 1 file changed, 52 insertions(+), 48 deletions(-) (limited to 'src/mongo/db/db_10.sln') diff --git a/src/mongo/db/db_10.sln b/src/mongo/db/db_10.sln index 6e1ad0a8213..a711543d4bf 100755 --- a/src/mongo/db/db_10.sln +++ b/src/mongo/db/db_10.sln @@ -20,11 +20,20 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "unix files", "unix files", EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "other", "other", "{12B11474-2D74-48C3-BB3D-F03249BEA88F}" EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mongod", "db.vcxproj", "{215B2D68-0A70-4D10-8E75-B31010C62A91}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mongod", "mongod.vcxproj", "{215B2D68-0A70-4D10-8E75-B31010C62A91}" + ProjectSection(ProjectDependencies) = postProject + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A} = {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A} + EndProjectSection EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mongos", "..\s\dbgrid.vcxproj", "{E03717ED-69B4-4D21-BC55-DF6690B585C6}" +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mongos", "..\s\mongos.vcxproj", "{E03717ED-69B4-4D21-BC55-DF6690B585C6}" + ProjectSection(ProjectDependencies) = postProject + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A} = {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A} + EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test", "..\dbtests\test.vcxproj", "{215B2D68-0A70-4D10-8E75-B33010C62A91}" + ProjectSection(ProjectDependencies) = postProject + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A} = {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A} + EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bsondemo", "..\bson\bsondemo\bsondemo.vcxproj", "{C9DB5EB7-81AA-4185-BAA1-DA035654402F}" EndProject @@ -33,223 +42,218 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simple_client_demo", "..\client\examples\simple_client_demo.vcxproj", "{89C30BC3-2874-4F2C-B4DA-EB04E9782236}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mongo", "..\shell\mongo.vcxproj", "{FE959BD8-8EE2-4555-AE59-9FA14FFD410E}" + ProjectSection(ProjectDependencies) = postProject + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A} = {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A} + EndProjectSection EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mongoperf", "..\client\examples\mongoperf.vcxproj", "{79D4E297-BFB7-4FF2-9B13-08A146582E46}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SpiderMonkey pre-build step", "..\..\third_party\js-1.7\SpiderMonkey-prebuild.vcxproj", "{7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU Debug|Mixed Platforms = Debug|Mixed Platforms Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 - Release|Any CPU = Release|Any CPU Release|Mixed Platforms = Release|Mixed Platforms Release|Win32 = Release|Win32 Release|x64 = Release|x64 - Win2008PlusDebug|Any CPU = Win2008PlusDebug|Any CPU Win2008PlusDebug|Mixed Platforms = Win2008PlusDebug|Mixed Platforms Win2008PlusDebug|Win32 = Win2008PlusDebug|Win32 Win2008PlusDebug|x64 = Win2008PlusDebug|x64 - Win2008PlusRelease|Any CPU = Win2008PlusRelease|Any CPU Win2008PlusRelease|Mixed Platforms = Win2008PlusRelease|Mixed Platforms Win2008PlusRelease|Win32 = Win2008PlusRelease|Win32 Win2008PlusRelease|x64 = Win2008PlusRelease|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {215B2D68-0A70-4D10-8E75-B31010C62A91}.Debug|Any CPU.ActiveCfg = Debug|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Debug|Mixed Platforms.Build.0 = Debug|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Debug|Win32.ActiveCfg = Debug|Win32 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Debug|Win32.Build.0 = Debug|Win32 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Debug|x64.ActiveCfg = Debug|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Debug|x64.Build.0 = Debug|x64 - {215B2D68-0A70-4D10-8E75-B31010C62A91}.Release|Any CPU.ActiveCfg = Release|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Release|Mixed Platforms.ActiveCfg = Release|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Release|Mixed Platforms.Build.0 = Release|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Release|Win32.ActiveCfg = Release|Win32 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Release|Win32.Build.0 = Release|Win32 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Release|x64.ActiveCfg = Release|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Release|x64.Build.0 = Release|x64 - {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusDebug|Any CPU.ActiveCfg = Win2008PlusDebug|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Win2008PlusDebug|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusDebug|Mixed Platforms.Build.0 = Win2008PlusDebug|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusDebug|Win32.ActiveCfg = Win2008PlusDebug|Win32 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusDebug|Win32.Build.0 = Win2008PlusDebug|Win32 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusDebug|x64.ActiveCfg = Win2008PlusDebug|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusDebug|x64.Build.0 = Win2008PlusDebug|x64 - {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusRelease|Any CPU.ActiveCfg = Win2008PlusRelease|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Win2008PlusRelease|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusRelease|Mixed Platforms.Build.0 = Win2008PlusRelease|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusRelease|Win32.ActiveCfg = Win2008PlusRelease|Win32 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusRelease|Win32.Build.0 = Win2008PlusRelease|Win32 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusRelease|x64.ActiveCfg = Win2008PlusRelease|x64 {215B2D68-0A70-4D10-8E75-B31010C62A91}.Win2008PlusRelease|x64.Build.0 = Win2008PlusRelease|x64 - {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Debug|Any CPU.ActiveCfg = Debug|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Debug|Mixed Platforms.Build.0 = Debug|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Debug|Win32.ActiveCfg = Debug|Win32 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Debug|Win32.Build.0 = Debug|Win32 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Debug|x64.ActiveCfg = Debug|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Debug|x64.Build.0 = Debug|x64 - {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Release|Any CPU.ActiveCfg = Release|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Release|Mixed Platforms.ActiveCfg = Release|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Release|Mixed Platforms.Build.0 = Release|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Release|Win32.ActiveCfg = Release|Win32 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Release|Win32.Build.0 = Release|Win32 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Release|x64.ActiveCfg = Release|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Release|x64.Build.0 = Release|x64 - {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusDebug|Any CPU.ActiveCfg = Win2008PlusDebug|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Win2008PlusDebug|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusDebug|Mixed Platforms.Build.0 = Win2008PlusDebug|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusDebug|Win32.ActiveCfg = Win2008PlusDebug|Win32 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusDebug|Win32.Build.0 = Win2008PlusDebug|Win32 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusDebug|x64.ActiveCfg = Win2008PlusDebug|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusDebug|x64.Build.0 = Win2008PlusDebug|x64 - {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusRelease|Any CPU.ActiveCfg = Win2008PlusRelease|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Win2008PlusRelease|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusRelease|Mixed Platforms.Build.0 = Win2008PlusRelease|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusRelease|Win32.ActiveCfg = Win2008PlusRelease|Win32 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusRelease|Win32.Build.0 = Win2008PlusRelease|Win32 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusRelease|x64.ActiveCfg = Win2008PlusRelease|x64 {E03717ED-69B4-4D21-BC55-DF6690B585C6}.Win2008PlusRelease|x64.Build.0 = Win2008PlusRelease|x64 - {215B2D68-0A70-4D10-8E75-B33010C62A91}.Debug|Any CPU.ActiveCfg = Debug|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Debug|Mixed Platforms.Build.0 = Debug|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Debug|Win32.ActiveCfg = Debug|Win32 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Debug|Win32.Build.0 = Debug|Win32 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Debug|x64.ActiveCfg = Debug|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Debug|x64.Build.0 = Debug|x64 - {215B2D68-0A70-4D10-8E75-B33010C62A91}.Release|Any CPU.ActiveCfg = Release|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Release|Mixed Platforms.ActiveCfg = Release|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Release|Mixed Platforms.Build.0 = Release|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Release|Win32.ActiveCfg = Release|Win32 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Release|Win32.Build.0 = Release|Win32 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Release|x64.ActiveCfg = Release|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Release|x64.Build.0 = Release|x64 - {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusDebug|Any CPU.ActiveCfg = Win2008PlusDebug|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Win2008PlusDebug|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusDebug|Mixed Platforms.Build.0 = Win2008PlusDebug|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusDebug|Win32.ActiveCfg = Win2008PlusDebug|Win32 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusDebug|Win32.Build.0 = Win2008PlusDebug|Win32 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusDebug|x64.ActiveCfg = Win2008PlusDebug|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusDebug|x64.Build.0 = Win2008PlusDebug|x64 - {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusRelease|Any CPU.ActiveCfg = Win2008PlusRelease|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Win2008PlusRelease|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusRelease|Mixed Platforms.Build.0 = Win2008PlusRelease|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusRelease|Win32.ActiveCfg = Win2008PlusRelease|Win32 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusRelease|Win32.Build.0 = Win2008PlusRelease|Win32 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusRelease|x64.ActiveCfg = Win2008PlusRelease|x64 {215B2D68-0A70-4D10-8E75-B33010C62A91}.Win2008PlusRelease|x64.Build.0 = Win2008PlusRelease|x64 - {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Debug|Any CPU.ActiveCfg = Debug|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Debug|Mixed Platforms.Build.0 = Debug|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Debug|Win32.ActiveCfg = Debug|Win32 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Debug|Win32.Build.0 = Debug|Win32 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Debug|x64.ActiveCfg = Debug|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Debug|x64.Build.0 = Debug|x64 - {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Release|Any CPU.ActiveCfg = Release|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Release|Mixed Platforms.ActiveCfg = Release|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Release|Mixed Platforms.Build.0 = Release|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Release|Win32.ActiveCfg = Release|Win32 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Release|Win32.Build.0 = Release|Win32 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Release|x64.ActiveCfg = Release|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Release|x64.Build.0 = Release|x64 - {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusDebug|Any CPU.ActiveCfg = Win2008PlusDebug|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Win2008PlusDebug|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusDebug|Mixed Platforms.Build.0 = Win2008PlusDebug|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusDebug|Win32.ActiveCfg = Win2008PlusDebug|Win32 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusDebug|Win32.Build.0 = Win2008PlusDebug|Win32 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusDebug|x64.ActiveCfg = Win2008PlusDebug|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusDebug|x64.Build.0 = Win2008PlusDebug|x64 - {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusRelease|Any CPU.ActiveCfg = Win2008PlusRelease|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Win2008PlusRelease|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusRelease|Mixed Platforms.Build.0 = Win2008PlusRelease|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusRelease|Win32.ActiveCfg = Win2008PlusRelease|Win32 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusRelease|Win32.Build.0 = Win2008PlusRelease|Win32 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusRelease|x64.ActiveCfg = Win2008PlusRelease|x64 {C9DB5EB7-81AA-4185-BAA1-DA035654402F}.Win2008PlusRelease|x64.Build.0 = Win2008PlusRelease|x64 - {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Debug|Any CPU.ActiveCfg = Debug|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Debug|Win32.ActiveCfg = Debug|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Debug|x64.ActiveCfg = Debug|Win32 - {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Release|Any CPU.ActiveCfg = Release|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Release|Mixed Platforms.ActiveCfg = Release|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Release|Win32.ActiveCfg = Release|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Release|x64.ActiveCfg = Release|Win32 - {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Win2008PlusDebug|Any CPU.ActiveCfg = Win2008PlusDebug|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Win2008PlusDebug|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Win2008PlusDebug|Win32.ActiveCfg = Win2008PlusDebug|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Win2008PlusDebug|x64.ActiveCfg = Win2008PlusDebug|Win32 - {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Win2008PlusRelease|Any CPU.ActiveCfg = Win2008PlusRelease|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Win2008PlusRelease|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Win2008PlusRelease|Win32.ActiveCfg = Win2008PlusRelease|Win32 {7B84584E-92BC-4DB9-971B-A1A8F93E5053}.Win2008PlusRelease|x64.ActiveCfg = Win2008PlusRelease|Win32 - {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Debug|Any CPU.ActiveCfg = Debug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Debug|Mixed Platforms.Build.0 = Debug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Debug|Win32.ActiveCfg = Debug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Debug|Win32.Build.0 = Debug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Debug|x64.ActiveCfg = Debug|Win32 - {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Release|Any CPU.ActiveCfg = Release|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Release|Mixed Platforms.ActiveCfg = Release|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Release|Mixed Platforms.Build.0 = Release|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Release|Win32.ActiveCfg = Release|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Release|Win32.Build.0 = Release|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Release|x64.ActiveCfg = Release|Win32 - {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusDebug|Any CPU.ActiveCfg = Win2008PlusDebug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Win2008PlusDebug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusDebug|Mixed Platforms.Build.0 = Win2008PlusDebug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusDebug|Win32.ActiveCfg = Win2008PlusDebug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusDebug|Win32.Build.0 = Win2008PlusDebug|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusDebug|x64.ActiveCfg = Win2008PlusDebug|Win32 - {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusRelease|Any CPU.ActiveCfg = Win2008PlusRelease|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Win2008PlusRelease|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusRelease|Mixed Platforms.Build.0 = Win2008PlusRelease|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusRelease|Win32.ActiveCfg = Win2008PlusRelease|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusRelease|Win32.Build.0 = Win2008PlusRelease|Win32 {89C30BC3-2874-4F2C-B4DA-EB04E9782236}.Win2008PlusRelease|x64.ActiveCfg = Win2008PlusRelease|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Debug|Any CPU.ActiveCfg = Debug|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Debug|Mixed Platforms.Build.0 = Debug|Win32 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Debug|Mixed Platforms.Build.0 = Debug|x64 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Debug|Win32.ActiveCfg = Debug|Win32 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Debug|Win32.Build.0 = Debug|Win32 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Debug|x64.ActiveCfg = Debug|x64 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Debug|x64.Build.0 = Debug|x64 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Release|Any CPU.ActiveCfg = Release|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Release|Mixed Platforms.ActiveCfg = Release|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Release|Mixed Platforms.Build.0 = Release|Win32 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Release|Mixed Platforms.ActiveCfg = Release|x64 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Release|Mixed Platforms.Build.0 = Release|x64 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Release|Win32.ActiveCfg = Release|Win32 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Release|Win32.Build.0 = Release|Win32 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Release|x64.ActiveCfg = Release|x64 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Release|x64.Build.0 = Release|x64 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|Any CPU.ActiveCfg = Win2008PlusDebug|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Win2008PlusDebug|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|Mixed Platforms.Build.0 = Win2008PlusDebug|Win32 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Win2008PlusDebug|x64 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|Mixed Platforms.Build.0 = Win2008PlusDebug|x64 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|Win32.ActiveCfg = Win2008PlusDebug|Win32 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|Win32.Build.0 = Win2008PlusDebug|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|x64.ActiveCfg = Win2008PlusDebug|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|Any CPU.ActiveCfg = Win2008PlusRelease|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Win2008PlusRelease|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|Mixed Platforms.Build.0 = Win2008PlusRelease|Win32 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|x64.ActiveCfg = Win2008PlusDebug|x64 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusDebug|x64.Build.0 = Win2008PlusDebug|x64 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Win2008PlusRelease|x64 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|Mixed Platforms.Build.0 = Win2008PlusRelease|x64 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|Win32.ActiveCfg = Win2008PlusRelease|Win32 {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|Win32.Build.0 = Win2008PlusRelease|Win32 - {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|x64.ActiveCfg = Win2008PlusRelease|Win32 - {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Debug|Any CPU.ActiveCfg = Debug|Win32 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|x64.ActiveCfg = Win2008PlusRelease|x64 + {FE959BD8-8EE2-4555-AE59-9FA14FFD410E}.Win2008PlusRelease|x64.Build.0 = Win2008PlusRelease|x64 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Debug|Win32.ActiveCfg = Debug|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Debug|x64.ActiveCfg = Debug|Win32 - {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Release|Any CPU.ActiveCfg = Release|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Release|Mixed Platforms.ActiveCfg = Release|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Release|Win32.ActiveCfg = Release|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Release|x64.ActiveCfg = Release|Win32 - {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Win2008PlusDebug|Any CPU.ActiveCfg = Win2008PlusDebug|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Win2008PlusDebug|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Win2008PlusDebug|Win32.ActiveCfg = Win2008PlusDebug|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Win2008PlusDebug|x64.ActiveCfg = Win2008PlusDebug|Win32 - {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Win2008PlusRelease|Any CPU.ActiveCfg = Win2008PlusRelease|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Win2008PlusRelease|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Win2008PlusRelease|Win32.ActiveCfg = Win2008PlusRelease|Win32 {79D4E297-BFB7-4FF2-9B13-08A146582E46}.Win2008PlusRelease|x64.ActiveCfg = Win2008PlusRelease|Win32 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Debug|Mixed Platforms.ActiveCfg = Debug|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Debug|Mixed Platforms.Build.0 = Debug|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Debug|Win32.ActiveCfg = Debug|Win32 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Debug|Win32.Build.0 = Debug|Win32 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Debug|x64.ActiveCfg = Debug|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Debug|x64.Build.0 = Debug|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Release|Mixed Platforms.ActiveCfg = Release|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Release|Mixed Platforms.Build.0 = Release|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Release|Win32.ActiveCfg = Release|Win32 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Release|Win32.Build.0 = Release|Win32 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Release|x64.ActiveCfg = Release|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Release|x64.Build.0 = Release|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusDebug|Mixed Platforms.ActiveCfg = Debug|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusDebug|Mixed Platforms.Build.0 = Debug|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusDebug|Win32.ActiveCfg = Debug|Win32 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusDebug|Win32.Build.0 = Debug|Win32 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusDebug|x64.ActiveCfg = Debug|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusDebug|x64.Build.0 = Debug|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusRelease|Mixed Platforms.ActiveCfg = Release|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusRelease|Mixed Platforms.Build.0 = Release|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusRelease|Win32.ActiveCfg = Release|Win32 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusRelease|Win32.Build.0 = Release|Win32 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusRelease|x64.ActiveCfg = Release|x64 + {7FA15DF8-14C8-4FD5-897B-6FACE8FDCF2A}.Win2008PlusRelease|x64.Build.0 = Release|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE -- cgit v1.2.1