Files
rippled/Builds/VisualStudio2013/RippleD.vcxproj
Vinnie Falco f634666dc6 Make rocksdbquick settings default:
This removes the old default configuration for the "rocksdb" backend and
replaces it with the configuration that was formerly available using
the experimental backend "rocksdbquick".

The new configuration setting improves the performance of the key/value
database by changing the compaction style and tuning the size parameters for
the typical rippled workload. Testing shows a decrease in I/O spikes for both
reading and writing.
2015-01-05 18:49:17 -08:00

4012 lines
184 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Globals">
<ProjectGuid>{26B7D9AC-1A80-8EF8-6703-D061F1BECB75}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>RippleD</RootNamespace>
<IgnoreWarnCompileDuplicatedFilename>true</IgnoreWarnCompileDuplicatedFilename>
</PropertyGroup>
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="debug|x64">
<Configuration>debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="release|x64">
<Configuration>release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='debug|x64'" Label="Configuration">
<CharacterSet>MultiByte</CharacterSet>
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v120</PlatformToolset>
<LinkIncremental>False</LinkIncremental>
<UseDebugLibraries>False</UseDebugLibraries>
<UseOfMfc>False</UseOfMfc>
<WholeProgramOptimization>false</WholeProgramOptimization>
<IntDir>..\..\build\msvc.debug\src\</IntDir>
<OutDir>..\..\build\msvc.debug\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='release|x64'" Label="Configuration">
<CharacterSet>MultiByte</CharacterSet>
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v120</PlatformToolset>
<LinkIncremental>False</LinkIncremental>
<UseDebugLibraries>False</UseDebugLibraries>
<UseOfMfc>False</UseOfMfc>
<WholeProgramOptimization>false</WholeProgramOptimization>
<IntDir>..\..\build\msvc.release\src\</IntDir>
<OutDir>..\..\build\msvc.release\</OutDir>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings" />
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='debug|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='release|x64'" Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='debug|x64'">
<ClCompile>
<PreprocessorDefinitions>_WIN32_WINNT=0x6000;DEBUG;DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;OPENSSL_NO_SSL2;WIN32_CONSOLE;_CRTDBG_MAP_ALLOC;_CRT_SECURE_NO_WARNINGS;_DEBUG;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>..\..\build\proto;..\..\src;..\..\src\beast;..\..\src\protobuf\src;..\..\src\protobuf\vsprojects;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<DisableSpecificWarnings>4800;4244;4267;4018</DisableSpecificWarnings>
<ExceptionHandling>Async</ExceptionHandling>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<FloatingPointModel>Precise</FloatingPointModel>
<MinimalRebuild>False</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<ErrorReporting>None</ErrorReporting>
<BufferSecurityCheck>True</BufferSecurityCheck>
<RuntimeTypeInfo>True</RuntimeTypeInfo>
<MultiProcessorCompilation>True</MultiProcessorCompilation>
<FunctionLevelLinking>False</FunctionLevelLinking>
<SuppressStartupBanner>True</SuppressStartupBanner>
<Optimization>Disabled</Optimization>
<OpenMPSupport>False</OpenMPSupport>
<TreatWarningAsError>False</TreatWarningAsError>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CallingConvention>Cdecl</CallingConvention>
<ForceConformanceInForLoopScope>True</ForceConformanceInForLoopScope>
<WarningLevel>Level3</WarningLevel>
<AdditionalOptions>/bigobj /FS %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<Link>
<AdditionalDependencies>advapi32.lib;comdlg32.lib;gdi32.lib;kernel32.lib;libeay32MT.lib;odbc32.lib;odbccp32.lib;ole32.lib;oleaut32.lib;shell32.lib;Shlwapi.lib;ssleay32MT.lib;user32.lib;uuid.lib;winspool.lib;%(AdditionalDependencies)</AdditionalDependencies>
<SuppressStartupBanner>True</SuppressStartupBanner>
<ErrorReporting>NoErrorReport</ErrorReporting>
<SubSystem>Console</SubSystem>
<RandomizedBaseAddress>True</RandomizedBaseAddress>
<DataExecutionPrevention>true</DataExecutionPrevention>
<GenerateDebugInformation>True</GenerateDebugInformation>
<TargetMachine>MachineX64</TargetMachine>
<AdditionalOptions>/MANIFEST /TLBID:1 %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='release|x64'">
<ClCompile>
<PreprocessorDefinitions>_WIN32_WINNT=0x6000;DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;NDEBUG;OPENSSL_NO_SSL2;WIN32_CONSOLE;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>..\..\build\proto;..\..\src;..\..\src\beast;..\..\src\protobuf\src;..\..\src\protobuf\vsprojects;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<DisableSpecificWarnings>4800;4244;4267;4018</DisableSpecificWarnings>
<ExceptionHandling>Async</ExceptionHandling>
<FloatingPointModel>Precise</FloatingPointModel>
<MinimalRebuild>False</MinimalRebuild>
<ErrorReporting>None</ErrorReporting>
<RuntimeTypeInfo>True</RuntimeTypeInfo>
<MultiProcessorCompilation>True</MultiProcessorCompilation>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<FunctionLevelLinking>False</FunctionLevelLinking>
<SuppressStartupBanner>True</SuppressStartupBanner>
<OpenMPSupport>False</OpenMPSupport>
<TreatWarningAsError>False</TreatWarningAsError>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<CallingConvention>Cdecl</CallingConvention>
<ForceConformanceInForLoopScope>True</ForceConformanceInForLoopScope>
<Optimization>Full</Optimization>
<WarningLevel>Level3</WarningLevel>
<AdditionalOptions>/bigobj /FS %(AdditionalOptions)</AdditionalOptions>
</ClCompile>
<Link>
<AdditionalDependencies>advapi32.lib;comdlg32.lib;gdi32.lib;kernel32.lib;libeay32MT.lib;odbc32.lib;odbccp32.lib;ole32.lib;oleaut32.lib;shell32.lib;Shlwapi.lib;ssleay32MT.lib;user32.lib;uuid.lib;winspool.lib;%(AdditionalDependencies)</AdditionalDependencies>
<SuppressStartupBanner>True</SuppressStartupBanner>
<ErrorReporting>NoErrorReport</ErrorReporting>
<SubSystem>Console</SubSystem>
<RandomizedBaseAddress>True</RandomizedBaseAddress>
<DataExecutionPrevention>true</DataExecutionPrevention>
<GenerateDebugInformation>True</GenerateDebugInformation>
<TargetMachine>MachineX64</TargetMachine>
<AdditionalOptions>/MANIFEST /TLBID:1 %(AdditionalOptions)</AdditionalOptions>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="..\..\build\proto\ripple.pb.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\build\proto\ripple.pb.h">
</ClInclude>
<ClInclude Include="..\..\src\BeastConfig.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\Arithmetic.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\asio\Asio.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\asio\bind_handler.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\asio\impl\IPAddressConversion.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\asio\io_latency_probe.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\IPAddressConversion.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\placeholders.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\ssl.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\ssl_bundle.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\streambuf.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\asio\tests\bind_handler.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\asio\tests\streambuf.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\asio\waitable_executor.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\boost\Boost.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\boost\ErrorCode.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\ByteOrder.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\chrono\abstract_clock.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\chrono\basic_seconds_clock.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\chrono\Chrono.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\chrono\chrono_io.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\chrono\chrono_util.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\chrono\impl\chrono_io.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\chrono\impl\RelativeTime.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\chrono\manual_clock.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\chrono\ratio_io.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\chrono\RelativeTime.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\chrono\tests\abstract_clock.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\chrono\tests\basic_seconds_clock.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\Config.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\config\CompilerConfig.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\config\ConfigCheck.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\config\ContractChecks.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\config\PlatformConfig.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\config\SelectCompilerConfig.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\config\SelectStdlibConfig.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\config\StandardConfig.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\config\Suffix.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_container.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_container_utility.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_map.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_multimap.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_multiset.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_set.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_unordered_map.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_unordered_multimap.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_unordered_multiset.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\aged_unordered_set.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\buffer_view.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\const_container.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\container\Container.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\container\detail\aged_associative_container.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\detail\aged_container_iterator.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\detail\aged_ordered_container.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\detail\aged_unordered_container.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\hardened_hash.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\container\hash_append.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\container\impl\siphash.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\container\impl\spookyv2.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\container\impl\spookyv2.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\container\tests\aged_associative_container.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\container\tests\buffer_view.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\container\tests\hardened_hash.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\container\tests\hash_append.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\container\tests\hash_metrics.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\crypto\base64.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\crypto\Crypto.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\crypto\impl\Sha256.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\crypto\impl\sha2\sha2.c">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\crypto\impl\sha2\sha2.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\crypto\Sha256.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\crypto\tests\base64.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\cxx14\algorithm.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\cxx14\config.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\cxx14\cxx14.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\cxx14\functional.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\cxx14\iterator.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\cxx14\memory.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\cxx14\tests\integer_sequence.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\cxx14\type_traits.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\cxx14\utility.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\HeapBlock.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\basic_parser.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\body.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\chunk_encode.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\headers.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\http\HTTP.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\http\impl\basic_parser.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\http\impl\http-parser\http_parser.c">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\http\impl\http-parser\http_parser.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\http\impl\joyent_parser.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\http\impl\joyent_parser.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\http\impl\method.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\http\impl\raw_parser.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\http\impl\URL.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\http\message.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\method.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\parser.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\raw_parser.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\rfc2616.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\http\tests\chunked_encoder.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\http\tests\parser.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\http\tests\rfc2616.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\http\tests\URL.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\http\tests\urls_large_data.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\http\tests\urls_large_data.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\URL.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\Insight.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\Base.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\BaseImpl.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\Collector.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\Counter.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\CounterImpl.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\Event.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\EventImpl.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\Gauge.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\GaugeImpl.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\Group.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\Groups.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\Hook.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\HookImpl.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\insight\impl\Collector.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\insight\impl\Group.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\insight\impl\Groups.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\insight\impl\Hook.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\insight\impl\Metric.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\insight\impl\NullCollector.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\insight\impl\StatsDCollector.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\insight\Insight.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\insight\Meter.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\MeterImpl.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\NullCollector.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\insight\StatsDCollector.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\Intrusive.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\intrusive\List.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\intrusive\LockFreeStack.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\Memory.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\asio.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\AsyncObject.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\HTTPField.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPField.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\HTTPHeaders.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPHeaders.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\HTTPMessage.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPMessage.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\HTTPParser.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPParser.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPParserImpl.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\HTTPRequest.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPRequest.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\HTTPRequestParser.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPRequestParser.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\HTTPResponse.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPResponse.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\HTTPResponseParser.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPResponseParser.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\HTTPVersion.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\HTTPVersion.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\containers\Array.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\containers\ArrayAllocationBase.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\containers\ElementComparator.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\core.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\core.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\core\diagnostic\FatalError.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\diagnostic\FatalError.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\diagnostic\MeasureFunctionCallTime.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\diagnostic\SemanticVersion.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\diagnostic\SemanticVersion.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\diagnostic\UnitTestUtilities.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\diagnostic\UnitTestUtilities.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\files\DirectoryIterator.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\files\DirectoryIterator.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\files\File.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\files\File.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\files\FileInputStream.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\files\FileInputStream.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\files\FileOutputStream.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\files\FileOutputStream.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\logging\Logger.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\maths\Random.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\maths\Random.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\memory\MemoryBlock.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\memory\MemoryBlock.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\memory\SharedSingleton.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\misc\Result.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\misc\Result.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\native\BasicNativeHeaders.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\native\bsd_Files.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\core\native\bsd_SystemStats.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\core\native\bsd_Threads.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\core\native\linux_Files.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\core\native\linux_SystemStats.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\core\native\linux_Threads.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<None Include="..\..\src\beast\beast\module\core\native\mac_Files.mm">
</None>
<None Include="..\..\src\beast\beast\module\core\native\mac_Strings.mm">
</None>
<None Include="..\..\src\beast\beast\module\core\native\mac_SystemStats.mm">
</None>
<None Include="..\..\src\beast\beast\module\core\native\mac_Threads.mm">
</None>
<ClInclude Include="..\..\src\beast\beast\module\core\native\osx_ObjCHelpers.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\native\posix_SharedCode.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\native\win32_Files.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\core\native\win32_SystemStats.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\core\native\win32_Threads.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\core\streams\FileInputSource.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\streams\FileInputSource.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\streams\InputSource.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\streams\InputStream.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\streams\InputStream.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\streams\MemoryOutputStream.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\streams\MemoryOutputStream.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\streams\OutputStream.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\streams\OutputStream.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\system\StandardIncludes.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\system\SystemStats.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\system\SystemStats.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\text\LexicalCast.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\text\LexicalCast.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\text\StringArray.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\text\StringArray.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\text\StringPairArray.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\text\StringPairArray.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\threads\CriticalSection.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\threads\Process.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\threads\ScopedLock.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\thread\DeadlineTimer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\thread\DeadlineTimer.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\thread\MutexTraits.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\thread\Workers.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\thread\Workers.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\time\AtExitHook.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\time\AtExitHook.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\time\Time.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\time\Time.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\api\backend.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\api\blob.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\api\into.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\api\session.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\api\statement.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\api\transaction.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\api\type_conversion_traits.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\api\use.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\error_codes.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\exchange_traits.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\into_type.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\once_temp_type.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\prepare_temp_type.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\ref_counted_prepare_info.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\ref_counted_statement.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\statement_imp.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\type_conversion.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\type_ptr.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\detail\use_type.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\blob.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\error_codes.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\into_type.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\once_temp_type.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\prepare_temp_type.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\ref_counted_prepare_info.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\ref_counted_statement.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\session.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\statement.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\statement_imp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\transaction.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\source\use_type.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\sqdb\sqdb.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\sqdb\sqdb.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\sqlite\sqlite.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\sqlite\sqlite.unity.c">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\module\sqlite\sqlite\sqlite3.c">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\sqlite\sqlite\sqlite3.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\net\detail\Parse.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\net\DynamicBuffer.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\net\impl\DynamicBuffer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\net\impl\IPAddressV4.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\net\impl\IPAddressV6.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\net\impl\IPEndpoint.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\net\IPAddress.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\net\IPAddressV4.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\net\IPAddressV6.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\net\IPEndpoint.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\net\Net.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\net\tests\IPEndpoint.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\SmartPtr.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\smart_ptr\SharedObject.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\smart_ptr\SharedPtr.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\streams\abstract_ostream.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\streams\basic_abstract_ostream.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\streams\basic_scoped_ostream.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\streams\basic_std_ostream.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\streams\debug_ostream.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\streams\streams.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\streams\tests\basic_abstract_ostream.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\Strings.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\strings\CharacterFunctions.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\strings\CharPointer_ASCII.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\strings\CharPointer_UTF16.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\strings\CharPointer_UTF32.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\strings\CharPointer_UTF8.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\strings\impl\CharacterFunctions.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\strings\impl\String.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\strings\NewLine.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\strings\String.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\strings\StringCharPointerType.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\strings\StringFromNumber.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\strings\Strings.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\Threads.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\threads\impl\RecursiveMutex.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\threads\impl\Stoppable.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\threads\impl\Stoppable.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\threads\impl\Thread.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\threads\impl\WaitableEvent.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\threads\RecursiveMutex.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\ScopedWrapperContext.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\semaphore.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\SharedData.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\SharedLockGuard.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\SharedMutexAdapter.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\SpinLock.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\Stoppable.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\Thread.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\threads\Threads.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\threads\TryLockGuard.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\UnlockGuard.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\WaitableEvent.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\amount.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\unit_test\define_print.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\unit_test\global_suites.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\match.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\print.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\recorder.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\reporter.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\results.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\runner.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\suite.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\suite_info.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\unit_test\suite_list.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\ci_char_traits.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\Debug.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\empty_base_optimization.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\Error.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\utility\impl\Debug.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\impl\Error.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\impl\Journal.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\impl\LeakChecked.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\impl\PropertyStream.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\utility\Journal.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\LeakChecked.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\maybe_const.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\meta.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\noexcept.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\PropertyStream.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\StaticObject.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\static_initializer.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\tagged_integer.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\utility\tests\bassert.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\tests\empty_base_optimization.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\tests\Journal.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\tests\static_initializer.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\tests\tagged_integer.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\tests\weak_fn.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\utility\tests\Zero.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\utility\type_name.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\utility\Utility.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\utility\WrappedSink.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\utility\Zero.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\Version.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\weak_fn.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\builder.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\dbformat.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\dbformat.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\db_impl.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\db_impl.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\db_iter.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\db_iter.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\filename.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\filename.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\db\log_format.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\log_reader.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\log_reader.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\log_writer.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\log_writer.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\memtable.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\memtable.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\repair.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\hyperleveldb\db\replay_iterator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\replay_iterator.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\db\skiplist.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\db\snapshot.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\table_cache.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\table_cache.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\version_edit.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\version_edit.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\version_set.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\version_set.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\db\write_batch.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\db\write_batch_internal.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\cache.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\comparator.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\db.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\env.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\filter_policy.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\iterator.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\options.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\replay_iterator.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\slice.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\status.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\table.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\table_builder.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\hyperleveldb\write_batch.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\port\atomic_pointer.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\port\port.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\port\port_posix.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\port\port_posix.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\port\thread_annotations.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\table\block.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\table\block.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\table\block_builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\table\block_builder.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\table\filter_block.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\table\filter_block.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\table\format.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\table\format.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\table\iterator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\table\iterator_wrapper.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\table\merger.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\table\merger.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\table\table.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\hyperleveldb\table\table_builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\hyperleveldb\table\two_level_iterator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\table\two_level_iterator.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\util\arena.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\util\arena.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\util\bloom.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\hyperleveldb\util\cache.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\hyperleveldb\util\coding.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\util\coding.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\util\comparator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\hyperleveldb\util\crc32c.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\util\crc32c.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\util\env.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\hyperleveldb\util\env_posix.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\hyperleveldb\util\filter_policy.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\hyperleveldb\util\hash.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\util\hash.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\util\histogram.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\util\histogram.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\util\logging.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\util\logging.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\util\mutexlock.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\util\options.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\hyperleveldb\util\posix_logger.h">
</ClInclude>
<ClInclude Include="..\..\src\hyperleveldb\util\random.h">
</ClInclude>
<ClCompile Include="..\..\src\hyperleveldb\util\status.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\db\builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\builder.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\dbformat.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\dbformat.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\db_impl.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\db_impl.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\db_iter.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\db_iter.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\filename.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\filename.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\db\log_format.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\log_reader.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\log_reader.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\log_writer.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\log_writer.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\memtable.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\memtable.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\repair.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\skiplist.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\db\snapshot.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\table_cache.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\table_cache.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\version_edit.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\version_edit.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\version_set.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\version_set.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\db\write_batch.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\db\write_batch_internal.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\cache.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\comparator.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\db.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\env.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\filter_policy.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\iterator.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\options.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\slice.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\status.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\table.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\table_builder.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\include\leveldb\write_batch.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\port\atomic_pointer.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\port\port.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\port\port_posix.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\port\port_posix.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\port\port_win.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\port\port_win.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\port\thread_annotations.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\table\block.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\table\block.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\table\block_builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\table\block_builder.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\table\filter_block.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\table\filter_block.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\table\format.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\table\format.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\table\iterator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\table\iterator_wrapper.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\table\merger.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\table\merger.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\table\table.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\table\table_builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\table\two_level_iterator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\table\two_level_iterator.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\util\arena.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\util\arena.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\util\bloom.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\util\cache.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\util\coding.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\util\coding.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\util\comparator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\util\crc32c.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\util\crc32c.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\util\env.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\util\env_posix.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\util\env_win.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\util\filter_policy.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\leveldb\util\hash.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\util\hash.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\util\histogram.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\util\histogram.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\util\logging.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\util\logging.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\util\mutexlock.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\util\options.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\leveldb\util\posix_logger.h">
</ClInclude>
<ClInclude Include="..\..\src\leveldb\util\random.h">
</ClInclude>
<ClCompile Include="..\..\src\leveldb\util\status.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\compiler\importer.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\compiler\importer.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\compiler\parser.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\compiler\parser.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\descriptor.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\descriptor.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\descriptor.pb.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\descriptor.pb.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\descriptor_database.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\descriptor_database.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\dynamic_message.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\dynamic_message.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\extension_set.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\extension_set.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\extension_set_heavy.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\generated_enum_reflection.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\generated_message_reflection.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\generated_message_reflection.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\generated_message_util.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\generated_message_util.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\io\coded_stream.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\io\coded_stream.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\io\coded_stream_inl.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\io\gzip_stream.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\io\gzip_stream.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\io\tokenizer.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\io\tokenizer.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\io\zero_copy_stream.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\io\zero_copy_stream.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\io\zero_copy_stream_impl.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\io\zero_copy_stream_impl.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\io\zero_copy_stream_impl_lite.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\io\zero_copy_stream_impl_lite.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\message.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\message.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\message_lite.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\message_lite.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\reflection_ops.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\reflection_ops.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\repeated_field.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\repeated_field.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\service.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\service.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops_internals_arm_gcc.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops_internals_arm_qnx.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops_internals_atomicword_compat.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops_internals_macosx.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops_internals_mips_gcc.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops_internals_pnacl.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops_internals_x86_gcc.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops_internals_x86_msvc.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\atomicops_internals_x86_msvc.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\stubs\common.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\common.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\hash.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\map-util.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\stubs\once.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\once.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\platform_macros.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\stl_util.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\stubs\stringprintf.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\stringprintf.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\stubs\structurally_valid.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\stubs\strutil.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\strutil.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\stubs\substitute.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\substitute.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\template_util.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\stubs\type_traits.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\testing\googletest.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\text_format.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\text_format.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\unknown_field_set.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\unknown_field_set.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\wire_format.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\wire_format.h">
</ClInclude>
<ClCompile Include="..\..\src\protobuf\src\google\protobuf\wire_format_lite.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\wire_format_lite.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\src\google\protobuf\wire_format_lite_inl.h">
</ClInclude>
<ClInclude Include="..\..\src\protobuf\vsprojects\config.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\book\Amount.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\book\Amounts.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\book\BookTip.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\book\impl\BookTip.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\book\impl\OfferStream.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\book\impl\Quality.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\book\impl\Taker.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\book\Offer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\book\OfferStream.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\book\Quality.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\book\Taker.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\book\tests\OfferStream.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\book\tests\Quality.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\book\Types.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\consensus\DisputedTx.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\consensus\DisputedTx.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\consensus\LedgerConsensus.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\consensus\LedgerConsensus.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\data\Database.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\data\Database.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\data\DatabaseCon.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\data\DatabaseCon.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\data\DBInit.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\data\DBInit.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\data\SqliteDatabase.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\data\SqliteDatabase.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\impl\BasicApp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\impl\BasicApp.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\AcceptedLedger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\AcceptedLedger.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\AcceptedLedgerTx.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\AcceptedLedgerTx.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\AccountStateSF.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\AccountStateSF.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\BookListeners.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\BookListeners.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\ConsensusTransSetSF.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\ConsensusTransSetSF.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\DirectoryEntryIterator.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\DirectoryEntryIterator.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\InboundLedger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\InboundLedger.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\InboundLedgers.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\InboundLedgers.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\Ledger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\Ledger.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\Ledger.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\ledger\LedgerCleaner.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerCleaner.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\LedgerEntrySet.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerEntrySet.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\LedgerHistory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerHistory.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerHolder.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\LedgerMaster.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerMaster.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\LedgerProposal.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerProposal.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\LedgerTiming.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerTiming.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\ledger\LedgerToJson.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\OrderBookDB.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\OrderBookDB.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\OrderBookIterator.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\OrderBookIterator.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\ledger\TransactionStateSF.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\TransactionStateSF.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\main\Application.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\Application.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\main\CollectorManager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\CollectorManager.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\main\LoadManager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\LoadManager.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\main\LocalCredentials.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\LocalCredentials.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\main\Main.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\main\NodeStoreScheduler.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\NodeStoreScheduler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\main\Tuning.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\AccountState.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\AccountState.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\misc\AmendmentTable.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\AmendmentTableImpl.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\misc\CanonicalTXSet.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\CanonicalTXSet.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\DefaultMissingNodeHandler.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\DefaultMissingNodeHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\misc\FeeVote.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\FeeVoteImpl.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\misc\HashRouter.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\IHashRouter.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\NetworkOPs.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\NetworkOPs.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\misc\OrderBook.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\misc\SHAMapStore.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\SHAMapStoreImp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\SHAMapStoreImp.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\Validations.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\Validations.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\node\SqliteFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\node\SqliteFactory.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\AccountCurrencies.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\AccountCurrencies.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\Credit.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\Credit.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\AdvanceNode.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\DeliverNodeForward.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\DeliverNodeReverse.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\ForwardLiquidity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\ForwardLiquidityForAccount.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\Liquidity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\NextIncrement.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\cursor\PathCursor.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\ReverseLiquidity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\ReverseLiquidityForAccount.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\paths\cursor\RippleLiquidity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\cursor\RippleLiquidity.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\FindPaths.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\FindPaths.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\Node.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\Node.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\paths\NodeDirectory.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\Pathfinder.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\Pathfinder.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\PathRequest.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\PathRequest.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\PathRequests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\PathRequests.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\PathState.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\PathState.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\RippleCalc.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\RippleCalc.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\RippleLineCache.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\RippleLineCache.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\paths\RippleState.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\paths\RippleState.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\paths\Tuning.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\paths\Types.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\peers\ClusterNodeStatus.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\peers\PeerSet.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\peers\PeerSet.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\peers\UniqueNodeList.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\peers\UniqueNodeList.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\transactors\AddWallet.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\CancelOffer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\CancelTicket.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\Change.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\CreateOffer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\transactors\CreateOffer.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\transactors\CreateOfferBridged.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\CreateOfferDirect.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\CreateTicket.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\Payment.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\SetAccount.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\SetRegularKey.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\SetTrust.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\transactors\Transactor.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\transactors\Transactor.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\tx\LocalTxs.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\tx\LocalTxs.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\tx\Transaction.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\tx\Transaction.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\tx\TransactionAcquire.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\tx\TransactionAcquire.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\tx\TransactionCheck.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\tx\TransactionEngine.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\tx\TransactionEngine.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\tx\TransactionMaster.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\tx\TransactionMaster.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\tx\TransactionMeta.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\tx\TransactionMeta.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\websocket\WSConnection.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\websocket\WSConnection.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\websocket\WSDoor.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\websocket\WSDoor.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\websocket\WSServerHandler.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\websocket\WSServerHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\base_uint.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\BasicConfig.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\BasicTypes.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\Blob.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\ByteOrder.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\byte_view.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\CheckLibraryVersions.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\CountedObject.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\DecayingSample.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\basics\impl\BasicConfig.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\CheckLibraryVersions.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\basics\impl\CheckLibraryVersionsImpl.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\basics\impl\CountedObject.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\Log.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\make_SSLContext.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\RangeSet.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\ResolverAsio.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\strHex.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\StringUtilities.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\Sustain.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\TestSuite.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\ThreadName.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\Time.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\impl\UptimeTimer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\basics\KeyCache.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\Log.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\LoggedTimings.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\make_SSLContext.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\RangeSet.h">
</ClInclude>
<None Include="..\..\src\ripple\basics\README.md">
</None>
<ClInclude Include="..\..\src\ripple\basics\Resolver.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\ResolverAsio.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\seconds_clock.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\strHex.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\StringUtilities.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\Sustain.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\SyncUnorderedMap.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\TaggedCache.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\TestSuite.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\basics\tests\CheckLibraryVersions.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\tests\KeyCache.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\tests\RangeSet.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\tests\StringUtilities.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\basics\tests\TaggedCache.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\basics\ThreadName.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\Time.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\ToString.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\UnorderedContainers.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\UptimeTimer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\core\Config.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\core\ConfigSections.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\core\impl\Config.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\core\impl\Job.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\core\impl\JobQueue.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\core\impl\LoadEvent.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\core\impl\LoadFeeTrackImp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\core\impl\LoadFeeTrackImp.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\core\impl\LoadMonitor.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\core\Job.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\core\JobQueue.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\core\JobTypeData.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\core\JobTypeInfo.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\core\JobTypes.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\core\LoadEvent.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\core\LoadFeeTrack.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\core\LoadMonitor.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\core\tests\LoadFeeTrack.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\crypto\Base58.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\crypto\Base58Data.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\crypto\CAutoBN_CTX.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\crypto\CBigNum.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\crypto\DHUtil.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\crypto\ECDSA.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\crypto\ECDSACanonical.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\crypto\ECIES.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\crypto\ec_key.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\crypto\GenerateDeterministicKey.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\crypto\impl\Base58.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\Base58Data.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\CBigNum.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\DHUtil.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\ECDSA.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\ECDSACanonical.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\ECIES.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\ec_key.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\GenerateDeterministicKey.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\RandomNumbers.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\impl\RFC1751.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\crypto\RandomNumbers.h">
</ClInclude>
<None Include="..\..\src\ripple\crypto\README.md">
</None>
<ClInclude Include="..\..\src\ripple\crypto\RFC1751.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\crypto\tests\CKey.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\crypto\tests\ECDSACanonical.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\json\impl\JsonPropertyStream.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\json\impl\json_assert.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\json\impl\json_batchallocator.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\json\impl\json_internalarray.inl">
</ClInclude>
<ClInclude Include="..\..\src\ripple\json\impl\json_internalmap.inl">
</ClInclude>
<ClCompile Include="..\..\src\ripple\json\impl\json_reader.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\json\impl\json_value.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\json\impl\json_valueiterator.inl">
</ClInclude>
<ClCompile Include="..\..\src\ripple\json\impl\json_writer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\json\impl\to_string.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\json\JsonPropertyStream.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\json\json_config.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\json\json_features.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\json\json_forwards.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\json\json_reader.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\json\json_value.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\json\json_writer.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\json\tests\JsonCpp.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\json\to_string.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\HTTPClient.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\HTTPRequest.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\net\impl\HTTPClient.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\net\impl\HTTPRequest.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\net\impl\InfoSub.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\net\impl\RPCCall.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\net\impl\RPCErr.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\net\impl\RPCSub.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\net\impl\SNTPClient.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\net\InfoSub.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\RPCCall.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\RPCErr.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\RPCSub.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\SNTPClient.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\Backend.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\backend\HyperDBFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\backend\LevelDBFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\backend\MemoryFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\backend\NullFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\backend\RocksDBFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\Database.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\DatabaseRotating.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\DummyScheduler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\Factory.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\impl\BatchWriter.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\impl\BatchWriter.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\impl\DatabaseImp.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\impl\DatabaseRotatingImp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\impl\DatabaseRotatingImp.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\impl\DecodedBlob.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\impl\DecodedBlob.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\impl\DummyScheduler.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\impl\EncodedBlob.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\impl\EncodedBlob.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\impl\ManagerImp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\impl\ManagerImp.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\impl\NodeObject.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\impl\Tuning.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\Manager.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\NodeObject.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\Scheduler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\Task.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\tests\Backend.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\tests\Base.test.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\tests\Basics.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\tests\Database.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\tests\Timing.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\Types.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\overlay\impl\ConnectAttempt.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\overlay\impl\ConnectAttempt.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\overlay\impl\Message.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\overlay\impl\OverlayImpl.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\overlay\impl\OverlayImpl.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\overlay\impl\PeerImp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\overlay\impl\PeerImp.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\impl\ProtocolMessage.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\overlay\impl\TMHello.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\overlay\impl\TMHello.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\impl\Tuning.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\impl\ZeroCopyStream.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\make_Overlay.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\Message.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\Overlay.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\Peer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\predicates.h">
</ClInclude>
<None Include="..\..\src\ripple\overlay\README.md">
</None>
<ClCompile Include="..\..\src\ripple\overlay\tests\short_read.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\overlay\tests\TMHello.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\peerfinder\impl\Bootcache.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Bootcache.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Checker.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Counts.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\peerfinder\impl\Endpoint.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Fixed.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Handouts.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\iosformat.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Livecache.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Logic.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\peerfinder\impl\Manager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\peerfinder\impl\PeerfinderConfig.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Reporting.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\peerfinder\impl\SlotImp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\SlotImp.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Source.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\peerfinder\impl\SourceStrings.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\SourceStrings.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Store.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\StoreSqdb.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\impl\Tuning.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\make_Manager.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\Manager.h">
</ClInclude>
<None Include="..\..\src\ripple\peerfinder\README.md">
</None>
<ClInclude Include="..\..\src\ripple\peerfinder\sim\FunctionQueue.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\sim\GraphAlgorithms.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\sim\Message.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\sim\NodeSnapshot.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\sim\Params.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\sim\Predicates.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\peerfinder\sim\Tests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\peerfinder\sim\WrappedSink.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\peerfinder\Slot.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\peerfinder\tests\Livecache.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\protocol\Book.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\BuildInfo.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\ErrorCodes.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\HashPrefix.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\protocol\impl\BuildInfo.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\ByteOrder.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\ErrorCodes.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\HashPrefix.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\Indexes.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\LedgerFormats.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\RippleAddress.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\Serializer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\SField.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\SOTemplate.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STAccount.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STAmount.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STArray.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STBase.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STBlob.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STInteger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STLedgerEntry.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STObject.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STParsedJSON.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STPathSet.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STTx.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STValidation.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\STVector256.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\TER.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\TxFormats.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\impl\UintTypes.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\protocol\Indexes.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\Issue.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\JsonFields.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\KnownFormats.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\LedgerFormats.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\Protocol.h">
</ClInclude>
<None Include="..\..\src\ripple\protocol\README.md">
</None>
<ClInclude Include="..\..\src\ripple\protocol\RippleAddress.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\RippleLedgerHash.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\RipplePublicKey.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\Serializer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\SField.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\SOTemplate.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STAccount.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STAmount.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STArray.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STBase.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STBitString.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STBlob.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STInteger.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STLedgerEntry.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STObject.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STParsedJSON.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STPathSet.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STTx.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STValidation.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\STVector256.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\SystemParameters.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\TER.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\protocol\tests\BuildInfo.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\tests\Issue.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\tests\RippleAddress.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\tests\Serializer.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\tests\STAmount.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\tests\STObject.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\protocol\tests\STTx.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\protocol\TxFlags.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\TxFormats.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\UInt160.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\protocol\UintTypes.h">
</ClInclude>
<CustomBuild Include="..\..\src\ripple\proto\ripple.proto">
<FileType>Document</FileType>
<Command Condition="'$(Configuration)|$(Platform)'=='debug|x64'">protoc --cpp_out=..\..\build\proto --proto_path=%(RelativeDir) %(Identity)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='debug|x64'">..\..\build\proto\ripple.pb.h;..\..\build\proto\ripple.pb.cc</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='debug|x64'">protoc --cpp_out=..\..\build\proto --proto_path=%(RelativeDir) %(Identity)</Message>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='debug|x64'">false</LinkObjects>
<FileType>Document</FileType>
<Command Condition="'$(Configuration)|$(Platform)'=='release|x64'">protoc --cpp_out=..\..\build\proto --proto_path=%(RelativeDir) %(Identity)</Command>
<Outputs Condition="'$(Configuration)|$(Platform)'=='release|x64'">..\..\build\proto\ripple.pb.h;..\..\build\proto\ripple.pb.cc</Outputs>
<Message Condition="'$(Configuration)|$(Platform)'=='release|x64'">protoc --cpp_out=..\..\build\proto --proto_path=%(RelativeDir) %(Identity)</Message>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='release|x64'">false</LinkObjects>
</CustomBuild>
<ClInclude Include="..\..\src\ripple\resource\Charge.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\Consumer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\Disposition.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\Fees.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\Gossip.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\resource\impl\Charge.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\resource\impl\Consumer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\resource\impl\Entry.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\resource\impl\Fees.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\resource\impl\Import.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\impl\Key.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\impl\Kind.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\impl\Logic.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\resource\impl\Manager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\resource\impl\Tuning.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\Manager.h">
</ClInclude>
<None Include="..\..\src\ripple\resource\README.md">
</None>
<ClCompile Include="..\..\src\ripple\resource\tests\Logic.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\Coroutine.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\handlers\AccountCurrencies.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\AccountInfo.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\AccountLines.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\AccountOffers.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\AccountTx.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\AccountTxOld.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\AccountTxSwitch.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\BlackList.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\BookOffers.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\CanDelete.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Connect.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\ConsensusInfo.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Feature.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\FetchInfo.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\GetCounts.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\handlers\Handlers.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Internal.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Ledger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\handlers\Ledger.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LedgerAccept.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LedgerCleaner.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LedgerClosed.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LedgerCurrent.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LedgerData.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LedgerEntry.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LedgerHeader.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LedgerRequest.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LogLevel.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\LogRotate.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\OwnerInfo.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\PathFind.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Peers.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Ping.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Print.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Random.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\RipplePathFind.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\ServerInfo.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\ServerState.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Sign.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\SMS.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Stop.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Submit.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Subscribe.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\TransactionEntry.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Tx.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\TxHistory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\UnlAdd.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\UnlDelete.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\UnlList.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\UnlLoad.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\UnlNetwork.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\UnlReset.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\UnlScore.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\Unsubscribe.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\ValidationCreate.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\ValidationSeed.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\WalletAccounts.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\WalletPropose.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\WalletSeed.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\impl\AccountFromString.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\AccountFromString.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\Accounts.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\Accounts.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\impl\Context.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\Coroutine.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\DoPrint.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\GetMasterGenerator.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\GetMasterGenerator.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\Handler.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\Handler.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\JsonObject.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\JsonObject.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\JsonWriter.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\JsonWriter.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\LegacyPathFind.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\LegacyPathFind.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\LookupLedger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\LookupLedger.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\Manager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\impl\ParseAccountIds.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\ParseAccountIds.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\RPCHandler.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\impl\Status.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\impl\TransactionSign.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\TransactionSign.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\impl\Tuning.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\Utilities.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\impl\WriteJson.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\impl\WriteJson.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\Yield.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\InternalHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\Manager.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\Output.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\Request.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\RPCHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\Status.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\tests\Coroutine.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\tests\JsonObject.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\tests\JSONRPC.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\tests\JsonWriter.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\tests\Status.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\tests\TestOutputSuite.test.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\tests\WriteJson.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\tests\Yield.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\rpc\Yield.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\Handler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\Handoff.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\server\impl\Door.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\server\impl\Door.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\server\impl\JSONRPCUtil.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\server\impl\JSONRPCUtil.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\impl\Peer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\impl\PlainPeer.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\server\impl\Role.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\server\impl\ServerHandlerImp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\server\impl\ServerHandlerImp.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\server\impl\ServerImpl.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\server\impl\ServerImpl.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\impl\SSLPeer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\JsonWriter.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\make_Server.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\make_ServerHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\Port.h">
</ClInclude>
<None Include="..\..\src\ripple\server\README.md">
</None>
<ClInclude Include="..\..\src\ripple\server\Role.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\Server.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\ServerHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\server\Session.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\server\tests\Server.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\server\Writer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\shamap\FullBelowCache.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\shamap\impl\SHAMap.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\shamap\impl\SHAMapDelta.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\shamap\impl\SHAMapItem.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\shamap\impl\SHAMapMissingNode.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\shamap\impl\SHAMapNodeID.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\shamap\impl\SHAMapSync.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\shamap\impl\SHAMapTreeNode.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\shamap\SHAMap.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\shamap\SHAMapAddNode.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\shamap\SHAMapItem.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\shamap\SHAMapMissingNode.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\shamap\SHAMapNodeID.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\shamap\SHAMapSyncFilter.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\shamap\SHAMapTreeNode.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\shamap\tests\FetchPack.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\shamap\tests\SHAMap.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\shamap\tests\SHAMapSync.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\shamap\TreeNodeCache.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\unity\app.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\app1.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\app2.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\app3.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\app4.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\app5.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\app6.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\app7.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\app8.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\app9.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\basics.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\beast.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\beastc.c">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\core.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\crypto.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\git_id.cpp">
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\git_id.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\unity\hyperleveldb.cpp">
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug|x64'">..\..\src\hyperleveldb;..\..\src\snappy\config;..\..\src\snappy\snappy;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release|x64'">..\..\src\hyperleveldb;..\..\src\snappy\config;..\..\src\snappy\snappy;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\hyperleveldb.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\unity\json.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\leveldb.cpp">
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug|x64'">..\..\src\leveldb;..\..\src\leveldb\include;..\..\src\snappy\config;..\..\src\snappy\snappy;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release|x64'">..\..\src\leveldb;..\..\src\leveldb\include;..\..\src\snappy\config;..\..\src\snappy\snappy;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\leveldb.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\unity\net.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\nodestore.cpp">
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug|x64'">..\..\src\leveldb\include;..\..\src\rocksdb2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release|x64'">..\..\src\leveldb\include;..\..\src\rocksdb2\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\overlay.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\peerfinder.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\protobuf.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\protocol.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\resource.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\ripple.proto.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\rocksdb.cpp">
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug|x64'">..\..\src\rocksdb2;..\..\src\rocksdb2\include;..\..\src\snappy\config;..\..\src\snappy\snappy;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release|x64'">..\..\src\rocksdb2;..\..\src\rocksdb2\include;..\..\src\snappy\config;..\..\src\snappy\snappy;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\rocksdb.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\unity\rpcx.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\server.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\shamap.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\snappy.cpp">
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='debug|x64'">..\..\src\snappy\config;..\..\src\snappy\snappy;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories Condition="'$(Configuration)|$(Platform)'=='release|x64'">..\..\src\snappy\config;..\..\src\snappy\snappy;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\validators.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\websocket.cpp">
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\websocket.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\Connection.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\impl\ConnectionImp.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\ConnectionImp.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\impl\Logic.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\Logic.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\impl\Manager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\Store.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\impl\StoreSqdb.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\StoreSqdb.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\impl\Tuning.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\make_Manager.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\Manager.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\tests\Validators.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\websocket\autosocket\AutoSocket.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\websocket\autosocket\AutoSocket.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\websocket\autosocket\LogWebsockets.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\db\builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\builder.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\c.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\db\column_family.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\column_family.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\compaction.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\compaction.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\compaction_picker.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\compaction_picker.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\dbformat.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\dbformat.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\db_filesnapshot.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\db\db_impl.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\db_impl.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\db_impl_debug.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\db\db_impl_readonly.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\db_impl_readonly.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\db_iter.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\db_iter.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\filename.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\filename.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\file_indexer.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\file_indexer.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\forward_iterator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\forward_iterator.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\internal_stats.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\internal_stats.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\db\log_format.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\log_reader.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\log_reader.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\log_writer.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\log_writer.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\memtable.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\memtable.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\memtable_list.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\memtable_list.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\db\merge_context.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\merge_helper.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\merge_helper.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\merge_operator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\db\repair.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\skiplist.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\db\snapshot.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\table_cache.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\table_cache.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\table_properties_collector.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\table_properties_collector.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\transaction_log_impl.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\transaction_log_impl.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\version_edit.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\version_edit.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\version_set.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\version_set.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\write_batch.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\write_batch_internal.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\hdfs\env_hdfs.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\c.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\cache.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\compaction_filter.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\comparator.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\db.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\env.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\filter_policy.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\flush_block_policy.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\iostats_context.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\iterator.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\ldb_tool.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\memtablerep.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\merge_operator.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\options.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\perf_context.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\rate_limiter.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\slice.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\slice_transform.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\statistics.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\status.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\table.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\table_properties.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\transaction_log.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\types.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\universal_compaction.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\utilities\backupable_db.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\utilities\db_ttl.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\utilities\document_db.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\utilities\geo_db.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\utilities\json_document.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\utilities\spatial_db.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\utilities\stackable_db.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\utilities\utility_db.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\version.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\include\rocksdb\write_batch.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\port\atomic_pointer.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\port\likely.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\port\port.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\port\port_posix.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\port\port_posix.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\port\stack_trace.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\port\stack_trace.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\adaptive_table_factory.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\adaptive_table_factory.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\block.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\block.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\block_based_table_builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\block_based_table_builder.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\block_based_table_factory.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\block_based_table_factory.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\block_based_table_reader.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\block_based_table_reader.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\block_builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\block_builder.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\block_hash_index.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\block_hash_index.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\block_prefix_index.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\block_prefix_index.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\bloom_block.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\bloom_block.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\cuckoo_table_builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\cuckoo_table_builder.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\cuckoo_table_factory.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\cuckoo_table_factory.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\cuckoo_table_reader.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\cuckoo_table_reader.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\filter_block.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\filter_block.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\flush_block_policy.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\table\format.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\format.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\iterator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\iterator_wrapper.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\table\iter_heap.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\merger.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\merger.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\meta_blocks.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\meta_blocks.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\plain_table_builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\plain_table_builder.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\plain_table_factory.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\plain_table_factory.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\plain_table_index.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\plain_table_index.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\plain_table_key_coding.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\plain_table_key_coding.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\plain_table_reader.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\plain_table_reader.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\table\table_builder.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\table_properties.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\table_reader.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\two_level_iterator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\two_level_iterator.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\third-party\rapidjson\internal\pow10.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\third-party\rapidjson\internal\stack.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\third-party\rapidjson\rapidjson.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\third-party\rapidjson\reader.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\utilities\backupable\backupable_db.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\utilities\document\document_db.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\utilities\document\json_document.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\utilities\geodb\geodb_impl.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\utilities\geodb\geodb_impl.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\utilities\merge_operators.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\utilities\merge_operators\put.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\utilities\merge_operators\string_append\stringappend.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\utilities\merge_operators\string_append\stringappend.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\utilities\merge_operators\string_append\stringappend2.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\utilities\merge_operators\string_append\stringappend2.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\utilities\merge_operators\uint64add.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\utilities\redis\redis_lists.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\utilities\redis\redis_lists.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\utilities\redis\redis_list_exception.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\utilities\redis\redis_list_iterator.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\utilities\spatialdb\spatial_db.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\utilities\spatialdb\utils.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\utilities\ttl\db_ttl_impl.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\utilities\ttl\db_ttl_impl.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\arena.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\arena.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\util\autovector.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\auto_roll_logger.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\auto_roll_logger.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\blob_store.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\blob_store.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\bloom.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\build_version.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\cache.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\coding.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\coding.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\comparator.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\crc32c.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\crc32c.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\db_info_dummper.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\dynamic_bloom.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\dynamic_bloom.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\env.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\env_hdfs.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\env_posix.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\filter_policy.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\hash.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\hash.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\hash_cuckoo_rep.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\hash_cuckoo_rep.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\hash_linklist_rep.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\hash_linklist_rep.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\hash_skiplist_rep.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\hash_skiplist_rep.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\histogram.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\histogram.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\iostats_context.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\iostats_context_imp.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\ldb_cmd.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\ldb_cmd.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\util\ldb_cmd_execute_result.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\ldb_tool.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\logging.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\logging.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\log_buffer.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\log_buffer.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\murmurhash.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\murmurhash.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\util\mutexlock.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\options.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\options_builder.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\perf_context.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\perf_context_imp.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\util\posix_logger.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\util\random.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\rate_limiter.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\rate_limiter.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\skiplistrep.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\slice.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\statistics.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\statistics.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\status.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\stl_wrappers.h">
</ClInclude>
<ClInclude Include="..\..\src\rocksdb2\util\stop_watch.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\string_util.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\string_util.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\sync_point.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\sync_point.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\thread_local.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\thread_local.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\util\vectorrep.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\rocksdb2\util\xxhash.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\xxhash.h">
</ClInclude>
<ClInclude Include="..\..\src\snappy\config\snappy-stubs-public.h">
</ClInclude>
<ClInclude Include="..\..\src\snappy\snappy\snappy-internal.h">
</ClInclude>
<ClCompile Include="..\..\src\snappy\snappy\snappy-sinksource.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\snappy\snappy\snappy-sinksource.h">
</ClInclude>
<ClCompile Include="..\..\src\snappy\snappy\snappy-stubs-internal.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\snappy\snappy\snappy-stubs-internal.h">
</ClInclude>
<ClCompile Include="..\..\src\snappy\snappy\snappy.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\snappy\snappy\snappy.h">
</ClInclude>
<ClCompile Include="..\..\src\websocket\src\base64\base64.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\websocket\src\base64\base64.h">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\common.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\connection.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\endpoint.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\http\constants.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\http\parser.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\logger\logger.hpp">
</ClInclude>
<ClCompile Include="..\..\src\websocket\src\md5\md5.c">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\websocket\src\md5\md5.h">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\md5\md5.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\messages\control.hpp">
</ClInclude>
<ClCompile Include="..\..\src\websocket\src\messages\data.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\websocket\src\messages\data.hpp">
</ClInclude>
<ClCompile Include="..\..\src\websocket\src\network_utilities.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\websocket\src\network_utilities.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\processors\hybi.hpp">
</ClInclude>
<ClCompile Include="..\..\src\websocket\src\processors\hybi_header.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\websocket\src\processors\hybi_header.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\processors\hybi_legacy.hpp">
</ClInclude>
<ClCompile Include="..\..\src\websocket\src\processors\hybi_util.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\websocket\src\processors\hybi_util.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\processors\processor.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\rng\blank_rng.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\roles\server.hpp">
</ClInclude>
<ClCompile Include="..\..\src\websocket\src\sha1\sha1.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\websocket\src\sha1\sha1.h">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\shared_const_buffer.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\sockets\autotls.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\sockets\socket_base.hpp">
</ClInclude>
<ClCompile Include="..\..\src\websocket\src\uri.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\websocket\src\uri.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\utf8_validator\utf8_validator.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\websocketpp.hpp">
</ClInclude>
<ClInclude Include="..\..\src\websocket\src\websocket_frame.hpp">
</ClInclude>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>