Files
xahaud/Builds/VisualStudio2013/RippleD.vcxproj
Vinnie Falco ec92344fb4 Use autotls instead of multitls in websocket:
The MultiSocket class implements a socket that handshakes in multiple
protocols including SSL and PROXY. Unfortunately the way it type-erases the
handlers and buffers is incompatible with boost::asio coroutines. To pave the
way for coroutines this is part of a larger set of changes that roll back the
usage of MultiSocket to older code, and some custom implementations that use
templates. The custom implementations are more simple since they use
coroutines. Removing MultiSocket will make many other classes and source files
unused, a big win for trimming down the codebase size.
2014-10-22 19:34:48 -07:00

4233 lines
195 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;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;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\abstract_socket.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\asio\abstract_socket.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>
<ClInclude Include="..\..\src\beast\beast\asio\buffer_sequence.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\enable_wait_for_async.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\memory_buffer.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\placeholders.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\shared_handler.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\socket_wrapper.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\asio\ssl.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\asio\tests\bind_handler.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\asio\tests\enable_wait_for_async.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\asio\tests\shared_handler.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\asio\tests\wrap_handler.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\asio\wrap_handler.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\Atomic.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\boost\get_pointer.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\abstract_clock_io.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.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\crypto\base64.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\crypto\BinaryEncoding.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\crypto\Crypto.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\crypto\impl\MurmurHash.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>
<ClCompile Include="..\..\src\beast\beast\crypto\impl\UnsignedInteger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\crypto\MurmurHash.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>
<ClCompile Include="..\..\src\beast\beast\crypto\tests\BinaryEncoding.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\crypto\tests\UnsignedInteger.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\crypto\UnsignedInteger.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\crypto\UnsignedIntegerCalc.h">
</ClInclude>
<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\basic_url.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\body.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\client_session.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\http\detail\header_traits.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\basic_url.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\basic_url.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\http\tests\client_session.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>
<ClInclude Include="..\..\src\beast\beast\module\asio\asio.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\asio.unity.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\async\AsyncObject.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\basics\FixedInputBuffer.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\basics\PeerRole.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\basics\PeerRole.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\basics\SSLContext.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\basics\SSLContext.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPClientType.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPClientType.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPField.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPField.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPHeaders.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPHeaders.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPMessage.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPMessage.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPParser.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPParser.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPParserImpl.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPRequest.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPRequest.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPRequestParser.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPRequestParser.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPResponse.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPResponse.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPResponseParser.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPResponseParser.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\http\HTTPVersion.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\http\HTTPVersion.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\protocol\HandshakeDetectLogic.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\protocol\HandshakeDetectLogicPROXY.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\protocol\HandshakeDetectLogicPROXY.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\protocol\HandshakeDetectLogicSSL2.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\protocol\HandshakeDetectLogicSSL3.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\protocol\HandshakeDetector.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\protocol\InputParser.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\protocol\PrefilledReadStream.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\system\BoostIncludes.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\system\OpenSSLIncludes.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\tests\PeerTest.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\PeerTest.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeer.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\tests\TestPeerBasics.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerBasics.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerDetails.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerDetailsTcp.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogic.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogic.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicAsyncClient.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicAsyncClient.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicAsyncServer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicAsyncServer.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicProxyClient.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicProxyClient.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicSyncClient.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicSyncClient.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicSyncServer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerLogicSyncServer.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\asio\tests\TestPeerType.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\asio\tests\TestPeerUnitTests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<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\containers\LinkedListPointer.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\containers\ScopedValueSetter.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>
<ClCompile Include="..\..\src\beast\beast\module\core\files\FileSearchPath.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\files\FileSearchPath.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\files\RandomAccessFile.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\files\RandomAccessFile.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\files\TemporaryFile.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\files\TemporaryFile.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\module\core\logging\Logger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\module\core\logging\Logger.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\module\core\maths\Math.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>
<ClInclude Include="..\..\src\beast\beast\module\core\maths\Range.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\misc\WindowsRegistry.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>
<ClInclude Include="..\..\src\beast\beast\module\core\native\win32_ComSmartPtr.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_Registry.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\DynamicLibrary.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\StaticAssert.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>
<ClInclude Include="..\..\src\beast\beast\threads\detail\BindHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\detail\DispatchedHandler.h">
</ClInclude>
<ClCompile Include="..\..\src\beast\beast\threads\impl\RecursiveMutex.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\threads\impl\ServiceQueue.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\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\ServiceQueue.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>
<ClCompile Include="..\..\src\beast\beast\threads\tests\Atomic.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\beast\beast\threads\tests\ServiceQueue.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\threads\Thread.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\threads\ThreadLocalValue.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>
<ClCompile Include="..\..\src\beast\beast\utility\impl\StaticObject.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\beast\beast\utility\is_call_possible.h">
</ClInclude>
<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\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\Zero.h">
</ClInclude>
<ClInclude Include="..\..\src\beast\beast\Version.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\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\BookListeners.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\BookListeners.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\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>
<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\SerializedValidation.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\ledger\SerializedValidation.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\main\Application.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\Application.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\main\BasicFullBelowCache.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\FatalErrorReporter.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\FatalErrorReporter.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\main\FullBelowCache.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\main\IoServicePool.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\IoServicePool.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>
<ClCompile Include="..\..\src\ripple\app\main\ParameterTable.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\ParameterTable.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\main\RPCHTTPServer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\main\RPCHTTPServer.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>
<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\PowResult.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\ProofOfWork.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\ProofOfWork.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\ProofOfWorkFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\ProofOfWorkFactory.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\SerializedLedger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\SerializedLedger.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\misc\SerializedTransaction.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\misc\SerializedTransaction.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\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\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\shamap\FetchPackTests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\shamap\RadixMapTest.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\shamap\RadixMapTest.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\shamap\SHAMap.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\shamap\SHAMap.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\app\shamap\SHAMapAddNode.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\shamap\SHAMapDelta.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\app\shamap\SHAMapItem.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\shamap\SHAMapItem.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\shamap\SHAMapMissingNode.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\shamap\SHAMapMissingNode.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\shamap\SHAMapNodeID.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\shamap\SHAMapNodeID.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\shamap\SHAMapSync.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\shamap\SHAMapSyncFilter.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\shamap\SHAMapSyncFilters.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\shamap\SHAMapSyncFilters.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\shamap\SHAMapTreeNode.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\shamap\SHAMapTreeNode.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>
<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\tx\TxQueue.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\tx\TxQueue.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\app\tx\TxQueueEntry.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\app\tx\TxQueueEntry.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\ArraySize.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\BasicConfig.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\BasicTypes.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\CheckLibraryVersions.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\CountedObject.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>
<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\RangeSet.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\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\Log.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\LoggedTimings.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\RangeSet.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\ThreadName.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\Time.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\ToString.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\basics\UptimeTimer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\common\byte_view.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\common\DecayingSample.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\common\impl\KeyCache.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\common\impl\MultiSocket.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\common\impl\MultiSocketImpl.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\common\impl\ResolverAsio.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\common\impl\RippleSSLContext.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\common\impl\TaggedCache.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\common\jsonrpc_fields.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\common\KeyCache.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\common\MultiSocket.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\common\Resolver.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\common\ResolverAsio.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\common\RippleSSLContext.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\common\seconds_clock.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\common\TaggedCache.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\common\tests\cross_offer.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\common\UnorderedContainers.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>
<ClInclude Include="..\..\src\ripple\core\SystemParameters.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\crypto\Base58Data.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\crypto\Base58Data.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\crypto\CKey.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\crypto\CKey.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\crypto\CKeyDeterministic.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\data\crypto\CKeyECIES.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\data\crypto\RFC1751.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\crypto\RFC1751.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\BuildInfo.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\BuildInfo.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\HashPrefix.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\HashPrefix.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\data\protocol\KnownFormats.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\LedgerFormats.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\LedgerFormats.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\data\protocol\Protocol.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\RippleAddress.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\RippleAddress.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\SerializedObjectTemplate.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\SerializedObjectTemplate.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\data\protocol\SerializedType.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\SerializedTypes.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\SerializedTypes.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\Serializer.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\Serializer.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\SField.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\SField.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\STAmount.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\STAmount.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\STAmount.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\data\protocol\STArray.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\STArray.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\data\protocol\STBitString.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\STInteger.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\STInteger.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\STObject.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\STObject.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\STParsedJSON.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\STParsedJSON.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\TER.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\TER.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\data\protocol\TxFlags.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\data\protocol\TxFormats.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\data\protocol\TxFormats.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\data\utility\UptimeTimerAdapter.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\http\impl\Door.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\http\impl\Door.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\http\impl\Peer.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\http\impl\Port.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\http\impl\ScopedStream.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\http\impl\Server.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\http\impl\ServerImpl.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\http\impl\ServerImpl.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\http\impl\Types.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\http\Server.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\http\Session.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\http\tests\Server.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_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\Tests.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>
<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\RPCDoor.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\net\impl\RPCErr.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\net\impl\RPCServerImp.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\net\impl\RPCSub.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\net\impl\RPCUtil.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\RPCDoor.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\RPCErr.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\RPCServer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\RPCSub.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\net\RPCUtil.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>
<ClInclude Include="..\..\src\ripple\nodestore\backend\HyperDBFactory.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\backend\LevelDBFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\backend\LevelDBFactory.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\backend\MemoryFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\backend\MemoryFactory.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\backend\NullFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\backend\NullFactory.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\backend\RocksDBFactory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\backend\RocksDBFactory.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\Database.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\DummyScheduler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\nodestore\Factory.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\impl\Backend.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\impl\BatchWriter.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\impl\BatchWriter.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\impl\Database.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\impl\DatabaseImp.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\Factory.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\impl\Manager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\impl\NodeObject.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\impl\Scheduler.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\impl\Task.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\BackendTests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\tests\BasicTests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\nodestore\tests\DatabaseTests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\tests\TestBase.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\nodestore\tests\TimingTests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\nodestore\Types.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\impl\abstract_protocol_handler.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\overlay\impl\Message.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\overlay\impl\message_name.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\overlay\impl\message_name.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\impl\message_stream.h">
</ClInclude>
<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\PeerDoor.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\overlay\impl\PeerDoor.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\peer_info.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\impl\peer_protocol_detector.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\overlay\impl\Tuning.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\peer_info.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>
<ClCompile Include="..\..\src\ripple\peerfinder\impl\Config.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<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>
<ClCompile Include="..\..\src\ripple\peerfinder\impl\Livecache.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<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>
<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\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>
<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\api\Charge.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\api\Consumer.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\api\Disposition.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\api\Fees.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\api\Gossip.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\api\LegacyFees.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\api\Manager.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\resource\api\Types.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>
<ClCompile Include="..\..\src\ripple\resource\impl\LegacyFees.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\resource\impl\Logic.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\resource\impl\Manager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\resource\impl\Tests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\resource\impl\Tuning.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\ErrorCodes.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\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>
<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\ProofCreate.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\ProofSolve.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\handlers\ProofVerify.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>
<ClInclude Include="..\..\src\ripple\rpc\impl\DoPrint.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\rpc\impl\ErrorCodes.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<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\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\RPCServerHandler.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\impl\Status.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\rpc\impl\Status_test.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>
<ClInclude Include="..\..\src\ripple\rpc\InternalHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\Manager.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\Request.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\RPCHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\RPCServerHandler.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\rpc\Status.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\sitefiles\api\Listener.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\sitefiles\api\Manager.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\sitefiles\api\Section.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\sitefiles\api\SiteFile.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\sitefiles\impl\Logic.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\sitefiles\impl\Manager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\sitefiles\impl\Section.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\sitefiles\impl\Site.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\sitefiles\impl\SiteFile.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\sslutil\bignum_error.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\sslutil\CAutoBN_CTX.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\sslutil\CBigNum.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\sslutil\DHUtil.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\sslutil\ECDSACanonical.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\sslutil\impl\CBigNum.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\sslutil\impl\DHUtil.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\sslutil\impl\ECDSACanonical.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\types\AgedHistory.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\Base58.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\base_uint.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\Blob.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\Book.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\ByteOrder.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\CryptoIdentifier.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\IdentifierStorage.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\IdentifierType.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\types\impl\Base58.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\types\impl\ByteOrder.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\types\impl\Issue.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\types\impl\RandomNumbers.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\types\impl\RippleIdentifierTests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\types\impl\strHex.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\types\impl\UintTypes.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\types\Issue.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\RandomNumbers.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\RippleAccountID.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\RippleAccountPrivateKey.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\RippleAccountPublicKey.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\RippleLedgerHash.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\RipplePrivateKey.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\RipplePublicKey.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\RipplePublicKeyHash.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\SimpleIdentifier.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\strHex.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\UInt160.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\types\UintTypes.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\unity\app.cpp">
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\app.h">
</ClInclude>
<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\common.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\core.cpp">
</ClCompile>
<ClCompile Include="..\..\src\ripple\unity\data.cpp">
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\data.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\unity\http.cpp">
</ClCompile>
<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>
<ClInclude Include="..\..\src\ripple\unity\json.h">
</ClInclude>
<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>
<ClInclude Include="..\..\src\ripple\unity\net.h">
</ClInclude>
<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\resource.cpp">
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\resource.h">
</ClInclude>
<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>
<ClInclude Include="..\..\src\ripple\unity\rpcx.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\unity\sitefiles.cpp">
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\sitefiles.h">
</ClInclude>
<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\sslutil.cpp">
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\sslutil.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\unity\types.cpp">
</ClCompile>
<ClInclude Include="..\..\src\ripple\unity\types.h">
</ClInclude>
<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\impl\ChosenList.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\impl\Count.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\impl\Logic.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\impl\Manager.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClCompile Include="..\..\src\ripple\validators\impl\Source.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\SourceDesc.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\impl\SourceFile.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\SourceFile.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\impl\SourceStrings.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\SourceStrings.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\impl\SourceURL.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\SourceURL.h">
</ClInclude>
<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>
<ClCompile Include="..\..\src\ripple\validators\impl\Tests.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\Tuning.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\impl\Utilities.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\impl\Utilities.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\impl\Validation.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\impl\Validator.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\Manager.h">
</ClInclude>
<ClInclude Include="..\..\src\ripple\validators\Source.h">
</ClInclude>
<ClCompile Include="..\..\src\ripple\validators\tests\Validators.test.cpp">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\ripple\validators\Types.h">
</ClInclude>
<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\flush_scheduler.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\flush_scheduler.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>
<ClCompile Include="..\..\src\rocksdb2\db\write_controller.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\write_controller.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\db\write_thread.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\db\write_thread.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\immutable_options.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_filter_block.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\block_based_filter_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>
<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\full_filter_block.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\full_filter_block.h">
</ClInclude>
<ClCompile Include="..\..\src\rocksdb2\table\get_context.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\table\get_context.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\compacted_db\compacted_db_impl.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\utilities\compacted_db\compacted_db_impl.h">
</ClInclude>
<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>
<ClCompile Include="..\..\src\rocksdb2\util\mutable_cf_options.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\mutable_cf_options.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\options_helper.cc">
<ExcludedFromBuild>True</ExcludedFromBuild>
</ClCompile>
<ClInclude Include="..\..\src\rocksdb2\util\options_helper.h">
</ClInclude>
<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>
<ClInclude Include="..\..\src\rocksdb2\util\scoped_arena_iterator.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>