From 668daf45faedce852239f8a2fe3450cdb16f318a Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 17:10:04 -0700 Subject: [PATCH 01/10] Revert "Revert "Enable precompiled headers for test/functional (#891)" (#904)" This reverts commit 8484f5d97af41a9b0980eed2bd5d736f4c355f1c. --- Release/tests/functional/http/client/CMakeLists.txt | 13 +++++++++++++ Release/tests/functional/json/CMakeLists.txt | 13 +++++++++++++ .../tests/functional/pplx/pplx_test/CMakeLists.txt | 13 +++++++++++++ Release/tests/functional/streams/CMakeLists.txt | 13 +++++++++++++ Release/tests/functional/uri/CMakeLists.txt | 13 +++++++++++++ Release/tests/functional/utils/CMakeLists.txt | 13 +++++++++++++ 6 files changed, 78 insertions(+) diff --git a/Release/tests/functional/http/client/CMakeLists.txt b/Release/tests/functional/http/client/CMakeLists.txt index 17cf4eff81..1cf9b6e6f5 100644 --- a/Release/tests/functional/http/client/CMakeLists.txt +++ b/Release/tests/functional/http/client/CMakeLists.txt @@ -32,6 +32,19 @@ else() target_link_libraries(httpclient_test PRIVATE httptest_utilities) endif() +if(MSVC) + get_target_property(_srcs httpclient_test SOURCES) + + if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + endif() + + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + target_sources(httpclient_test PRIVATE stdafx.cpp) + target_compile_options(httpclient_test PRIVATE /Yustdafx.h /Zm200) +endif() + if(NOT WIN32) cpprest_find_boost() target_link_libraries(httpclient_test PRIVATE cpprestsdk_boost_internal) diff --git a/Release/tests/functional/json/CMakeLists.txt b/Release/tests/functional/json/CMakeLists.txt index 379a6bd4bf..c9dccfcfeb 100644 --- a/Release/tests/functional/json/CMakeLists.txt +++ b/Release/tests/functional/json/CMakeLists.txt @@ -16,3 +16,16 @@ if(UNIX AND NOT APPLE) cpprest_find_boost() target_link_libraries(json_test PRIVATE cpprestsdk_boost_internal) endif() + +if(MSVC) + get_target_property(_srcs json_test SOURCES) + + if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + endif() + + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + target_sources(json_test PRIVATE stdafx.cpp) + target_compile_options(json_test PRIVATE /Yustdafx.h /Zm200) +endif() diff --git a/Release/tests/functional/pplx/pplx_test/CMakeLists.txt b/Release/tests/functional/pplx/pplx_test/CMakeLists.txt index 01c56f7522..a51776989b 100644 --- a/Release/tests/functional/pplx/pplx_test/CMakeLists.txt +++ b/Release/tests/functional/pplx/pplx_test/CMakeLists.txt @@ -6,3 +6,16 @@ set(SOURCES ) add_casablanca_test(pplx_test SOURCES) + +if(MSVC) + get_target_property(_srcs pplx_test SOURCES) + + if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + endif() + + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + target_sources(pplx_test PRIVATE stdafx.cpp) + target_compile_options(pplx_test PRIVATE /Yustdafx.h /Zm200) +endif() diff --git a/Release/tests/functional/streams/CMakeLists.txt b/Release/tests/functional/streams/CMakeLists.txt index 4b11173b18..d2b6858f15 100644 --- a/Release/tests/functional/streams/CMakeLists.txt +++ b/Release/tests/functional/streams/CMakeLists.txt @@ -24,3 +24,16 @@ if(NOT WIN32 OR CPPREST_WEBSOCKETS_IMPL STREQUAL "wspp") target_include_directories(streams_test PRIVATE $) endif() endif() + +if(MSVC) + get_target_property(_srcs streams_test SOURCES) + + if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + endif() + + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + target_sources(streams_test PRIVATE stdafx.cpp) + target_compile_options(streams_test PRIVATE /Yustdafx.h /Zm200) +endif() diff --git a/Release/tests/functional/uri/CMakeLists.txt b/Release/tests/functional/uri/CMakeLists.txt index 54d80ac254..1a4aaee947 100644 --- a/Release/tests/functional/uri/CMakeLists.txt +++ b/Release/tests/functional/uri/CMakeLists.txt @@ -13,3 +13,16 @@ set(SOURCES ) add_casablanca_test(uri_test SOURCES) + +if(MSVC) + get_target_property(_srcs uri_test SOURCES) + + if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + endif() + + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + target_sources(uri_test PRIVATE stdafx.cpp) + target_compile_options(uri_test PRIVATE /Yustdafx.h /Zm200) +endif() diff --git a/Release/tests/functional/utils/CMakeLists.txt b/Release/tests/functional/utils/CMakeLists.txt index ff175283f8..ff5d4cb49c 100644 --- a/Release/tests/functional/utils/CMakeLists.txt +++ b/Release/tests/functional/utils/CMakeLists.txt @@ -13,3 +13,16 @@ add_casablanca_test(utils_test SOURCES) if(CMAKE_COMPILER_IS_GNUCXX) target_compile_options(utils_test PRIVATE "-Wno-deprecated-declarations") endif() + +if(MSVC) + get_target_property(_srcs utils_test SOURCES) + + if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + endif() + + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + target_sources(utils_test PRIVATE stdafx.cpp) + target_compile_options(utils_test PRIVATE /Yustdafx.h /Zm200) +endif() From 6461382d26b57081371e16fa53952a7ee16d98eb Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 17:12:50 -0700 Subject: [PATCH 02/10] Remove duplicate stdafx.cpp from sources list to resolve ninja circular dependency. --- Release/tests/functional/http/client/CMakeLists.txt | 1 - Release/tests/functional/json/CMakeLists.txt | 1 - Release/tests/functional/pplx/pplx_test/CMakeLists.txt | 1 - Release/tests/functional/streams/CMakeLists.txt | 1 - Release/tests/functional/uri/CMakeLists.txt | 1 - Release/tests/functional/utils/CMakeLists.txt | 1 - 6 files changed, 6 deletions(-) diff --git a/Release/tests/functional/http/client/CMakeLists.txt b/Release/tests/functional/http/client/CMakeLists.txt index 1cf9b6e6f5..9430bb2734 100644 --- a/Release/tests/functional/http/client/CMakeLists.txt +++ b/Release/tests/functional/http/client/CMakeLists.txt @@ -22,7 +22,6 @@ set(SOURCES to_string_tests.cpp http_client_fuzz_tests.cpp compression_tests.cpp - stdafx.cpp ) add_casablanca_test(httpclient_test SOURCES) diff --git a/Release/tests/functional/json/CMakeLists.txt b/Release/tests/functional/json/CMakeLists.txt index c9dccfcfeb..e026fe5126 100644 --- a/Release/tests/functional/json/CMakeLists.txt +++ b/Release/tests/functional/json/CMakeLists.txt @@ -5,7 +5,6 @@ set(SOURCES to_as_and_operators_tests.cpp iterator_tests.cpp json_numbers_tests.cpp - stdafx.cpp ) if(NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) list(APPEND SOURCES fuzz_tests.cpp) diff --git a/Release/tests/functional/pplx/pplx_test/CMakeLists.txt b/Release/tests/functional/pplx/pplx_test/CMakeLists.txt index a51776989b..a896981fae 100644 --- a/Release/tests/functional/pplx/pplx_test/CMakeLists.txt +++ b/Release/tests/functional/pplx/pplx_test/CMakeLists.txt @@ -2,7 +2,6 @@ set(SOURCES pplx_op_test.cpp pplx_task_options.cpp pplxtask_tests.cpp - stdafx.cpp ) add_casablanca_test(pplx_test SOURCES) diff --git a/Release/tests/functional/streams/CMakeLists.txt b/Release/tests/functional/streams/CMakeLists.txt index d2b6858f15..b007dee17f 100644 --- a/Release/tests/functional/streams/CMakeLists.txt +++ b/Release/tests/functional/streams/CMakeLists.txt @@ -4,7 +4,6 @@ set(SOURCES memstream_tests.cpp ostream_tests.cpp stdstream_tests.cpp - stdafx.cpp ) if(WINDOWS_STORE OR WINDOWS_PHONE) list(APPEND SOURCES winrt_interop_tests.cpp) diff --git a/Release/tests/functional/uri/CMakeLists.txt b/Release/tests/functional/uri/CMakeLists.txt index 1a4aaee947..0f0316b93b 100644 --- a/Release/tests/functional/uri/CMakeLists.txt +++ b/Release/tests/functional/uri/CMakeLists.txt @@ -9,7 +9,6 @@ set(SOURCES splitting_tests.cpp uri_builder_tests.cpp resolve_uri_tests.cpp - stdafx.cpp ) add_casablanca_test(uri_test SOURCES) diff --git a/Release/tests/functional/utils/CMakeLists.txt b/Release/tests/functional/utils/CMakeLists.txt index ff5d4cb49c..ba0041b0a5 100644 --- a/Release/tests/functional/utils/CMakeLists.txt +++ b/Release/tests/functional/utils/CMakeLists.txt @@ -5,7 +5,6 @@ set(SOURCES macro_test.cpp nonce_generator_tests.cpp win32_encryption_tests.cpp - stdafx.cpp ) add_casablanca_test(utils_test SOURCES) From c4fbb12553eead825243fd7a5082acd6f8955f1d Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 17:26:01 -0700 Subject: [PATCH 03/10] Remove PCH from project with only one .cpp. --- Release/tests/common/utilities/CMakeLists.txt | 1 - .../tests/common/utilities/os_utilities.cpp | 7 +++--- Release/tests/common/utilities/stdafx.cpp | 18 -------------- Release/tests/common/utilities/stdafx.h | 24 ------------------- Release/tests/common/utilities/targetver.h | 20 ---------------- 5 files changed, 3 insertions(+), 67 deletions(-) delete mode 100644 Release/tests/common/utilities/stdafx.cpp delete mode 100644 Release/tests/common/utilities/stdafx.h delete mode 100644 Release/tests/common/utilities/targetver.h diff --git a/Release/tests/common/utilities/CMakeLists.txt b/Release/tests/common/utilities/CMakeLists.txt index dfe4852da6..a2d2306577 100644 --- a/Release/tests/common/utilities/CMakeLists.txt +++ b/Release/tests/common/utilities/CMakeLists.txt @@ -6,7 +6,6 @@ endif() add_library(common_utilities os_utilities.cpp - stdafx.cpp ) if(NOT BUILD_SHARED_LIBS) diff --git a/Release/tests/common/utilities/os_utilities.cpp b/Release/tests/common/utilities/os_utilities.cpp index 639460078e..0e318e8069 100644 --- a/Release/tests/common/utilities/os_utilities.cpp +++ b/Release/tests/common/utilities/os_utilities.cpp @@ -4,17 +4,17 @@ * * =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ * -* os_utilities.cpp - defines an abstraction for common OS functions like Sleep, hiding the underlying platform. +* os_utilities.cpp - defines an abstraction for common OS functions like Sleep, hiding the underlying platform. * * =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- ****/ -#include "stdafx.h" - #include "os_utilities.h" #ifdef WIN32 +#define NOMINMAX #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers +#include #include #else #include @@ -54,4 +54,3 @@ long os_utilities::interlocked_exchange(volatile long *target, long value) } }}} - diff --git a/Release/tests/common/utilities/stdafx.cpp b/Release/tests/common/utilities/stdafx.cpp deleted file mode 100644 index b5b248455b..0000000000 --- a/Release/tests/common/utilities/stdafx.cpp +++ /dev/null @@ -1,18 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* stdafx.cpp -* -* Pre-compiled headers -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ - -// stdafx.cpp : source file that includes just the standard includes -// Server.pch will be the pre-compiled header -// stdafx.obj will contain the pre-compiled type information - -#include "stdafx.h" diff --git a/Release/tests/common/utilities/stdafx.h b/Release/tests/common/utilities/stdafx.h deleted file mode 100644 index db5203bed7..0000000000 --- a/Release/tests/common/utilities/stdafx.h +++ /dev/null @@ -1,24 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* stdafx.h -* -* Pre-compiled headers -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ - -#pragma once - -#ifdef WIN32 - -#include "targetver.h" - -#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers -#define NOMINMAX -#include - -#endif diff --git a/Release/tests/common/utilities/targetver.h b/Release/tests/common/utilities/targetver.h deleted file mode 100644 index 95417e6073..0000000000 --- a/Release/tests/common/utilities/targetver.h +++ /dev/null @@ -1,20 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* targetver.h -* -* Standard VS-generated header file. -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ -#pragma once - -// Including SDKDDKVer.h defines the highest available Windows platform. - -// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and -// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. - -#include From f1cfdd161b2cea35a1fcbd7c19b6b8983fc317a2 Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 17:34:04 -0700 Subject: [PATCH 04/10] Add PCHes to httplistener_test. --- .../tests/functional/http/listener/CMakeLists.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Release/tests/functional/http/listener/CMakeLists.txt b/Release/tests/functional/http/listener/CMakeLists.txt index 33be6fb354..cacb600585 100644 --- a/Release/tests/functional/http/listener/CMakeLists.txt +++ b/Release/tests/functional/http/listener/CMakeLists.txt @@ -13,7 +13,6 @@ if(NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) response_stream_tests.cpp status_code_reason_phrase_tests.cpp to_string_tests.cpp - stdafx.cpp ) add_casablanca_test(httplistener_test SOURCES) @@ -22,4 +21,15 @@ if(NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) else() target_link_libraries(httplistener_test PRIVATE httptest_utilities) endif() + + if(MSVC) + get_target_property(_srcs httplistener_test SOURCES) + if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + endif() + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + target_sources(httplistener_test PRIVATE stdafx.cpp) + target_compile_options(httplistener_test PRIVATE /Yustdafx.h /Zm200) + endif() endif() From 4b9e7ddcfc42b2aa7823a403c6dfcbd0e2658cac Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 17:45:02 -0700 Subject: [PATCH 05/10] Remove Oauth1Client sample PCH as it has only one cpp. --- Release/samples/Oauth1Client/CMakeLists.txt | 5 +- Release/samples/Oauth1Client/Oauth1Client.cpp | 4 +- .../Oauth1Client140/Oauth1Client140.vcxproj | 205 ----------------- .../Oauth1Client140.vcxproj.filters | 33 --- .../Oauth1Client141/Oauth1Client141.vcxproj | 206 ------------------ .../Oauth1Client141.vcxproj.filters | 33 --- Release/samples/Oauth1Client/stdafx.cpp | 15 -- Release/samples/Oauth1Client/stdafx.h | 17 -- 8 files changed, 4 insertions(+), 514 deletions(-) delete mode 100644 Release/samples/Oauth1Client/Oauth1Client140/Oauth1Client140.vcxproj delete mode 100644 Release/samples/Oauth1Client/Oauth1Client140/Oauth1Client140.vcxproj.filters delete mode 100644 Release/samples/Oauth1Client/Oauth1Client141/Oauth1Client141.vcxproj delete mode 100644 Release/samples/Oauth1Client/Oauth1Client141/Oauth1Client141.vcxproj.filters delete mode 100644 Release/samples/Oauth1Client/stdafx.cpp delete mode 100644 Release/samples/Oauth1Client/stdafx.h diff --git a/Release/samples/Oauth1Client/CMakeLists.txt b/Release/samples/Oauth1Client/CMakeLists.txt index 4630cba8fe..e77d3fdeaa 100644 --- a/Release/samples/Oauth1Client/CMakeLists.txt +++ b/Release/samples/Oauth1Client/CMakeLists.txt @@ -1,8 +1,7 @@ if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) add_executable(oauth1client Oauth1Client.cpp - stdafx.cpp ) - + target_link_libraries(oauth1client cpprest) -endif() \ No newline at end of file +endif() diff --git a/Release/samples/Oauth1Client/Oauth1Client.cpp b/Release/samples/Oauth1Client/Oauth1Client.cpp index d360d37d54..8c27ef2f4e 100644 --- a/Release/samples/Oauth1Client/Oauth1Client.cpp +++ b/Release/samples/Oauth1Client/Oauth1Client.cpp @@ -26,7 +26,8 @@ Set following entry in the hosts file: 127.0.0.1 testhost.local */ -#include "stdafx.h" +#include +#include "cpprest/http_client.h" #if defined(_WIN32) && !defined(__cplusplus_winrt) // Extra includes for Windows desktop. @@ -301,4 +302,3 @@ int main(int argc, char *argv[]) ucout << "Done." << std::endl; return 0; } - diff --git a/Release/samples/Oauth1Client/Oauth1Client140/Oauth1Client140.vcxproj b/Release/samples/Oauth1Client/Oauth1Client140/Oauth1Client140.vcxproj deleted file mode 100644 index 2d9d51c16d..0000000000 --- a/Release/samples/Oauth1Client/Oauth1Client140/Oauth1Client140.vcxproj +++ /dev/null @@ -1,205 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {850CCB95-CFA8-4E41-9D1D-387C0C186740} - Win32Proj - Oauth1Client - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - - - - Application - true - NotSet - v140 - - - Application - true - NotSet - v140 - - - Application - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - \ No newline at end of file diff --git a/Release/samples/Oauth1Client/Oauth1Client140/Oauth1Client140.vcxproj.filters b/Release/samples/Oauth1Client/Oauth1Client140/Oauth1Client140.vcxproj.filters deleted file mode 100644 index 48d2ebae5f..0000000000 --- a/Release/samples/Oauth1Client/Oauth1Client140/Oauth1Client140.vcxproj.filters +++ /dev/null @@ -1,33 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/Oauth1Client/Oauth1Client141/Oauth1Client141.vcxproj b/Release/samples/Oauth1Client/Oauth1Client141/Oauth1Client141.vcxproj deleted file mode 100644 index 6ff9eeb18a..0000000000 --- a/Release/samples/Oauth1Client/Oauth1Client141/Oauth1Client141.vcxproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {850CCB95-CFA8-4E41-9D1D-387C0C186740} - Win32Proj - Oauth1Client - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - 10.0.16299.0 - - - - Application - true - NotSet - v141 - - - Application - true - NotSet - v141 - - - Application - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - \ No newline at end of file diff --git a/Release/samples/Oauth1Client/Oauth1Client141/Oauth1Client141.vcxproj.filters b/Release/samples/Oauth1Client/Oauth1Client141/Oauth1Client141.vcxproj.filters deleted file mode 100644 index 48d2ebae5f..0000000000 --- a/Release/samples/Oauth1Client/Oauth1Client141/Oauth1Client141.vcxproj.filters +++ /dev/null @@ -1,33 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/Oauth1Client/stdafx.cpp b/Release/samples/Oauth1Client/stdafx.cpp deleted file mode 100644 index cd389fa0d6..0000000000 --- a/Release/samples/Oauth1Client/stdafx.cpp +++ /dev/null @@ -1,15 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* stdafx.cpp : source file that includes just the standard includes -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ - -#include "stdafx.h" - -// reference any additional headers you need in STDAFX.H -// and not in this file diff --git a/Release/samples/Oauth1Client/stdafx.h b/Release/samples/Oauth1Client/stdafx.h deleted file mode 100644 index 88797e88c3..0000000000 --- a/Release/samples/Oauth1Client/stdafx.h +++ /dev/null @@ -1,17 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* stdafx.h : include file for standard system include files, -* or project specific include files that are used frequently, but -* are changed infrequently -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ - -#pragma once - -#include -#include "cpprest/http_client.h" From 9ea5a6c73b298cea3b55a011e78d4d04ed9a8519 Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 17:47:26 -0700 Subject: [PATCH 06/10] Also remove Oauth2Client PCH --- Release/samples/Oauth2Client/CMakeLists.txt | 3 +- Release/samples/Oauth2Client/Oauth2Client.cpp | 4 +- .../Oauth2Client140/Oauth2Client140.vcxproj | 205 ----------------- .../Oauth2Client140.vcxproj.filters | 33 --- .../Oauth2Client141/Oauth2Client141.vcxproj | 206 ------------------ .../Oauth2Client141.vcxproj.filters | 33 --- Release/samples/Oauth2Client/stdafx.cpp | 15 -- Release/samples/Oauth2Client/stdafx.h | 17 -- 8 files changed, 3 insertions(+), 513 deletions(-) delete mode 100644 Release/samples/Oauth2Client/Oauth2Client140/Oauth2Client140.vcxproj delete mode 100644 Release/samples/Oauth2Client/Oauth2Client140/Oauth2Client140.vcxproj.filters delete mode 100644 Release/samples/Oauth2Client/Oauth2Client141/Oauth2Client141.vcxproj delete mode 100644 Release/samples/Oauth2Client/Oauth2Client141/Oauth2Client141.vcxproj.filters delete mode 100644 Release/samples/Oauth2Client/stdafx.cpp delete mode 100644 Release/samples/Oauth2Client/stdafx.h diff --git a/Release/samples/Oauth2Client/CMakeLists.txt b/Release/samples/Oauth2Client/CMakeLists.txt index 8c3bdbc118..4da12bb474 100644 --- a/Release/samples/Oauth2Client/CMakeLists.txt +++ b/Release/samples/Oauth2Client/CMakeLists.txt @@ -1,8 +1,7 @@ if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) add_executable(oauth2client Oauth2Client.cpp - stdafx.cpp ) target_link_libraries(oauth2client cpprest) -endif() \ No newline at end of file +endif() diff --git a/Release/samples/Oauth2Client/Oauth2Client.cpp b/Release/samples/Oauth2Client/Oauth2Client.cpp index 59a963eaff..8d62b89cda 100644 --- a/Release/samples/Oauth2Client/Oauth2Client.cpp +++ b/Release/samples/Oauth2Client/Oauth2Client.cpp @@ -26,7 +26,8 @@ Set following entry in the hosts file: 127.0.0.1 testhost.local */ -#include "stdafx.h" +#include +#include "cpprest/http_client.h" #if defined(_WIN32) && !defined(__cplusplus_winrt) // Extra includes for Windows desktop. @@ -321,4 +322,3 @@ int main(int argc, char *argv[]) ucout << "Done." << std::endl; return 0; } - diff --git a/Release/samples/Oauth2Client/Oauth2Client140/Oauth2Client140.vcxproj b/Release/samples/Oauth2Client/Oauth2Client140/Oauth2Client140.vcxproj deleted file mode 100644 index 5b69ac56a5..0000000000 --- a/Release/samples/Oauth2Client/Oauth2Client140/Oauth2Client140.vcxproj +++ /dev/null @@ -1,205 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654} - Win32Proj - Oauth2Client - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - - - - Application - true - NotSet - v140 - - - Application - true - NotSet - v140 - - - Application - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - \ No newline at end of file diff --git a/Release/samples/Oauth2Client/Oauth2Client140/Oauth2Client140.vcxproj.filters b/Release/samples/Oauth2Client/Oauth2Client140/Oauth2Client140.vcxproj.filters deleted file mode 100644 index d11e5aec8b..0000000000 --- a/Release/samples/Oauth2Client/Oauth2Client140/Oauth2Client140.vcxproj.filters +++ /dev/null @@ -1,33 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/Oauth2Client/Oauth2Client141/Oauth2Client141.vcxproj b/Release/samples/Oauth2Client/Oauth2Client141/Oauth2Client141.vcxproj deleted file mode 100644 index 1ff3cc807d..0000000000 --- a/Release/samples/Oauth2Client/Oauth2Client141/Oauth2Client141.vcxproj +++ /dev/null @@ -1,206 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654} - Win32Proj - Oauth2Client - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - 10.0.16299.0 - - - - Application - true - NotSet - v141 - - - Application - true - NotSet - v141 - - - Application - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - \ No newline at end of file diff --git a/Release/samples/Oauth2Client/Oauth2Client141/Oauth2Client141.vcxproj.filters b/Release/samples/Oauth2Client/Oauth2Client141/Oauth2Client141.vcxproj.filters deleted file mode 100644 index d11e5aec8b..0000000000 --- a/Release/samples/Oauth2Client/Oauth2Client141/Oauth2Client141.vcxproj.filters +++ /dev/null @@ -1,33 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/Oauth2Client/stdafx.cpp b/Release/samples/Oauth2Client/stdafx.cpp deleted file mode 100644 index cd389fa0d6..0000000000 --- a/Release/samples/Oauth2Client/stdafx.cpp +++ /dev/null @@ -1,15 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* stdafx.cpp : source file that includes just the standard includes -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ - -#include "stdafx.h" - -// reference any additional headers you need in STDAFX.H -// and not in this file diff --git a/Release/samples/Oauth2Client/stdafx.h b/Release/samples/Oauth2Client/stdafx.h deleted file mode 100644 index 88797e88c3..0000000000 --- a/Release/samples/Oauth2Client/stdafx.h +++ /dev/null @@ -1,17 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* stdafx.h : include file for standard system include files, -* or project specific include files that are used frequently, but -* are changed infrequently -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ - -#pragma once - -#include -#include "cpprest/http_client.h" From 28ddea49fcdeace77a30081f019f6cc15d247df8 Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 17:49:40 -0700 Subject: [PATCH 07/10] Delete legacy SearchFile project files and slns. --- .../SearchFile140/SearchFile140.vcxproj | 146 --------- .../SearchFile140.vcxproj.filters | 13 - .../SearchFile141/SearchFile141.vcxproj | 147 --------- .../SearchFile141.vcxproj.filters | 13 - cpprestsdk140.sln | 292 ------------------ cpprestsdk141.sln | 258 ---------------- 6 files changed, 869 deletions(-) delete mode 100644 Release/samples/SearchFile/SearchFile140/SearchFile140.vcxproj delete mode 100644 Release/samples/SearchFile/SearchFile140/SearchFile140.vcxproj.filters delete mode 100644 Release/samples/SearchFile/SearchFile141/SearchFile141.vcxproj delete mode 100644 Release/samples/SearchFile/SearchFile141/SearchFile141.vcxproj.filters delete mode 100644 cpprestsdk140.sln delete mode 100644 cpprestsdk141.sln diff --git a/Release/samples/SearchFile/SearchFile140/SearchFile140.vcxproj b/Release/samples/SearchFile/SearchFile140/SearchFile140.vcxproj deleted file mode 100644 index c749d29e9c..0000000000 --- a/Release/samples/SearchFile/SearchFile140/SearchFile140.vcxproj +++ /dev/null @@ -1,146 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F03BEE03-BEFB-4B17-A774-D9C8246530D4} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath12) - - - - Application - true - NotSet - v140 - - - Application - true - NotSet - v140 - - - Application - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - - \ No newline at end of file diff --git a/Release/samples/SearchFile/SearchFile140/SearchFile140.vcxproj.filters b/Release/samples/SearchFile/SearchFile140/SearchFile140.vcxproj.filters deleted file mode 100644 index 2794140178..0000000000 --- a/Release/samples/SearchFile/SearchFile140/SearchFile140.vcxproj.filters +++ /dev/null @@ -1,13 +0,0 @@ - - - - - {bc214923-f806-44a3-abd4-08a1aa1a9b3b} - - - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/SearchFile/SearchFile141/SearchFile141.vcxproj b/Release/samples/SearchFile/SearchFile141/SearchFile141.vcxproj deleted file mode 100644 index 4c1d729dcd..0000000000 --- a/Release/samples/SearchFile/SearchFile141/SearchFile141.vcxproj +++ /dev/null @@ -1,147 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F03BEE03-BEFB-4B17-A774-D9C8246530D4} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath12) - 10.0.16299.0 - - - - Application - true - NotSet - v141 - - - Application - true - NotSet - v141 - - - Application - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - - \ No newline at end of file diff --git a/Release/samples/SearchFile/SearchFile141/SearchFile141.vcxproj.filters b/Release/samples/SearchFile/SearchFile141/SearchFile141.vcxproj.filters deleted file mode 100644 index 2794140178..0000000000 --- a/Release/samples/SearchFile/SearchFile141/SearchFile141.vcxproj.filters +++ /dev/null @@ -1,13 +0,0 @@ - - - - - {bc214923-f806-44a3-abd4-08a1aa1a9b3b} - - - - - Source Files - - - \ No newline at end of file diff --git a/cpprestsdk140.sln b/cpprestsdk140.sln deleted file mode 100644 index 4a9087e936..0000000000 --- a/cpprestsdk140.sln +++ /dev/null @@ -1,292 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.24720.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpprestsdk140", "Release\src\build\vs14\casablanca140.vcxproj", "{1014C621-BC2D-4813-B8C1-6D83AD6F9249}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "android", "Release\src\build\android.vcxitems", "{65951C40-A332-4B54-89C2-7CDAF30D5F66}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "Release\src\build\common.vcxitems", "{594DCB5F-07E3-4084-A2CE-268611FA629F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "other", "Release\src\build\other.vcxitems", "{3D5908F7-7673-4229-BC46-2007A7AF9CAE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win32", "Release\src\build\win32.vcxitems", "{F40F4804-50F9-4257-8D74-B9CBB19AC4C3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winrt", "Release\src\build\winrt.vcxitems", "{0A9BA181-7876-4B3D-A5E0-EE673FA51C05}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{64F2F240-04BE-43B2-97BE-DA47FDFE8393}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{B572F8D5-9728-409C-AB5E-063C7D3CA781}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BingRequest", "BingRequest", "{00EF03C1-74A9-4832-B26B-E6478C2A96AC}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "BlackJack", "BlackJack", "{B6F7411C-FE75-4CD2-A384-083A526FE6DF}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CasaLens", "CasaLens", "{76FA5645-FF99-44C0-87DB-B96AFAC2F800}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SearchFile", "SearchFile", "{22309B46-EE6F-45D0-A993-2F45D98DEF22}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BingRequest140", "Release\samples\BingRequest\BingRequest140\BingRequest140.vcxproj", "{2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Client", "Client", "{8E54A174-9108-45BF-8080-92A916C43A54}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Server", "Server", "{DADA0A65-A970-4114-8F9C-EA3327F90712}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlackJack_Client140", "Release\samples\BlackJack\BlackJack_Client\BlackJack_Client140\BlackJack_Client140.vcxproj", "{830B6E2F-9224-41D1-B9C7-A51FC78B00C7}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlackJack_Server140", "Release\samples\BlackJack\BlackJack_Server\BlackJack_Server140\BlackJack_Server140.vcxproj", "{84350CD1-D406-4A4F-9571-261CA46D77C5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CasaLens140", "Release\samples\CasaLens\CasaLens140\CasaLens140.vcxproj", "{FFBFD6C1-B525-4D35-AB64-A2FE9460B147}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SearchFile140", "Release\samples\SearchFile\SearchFile140\SearchFile140.vcxproj", "{F03BEE03-BEFB-4B17-A774-D9C8246530D4}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpprestsdk140.android", "Release\src\build\vs14.android\casablanca140.android.vcxproj", "{AFB49019-965B-4C10-BAFF-C86C16D58010}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpprestsdk140.uwp", "Release\src\build\vs14.uwp\cpprestsdk140.uwp.vcxproj", "{36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpprestsdk140.uwp.staticlib", "Release\src\build\vs14.uwp\cpprestsdk140.uwp.staticlib.vcxproj", "{47A5CFDC-C244-45A6-9830-38CB303CB495}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpprestsdk140.static", "Release\src\build\vs14.static\casablanca140.static.vcxproj", "{79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpprestsdk140.xp", "Release\src\build\vs14.xp\casablanca140.xp.vcxproj", "{39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BingRequest140.xp", "Release\samples\BingRequest\BingRequest140.xp\BingRequest140.xp.vcxproj", "{7009BCBE-D67C-4B54-BEFC-A44E62656CF1}" -EndProject -Global - GlobalSection(SharedMSBuildProjectFiles) = preSolution - Release\src\build\winrt.vcxitems*{0a9ba181-7876-4b3d-a5e0-ee673fa51c05}*SharedItemsImports = 9 - Release\src\build\android.vcxitems*{65951c40-a332-4b54-89c2-7cdaf30d5f66}*SharedItemsImports = 9 - Release\src\build\winrt.vcxitems*{47a5cfdc-c244-45a6-9830-38cb303cb495}*SharedItemsImports = 4 - Release\src\build\common.vcxitems*{47a5cfdc-c244-45a6-9830-38cb303cb495}*SharedItemsImports = 4 - Release\src\build\win32.vcxitems*{1014c621-bc2d-4813-b8c1-6d83ad6f9249}*SharedItemsImports = 4 - Release\src\build\common.vcxitems*{1014c621-bc2d-4813-b8c1-6d83ad6f9249}*SharedItemsImports = 4 - Release\src\build\winrt.vcxitems*{36d79e79-7e9e-4b3a-88a3-9f9b295c80b9}*SharedItemsImports = 4 - Release\src\build\common.vcxitems*{36d79e79-7e9e-4b3a-88a3-9f9b295c80b9}*SharedItemsImports = 4 - Release\src\build\android.vcxitems*{afb49019-965b-4c10-baff-c86c16d58010}*SharedItemsImports = 4 - Release\src\build\common.vcxitems*{afb49019-965b-4c10-baff-c86c16d58010}*SharedItemsImports = 4 - Release\src\build\win32.vcxitems*{79c9bbec-d7c9-4ba3-b2b3-5c3a14a9f24a}*SharedItemsImports = 4 - Release\src\build\common.vcxitems*{79c9bbec-d7c9-4ba3-b2b3-5c3a14a9f24a}*SharedItemsImports = 4 - Release\src\build\win32.vcxitems*{39f7e851-7ef8-4dfb-9907-b480cb8d2ac9}*SharedItemsImports = 4 - Release\src\build\common.vcxitems*{39f7e851-7ef8-4dfb-9907-b480cb8d2ac9}*SharedItemsImports = 4 - Release\src\build\win32.vcxitems*{f40f4804-50f9-4257-8d74-b9cbb19ac4c3}*SharedItemsImports = 9 - Release\src\build\other.vcxitems*{3d5908f7-7673-4229-bc46-2007a7af9cae}*SharedItemsImports = 9 - Release\src\build\common.vcxitems*{594dcb5f-07e3-4084-a2ce-268611fa629f}*SharedItemsImports = 9 - EndGlobalSection - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM = Debug|ARM - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|ARM = Release|ARM - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|ARM.ActiveCfg = Debug|ARM - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|Win32.ActiveCfg = Debug|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|Win32.Build.0 = Debug|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|x64.ActiveCfg = Debug|x64 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|x64.Build.0 = Debug|x64 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|x86.ActiveCfg = Debug|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|x86.Build.0 = Debug|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|ARM.ActiveCfg = Release|ARM - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|Win32.ActiveCfg = Release|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|Win32.Build.0 = Release|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|x64.ActiveCfg = Release|x64 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|x64.Build.0 = Release|x64 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|x86.ActiveCfg = Release|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|x86.Build.0 = Release|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|ARM.ActiveCfg = Debug|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|Win32.ActiveCfg = Debug|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|Win32.Build.0 = Debug|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|x64.ActiveCfg = Debug|x64 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|x64.Build.0 = Debug|x64 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|x86.ActiveCfg = Debug|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|x86.Build.0 = Debug|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|ARM.ActiveCfg = Release|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|Win32.ActiveCfg = Release|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|Win32.Build.0 = Release|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|x64.ActiveCfg = Release|x64 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|x64.Build.0 = Release|x64 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|x86.ActiveCfg = Release|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|x86.Build.0 = Release|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|ARM.ActiveCfg = Debug|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|Win32.ActiveCfg = Debug|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|Win32.Build.0 = Debug|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|x64.ActiveCfg = Debug|x64 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|x64.Build.0 = Debug|x64 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|x86.ActiveCfg = Debug|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|x86.Build.0 = Debug|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|ARM.ActiveCfg = Release|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|Win32.ActiveCfg = Release|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|Win32.Build.0 = Release|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|x64.ActiveCfg = Release|x64 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|x64.Build.0 = Release|x64 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|x86.ActiveCfg = Release|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|x86.Build.0 = Release|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|ARM.ActiveCfg = Debug|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|Win32.ActiveCfg = Debug|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|Win32.Build.0 = Debug|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|x64.ActiveCfg = Debug|x64 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|x64.Build.0 = Debug|x64 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|x86.ActiveCfg = Debug|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|x86.Build.0 = Debug|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|ARM.ActiveCfg = Release|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|Win32.ActiveCfg = Release|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|Win32.Build.0 = Release|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|x64.ActiveCfg = Release|x64 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|x64.Build.0 = Release|x64 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|x86.ActiveCfg = Release|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|x86.Build.0 = Release|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|ARM.ActiveCfg = Debug|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|Win32.ActiveCfg = Debug|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|Win32.Build.0 = Debug|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|x64.ActiveCfg = Debug|x64 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|x64.Build.0 = Debug|x64 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|x86.ActiveCfg = Debug|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|x86.Build.0 = Debug|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|ARM.ActiveCfg = Release|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|Win32.ActiveCfg = Release|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|Win32.Build.0 = Release|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|x64.ActiveCfg = Release|x64 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|x64.Build.0 = Release|x64 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|x86.ActiveCfg = Release|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|x86.Build.0 = Release|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|ARM.ActiveCfg = Debug|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|Win32.ActiveCfg = Debug|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|Win32.Build.0 = Debug|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|x64.ActiveCfg = Debug|x64 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|x64.Build.0 = Debug|x64 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|x86.ActiveCfg = Debug|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|x86.Build.0 = Debug|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|ARM.ActiveCfg = Release|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|Win32.ActiveCfg = Release|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|Win32.Build.0 = Release|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|x64.ActiveCfg = Release|x64 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|x64.Build.0 = Release|x64 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|x86.ActiveCfg = Release|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|x86.Build.0 = Release|Win32 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|ARM.ActiveCfg = Debug|ARM - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|ARM.Build.0 = Debug|ARM - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|Win32.ActiveCfg = Debug|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|Win32.Build.0 = Debug|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|x64.ActiveCfg = Debug|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|x86.ActiveCfg = Debug|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|x86.Build.0 = Debug|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|ARM.ActiveCfg = Release|ARM - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|ARM.Build.0 = Release|ARM - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|Win32.ActiveCfg = Release|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|Win32.Build.0 = Release|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|x64.ActiveCfg = Release|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|x86.ActiveCfg = Release|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|x86.Build.0 = Release|x86 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|ARM.ActiveCfg = Debug|ARM - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|ARM.Build.0 = Debug|ARM - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|Win32.ActiveCfg = Debug|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|Win32.Build.0 = Debug|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|x64.ActiveCfg = Debug|x64 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|x64.Build.0 = Debug|x64 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|x86.ActiveCfg = Debug|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|x86.Build.0 = Debug|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|ARM.ActiveCfg = Release|ARM - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|ARM.Build.0 = Release|ARM - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|Win32.ActiveCfg = Release|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|Win32.Build.0 = Release|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|x64.ActiveCfg = Release|x64 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|x64.Build.0 = Release|x64 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|x86.ActiveCfg = Release|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|x86.Build.0 = Release|Win32 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Debug|ARM.ActiveCfg = Debug|ARM - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Debug|ARM.Build.0 = Debug|ARM - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Debug|Win32.ActiveCfg = Debug|Win32 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Debug|Win32.Build.0 = Debug|Win32 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Debug|x64.ActiveCfg = Debug|x64 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Debug|x64.Build.0 = Debug|x64 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Debug|x86.ActiveCfg = Debug|Win32 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Debug|x86.Build.0 = Debug|Win32 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Release|ARM.ActiveCfg = Release|ARM - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Release|ARM.Build.0 = Release|ARM - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Release|Win32.ActiveCfg = Release|Win32 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Release|Win32.Build.0 = Release|Win32 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Release|x64.ActiveCfg = Release|x64 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Release|x64.Build.0 = Release|x64 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Release|x86.ActiveCfg = Release|Win32 - {47A5CFDC-C244-45A6-9830-38CB303CB495}.Release|x86.Build.0 = Release|Win32 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Debug|ARM.ActiveCfg = Debug|ARM - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Debug|ARM.Build.0 = Debug|ARM - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Debug|Win32.ActiveCfg = Debug|Win32 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Debug|Win32.Build.0 = Debug|Win32 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Debug|x64.ActiveCfg = Debug|x64 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Debug|x64.Build.0 = Debug|x64 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Debug|x86.ActiveCfg = Debug|Win32 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Debug|x86.Build.0 = Debug|Win32 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Release|ARM.ActiveCfg = Release|ARM - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Release|ARM.Build.0 = Release|ARM - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Release|Win32.ActiveCfg = Release|Win32 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Release|Win32.Build.0 = Release|Win32 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Release|x64.ActiveCfg = Release|x64 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Release|x64.Build.0 = Release|x64 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Release|x86.ActiveCfg = Release|Win32 - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A}.Release|x86.Build.0 = Release|Win32 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Debug|ARM.ActiveCfg = Debug|ARM - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Debug|ARM.Build.0 = Debug|ARM - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Debug|Win32.ActiveCfg = Debug|Win32 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Debug|Win32.Build.0 = Debug|Win32 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Debug|x64.ActiveCfg = Debug|x64 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Debug|x64.Build.0 = Debug|x64 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Debug|x86.ActiveCfg = Debug|Win32 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Debug|x86.Build.0 = Debug|Win32 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Release|ARM.ActiveCfg = Release|ARM - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Release|ARM.Build.0 = Release|ARM - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Release|Win32.ActiveCfg = Release|Win32 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Release|Win32.Build.0 = Release|Win32 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Release|x64.ActiveCfg = Release|x64 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Release|x64.Build.0 = Release|x64 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Release|x86.ActiveCfg = Release|Win32 - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9}.Release|x86.Build.0 = Release|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Debug|ARM.ActiveCfg = Debug|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Debug|Win32.ActiveCfg = Debug|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Debug|Win32.Build.0 = Debug|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Debug|x64.ActiveCfg = Debug|x64 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Debug|x64.Build.0 = Debug|x64 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Debug|x86.ActiveCfg = Debug|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Debug|x86.Build.0 = Debug|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Release|ARM.ActiveCfg = Release|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Release|Win32.ActiveCfg = Release|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Release|Win32.Build.0 = Release|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Release|x64.ActiveCfg = Release|x64 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Release|x64.Build.0 = Release|x64 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Release|x86.ActiveCfg = Release|Win32 - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1}.Release|x86.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {1014C621-BC2D-4813-B8C1-6D83AD6F9249} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {65951C40-A332-4B54-89C2-7CDAF30D5F66} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {594DCB5F-07E3-4084-A2CE-268611FA629F} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {3D5908F7-7673-4229-BC46-2007A7AF9CAE} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {F40F4804-50F9-4257-8D74-B9CBB19AC4C3} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {0A9BA181-7876-4B3D-A5E0-EE673FA51C05} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {00EF03C1-74A9-4832-B26B-E6478C2A96AC} = {B572F8D5-9728-409C-AB5E-063C7D3CA781} - {B6F7411C-FE75-4CD2-A384-083A526FE6DF} = {B572F8D5-9728-409C-AB5E-063C7D3CA781} - {76FA5645-FF99-44C0-87DB-B96AFAC2F800} = {B572F8D5-9728-409C-AB5E-063C7D3CA781} - {22309B46-EE6F-45D0-A993-2F45D98DEF22} = {B572F8D5-9728-409C-AB5E-063C7D3CA781} - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D} = {00EF03C1-74A9-4832-B26B-E6478C2A96AC} - {8E54A174-9108-45BF-8080-92A916C43A54} = {B6F7411C-FE75-4CD2-A384-083A526FE6DF} - {DADA0A65-A970-4114-8F9C-EA3327F90712} = {B6F7411C-FE75-4CD2-A384-083A526FE6DF} - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7} = {8E54A174-9108-45BF-8080-92A916C43A54} - {84350CD1-D406-4A4F-9571-261CA46D77C5} = {DADA0A65-A970-4114-8F9C-EA3327F90712} - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147} = {76FA5645-FF99-44C0-87DB-B96AFAC2F800} - {F03BEE03-BEFB-4B17-A774-D9C8246530D4} = {22309B46-EE6F-45D0-A993-2F45D98DEF22} - {AFB49019-965B-4C10-BAFF-C86C16D58010} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {47A5CFDC-C244-45A6-9830-38CB303CB495} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9} = {64F2F240-04BE-43B2-97BE-DA47FDFE8393} - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1} = {00EF03C1-74A9-4832-B26B-E6478C2A96AC} - EndGlobalSection -EndGlobal diff --git a/cpprestsdk141.sln b/cpprestsdk141.sln deleted file mode 100644 index f4ed2d2d51..0000000000 --- a/cpprestsdk141.sln +++ /dev/null @@ -1,258 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.27018.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "android", "Release\src\build\android.vcxitems", "{65951C40-A332-4B54-89C2-7CDAF30D5F66}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "Release\src\build\common.vcxitems", "{594DCB5F-07E3-4084-A2CE-268611FA629F}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "other", "Release\src\build\other.vcxitems", "{3D5908F7-7673-4229-BC46-2007A7AF9CAE}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win32", "Release\src\build\win32.vcxitems", "{F40F4804-50F9-4257-8D74-B9CBB19AC4C3}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winrt", "Release\src\build\winrt.vcxitems", "{0A9BA181-7876-4B3D-A5E0-EE673FA51C05}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{92944FCF-7E50-41FD-8A99-DD6869F9AEA5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpprest141", "Release\src\build\vs141\cpprest141.vcxproj", "{1014C621-BC2D-4813-B8C1-6D83AD6F9249}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpprest141.uwp", "Release\src\build\vs141.uwp\cpprest141.uwp.vcxproj", "{36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{EF775754-D70A-4611-A00C-F49F224FD236}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SearchFile141", "Release\samples\SearchFile\SearchFile141\SearchFile141.vcxproj", "{F03BEE03-BEFB-4B17-A774-D9C8246530D4}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OAuth2Live141", "Release\samples\OAuth2Live\OAuth2Live141.vcxproj", "{2887A786-B818-4B3D-94EF-21EFD6AFDC22}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Oauth2Client141", "Release\samples\Oauth2Client\Oauth2Client141\Oauth2Client141.vcxproj", "{35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Oauth1Client141", "Release\samples\Oauth1Client\Oauth1Client141\Oauth1Client141.vcxproj", "{850CCB95-CFA8-4E41-9D1D-387C0C186740}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FacebookDemo141", "Release\samples\FacebookDemo\FacebookDemo141.vcxproj", "{43DE4DF3-ACAA-429E-B260-CC6D4FE82658}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CasaLens141", "Release\samples\CasaLens\CasaLens141\CasaLens141.vcxproj", "{FFBFD6C1-B525-4D35-AB64-A2FE9460B147}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlackJack_UIClient141", "Release\samples\BlackJack\BlackJack_UIClient\BlackJack_UIClient141.vcxproj", "{B8D3F85B-DA71-4ACA-87BA-10FED681DC79}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlackJack_Server141", "Release\samples\BlackJack\BlackJack_Server\BlackJack_Server141\BlackJack_Server141.vcxproj", "{84350CD1-D406-4A4F-9571-261CA46D77C5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BlackJack_Client141", "Release\samples\BlackJack\BlackJack_Client\BlackJack_Client141\BlackJack_Client141.vcxproj", "{830B6E2F-9224-41D1-B9C7-A51FC78B00C7}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BingRequest141", "Release\samples\BingRequest\BingRequest141\BingRequest141.vcxproj", "{2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cpprest141.android", "Release\src\build\vs141.android\cpprest141.android.vcxproj", "{AFB49019-965B-4C10-BAFF-C86C16D58010}" -EndProject -Global - GlobalSection(SharedMSBuildProjectFiles) = preSolution - Release\src\build\winrt.vcxitems*{0a9ba181-7876-4b3d-a5e0-ee673fa51c05}*SharedItemsImports = 9 - Release\src\build\common.vcxitems*{1014c621-bc2d-4813-b8c1-6d83ad6f9249}*SharedItemsImports = 4 - Release\src\build\win32.vcxitems*{1014c621-bc2d-4813-b8c1-6d83ad6f9249}*SharedItemsImports = 4 - Release\src\build\common.vcxitems*{36d79e79-7e9e-4b3a-88a3-9f9b295c80b9}*SharedItemsImports = 4 - Release\src\build\winrt.vcxitems*{36d79e79-7e9e-4b3a-88a3-9f9b295c80b9}*SharedItemsImports = 4 - Release\src\build\other.vcxitems*{3d5908f7-7673-4229-bc46-2007a7af9cae}*SharedItemsImports = 9 - Release\src\build\common.vcxitems*{594dcb5f-07e3-4084-a2ce-268611fa629f}*SharedItemsImports = 9 - Release\src\build\android.vcxitems*{65951c40-a332-4b54-89c2-7cdaf30d5f66}*SharedItemsImports = 9 - Release\src\build\android.vcxitems*{afb49019-965b-4c10-baff-c86c16d58010}*SharedItemsImports = 4 - Release\src\build\common.vcxitems*{afb49019-965b-4c10-baff-c86c16d58010}*SharedItemsImports = 4 - Release\src\build\win32.vcxitems*{f40f4804-50f9-4257-8d74-b9cbb19ac4c3}*SharedItemsImports = 9 - EndGlobalSection - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|ARM = Debug|ARM - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|ARM = Release|ARM - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|ARM.ActiveCfg = Debug|ARM - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|ARM.Build.0 = Debug|ARM - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|x64.ActiveCfg = Debug|x64 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|x64.Build.0 = Debug|x64 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|x86.ActiveCfg = Debug|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Debug|x86.Build.0 = Debug|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|ARM.ActiveCfg = Release|ARM - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|ARM.Build.0 = Release|ARM - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|x64.ActiveCfg = Release|x64 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|x64.Build.0 = Release|x64 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|x86.ActiveCfg = Release|Win32 - {1014C621-BC2D-4813-B8C1-6D83AD6F9249}.Release|x86.Build.0 = Release|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|ARM.ActiveCfg = Debug|ARM - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|ARM.Build.0 = Debug|ARM - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|x64.ActiveCfg = Debug|x64 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|x64.Build.0 = Debug|x64 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|x86.ActiveCfg = Debug|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Debug|x86.Build.0 = Debug|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|ARM.ActiveCfg = Release|ARM - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|ARM.Build.0 = Release|ARM - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|x64.ActiveCfg = Release|x64 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|x64.Build.0 = Release|x64 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|x86.ActiveCfg = Release|Win32 - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9}.Release|x86.Build.0 = Release|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|ARM.ActiveCfg = Debug|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|x64.ActiveCfg = Debug|x64 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|x64.Build.0 = Debug|x64 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|x86.ActiveCfg = Debug|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Debug|x86.Build.0 = Debug|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|ARM.ActiveCfg = Release|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|x64.ActiveCfg = Release|x64 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|x64.Build.0 = Release|x64 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|x86.ActiveCfg = Release|Win32 - {F03BEE03-BEFB-4B17-A774-D9C8246530D4}.Release|x86.Build.0 = Release|Win32 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Debug|ARM.ActiveCfg = Debug|ARM - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Debug|ARM.Build.0 = Debug|ARM - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Debug|ARM.Deploy.0 = Debug|ARM - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Debug|x64.ActiveCfg = Debug|x64 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Debug|x64.Build.0 = Debug|x64 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Debug|x64.Deploy.0 = Debug|x64 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Debug|x86.ActiveCfg = Debug|Win32 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Debug|x86.Build.0 = Debug|Win32 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Debug|x86.Deploy.0 = Debug|Win32 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Release|ARM.ActiveCfg = Release|ARM - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Release|ARM.Build.0 = Release|ARM - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Release|ARM.Deploy.0 = Release|ARM - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Release|x64.ActiveCfg = Release|x64 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Release|x64.Build.0 = Release|x64 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Release|x64.Deploy.0 = Release|x64 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Release|x86.ActiveCfg = Release|Win32 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Release|x86.Build.0 = Release|Win32 - {2887A786-B818-4B3D-94EF-21EFD6AFDC22}.Release|x86.Deploy.0 = Release|Win32 - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Debug|ARM.ActiveCfg = Debug|ARM - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Debug|ARM.Build.0 = Debug|ARM - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Debug|x64.ActiveCfg = Debug|x64 - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Debug|x64.Build.0 = Debug|x64 - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Debug|x86.ActiveCfg = Debug|Win32 - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Debug|x86.Build.0 = Debug|Win32 - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Release|ARM.ActiveCfg = Release|ARM - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Release|ARM.Build.0 = Release|ARM - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Release|x64.ActiveCfg = Release|x64 - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Release|x64.Build.0 = Release|x64 - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Release|x86.ActiveCfg = Release|Win32 - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654}.Release|x86.Build.0 = Release|Win32 - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Debug|ARM.ActiveCfg = Debug|ARM - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Debug|ARM.Build.0 = Debug|ARM - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Debug|x64.ActiveCfg = Debug|x64 - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Debug|x64.Build.0 = Debug|x64 - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Debug|x86.ActiveCfg = Debug|Win32 - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Debug|x86.Build.0 = Debug|Win32 - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Release|ARM.ActiveCfg = Release|ARM - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Release|ARM.Build.0 = Release|ARM - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Release|x64.ActiveCfg = Release|x64 - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Release|x64.Build.0 = Release|x64 - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Release|x86.ActiveCfg = Release|Win32 - {850CCB95-CFA8-4E41-9D1D-387C0C186740}.Release|x86.Build.0 = Release|Win32 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Debug|ARM.ActiveCfg = Debug|ARM - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Debug|ARM.Build.0 = Debug|ARM - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Debug|ARM.Deploy.0 = Debug|ARM - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Debug|x64.ActiveCfg = Debug|x64 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Debug|x64.Build.0 = Debug|x64 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Debug|x64.Deploy.0 = Debug|x64 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Debug|x86.ActiveCfg = Debug|Win32 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Debug|x86.Build.0 = Debug|Win32 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Debug|x86.Deploy.0 = Debug|Win32 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Release|ARM.ActiveCfg = Release|ARM - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Release|ARM.Build.0 = Release|ARM - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Release|ARM.Deploy.0 = Release|ARM - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Release|x64.ActiveCfg = Release|x64 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Release|x64.Build.0 = Release|x64 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Release|x64.Deploy.0 = Release|x64 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Release|x86.ActiveCfg = Release|Win32 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Release|x86.Build.0 = Release|Win32 - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658}.Release|x86.Deploy.0 = Release|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|ARM.ActiveCfg = Debug|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|x64.ActiveCfg = Debug|x64 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|x64.Build.0 = Debug|x64 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|x86.ActiveCfg = Debug|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Debug|x86.Build.0 = Debug|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|ARM.ActiveCfg = Release|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|x64.ActiveCfg = Release|x64 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|x64.Build.0 = Release|x64 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|x86.ActiveCfg = Release|Win32 - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147}.Release|x86.Build.0 = Release|Win32 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Debug|ARM.ActiveCfg = Debug|ARM - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Debug|ARM.Build.0 = Debug|ARM - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Debug|ARM.Deploy.0 = Debug|ARM - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Debug|x64.ActiveCfg = Debug|x64 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Debug|x64.Build.0 = Debug|x64 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Debug|x64.Deploy.0 = Debug|x64 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Debug|x86.ActiveCfg = Debug|Win32 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Debug|x86.Build.0 = Debug|Win32 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Debug|x86.Deploy.0 = Debug|Win32 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Release|ARM.ActiveCfg = Release|ARM - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Release|ARM.Build.0 = Release|ARM - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Release|ARM.Deploy.0 = Release|ARM - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Release|x64.ActiveCfg = Release|x64 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Release|x64.Build.0 = Release|x64 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Release|x64.Deploy.0 = Release|x64 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Release|x86.ActiveCfg = Release|Win32 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Release|x86.Build.0 = Release|Win32 - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79}.Release|x86.Deploy.0 = Release|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|ARM.ActiveCfg = Debug|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|x64.ActiveCfg = Debug|x64 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|x64.Build.0 = Debug|x64 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|x86.ActiveCfg = Debug|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Debug|x86.Build.0 = Debug|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|ARM.ActiveCfg = Release|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|x64.ActiveCfg = Release|x64 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|x64.Build.0 = Release|x64 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|x86.ActiveCfg = Release|Win32 - {84350CD1-D406-4A4F-9571-261CA46D77C5}.Release|x86.Build.0 = Release|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|ARM.ActiveCfg = Debug|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|x64.ActiveCfg = Debug|x64 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|x64.Build.0 = Debug|x64 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|x86.ActiveCfg = Debug|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Debug|x86.Build.0 = Debug|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|ARM.ActiveCfg = Release|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|x64.ActiveCfg = Release|x64 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|x64.Build.0 = Release|x64 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|x86.ActiveCfg = Release|Win32 - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7}.Release|x86.Build.0 = Release|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|ARM.ActiveCfg = Debug|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|x64.ActiveCfg = Debug|x64 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|x64.Build.0 = Debug|x64 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|x86.ActiveCfg = Debug|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Debug|x86.Build.0 = Debug|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|ARM.ActiveCfg = Release|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|x64.ActiveCfg = Release|x64 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|x64.Build.0 = Release|x64 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|x86.ActiveCfg = Release|Win32 - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D}.Release|x86.Build.0 = Release|Win32 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|ARM.ActiveCfg = Debug|ARM - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|ARM.Build.0 = Debug|ARM - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|x64.ActiveCfg = Debug|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|x86.ActiveCfg = Debug|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Debug|x86.Build.0 = Debug|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|ARM.ActiveCfg = Release|ARM - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|ARM.Build.0 = Release|ARM - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|x64.ActiveCfg = Release|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|x86.ActiveCfg = Release|x86 - {AFB49019-965B-4C10-BAFF-C86C16D58010}.Release|x86.Build.0 = Release|x86 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {65951C40-A332-4B54-89C2-7CDAF30D5F66} = {92944FCF-7E50-41FD-8A99-DD6869F9AEA5} - {594DCB5F-07E3-4084-A2CE-268611FA629F} = {92944FCF-7E50-41FD-8A99-DD6869F9AEA5} - {3D5908F7-7673-4229-BC46-2007A7AF9CAE} = {92944FCF-7E50-41FD-8A99-DD6869F9AEA5} - {F40F4804-50F9-4257-8D74-B9CBB19AC4C3} = {92944FCF-7E50-41FD-8A99-DD6869F9AEA5} - {0A9BA181-7876-4B3D-A5E0-EE673FA51C05} = {92944FCF-7E50-41FD-8A99-DD6869F9AEA5} - {1014C621-BC2D-4813-B8C1-6D83AD6F9249} = {92944FCF-7E50-41FD-8A99-DD6869F9AEA5} - {36D79E79-7E9E-4B3A-88A3-9F9B295C80B9} = {92944FCF-7E50-41FD-8A99-DD6869F9AEA5} - {F03BEE03-BEFB-4B17-A774-D9C8246530D4} = {EF775754-D70A-4611-A00C-F49F224FD236} - {2887A786-B818-4B3D-94EF-21EFD6AFDC22} = {EF775754-D70A-4611-A00C-F49F224FD236} - {35DFAAD1-4B25-4ED9-BB18-84F0EFCE1654} = {EF775754-D70A-4611-A00C-F49F224FD236} - {850CCB95-CFA8-4E41-9D1D-387C0C186740} = {EF775754-D70A-4611-A00C-F49F224FD236} - {43DE4DF3-ACAA-429E-B260-CC6D4FE82658} = {EF775754-D70A-4611-A00C-F49F224FD236} - {FFBFD6C1-B525-4D35-AB64-A2FE9460B147} = {EF775754-D70A-4611-A00C-F49F224FD236} - {B8D3F85B-DA71-4ACA-87BA-10FED681DC79} = {EF775754-D70A-4611-A00C-F49F224FD236} - {84350CD1-D406-4A4F-9571-261CA46D77C5} = {EF775754-D70A-4611-A00C-F49F224FD236} - {830B6E2F-9224-41D1-B9C7-A51FC78B00C7} = {EF775754-D70A-4611-A00C-F49F224FD236} - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D} = {EF775754-D70A-4611-A00C-F49F224FD236} - {AFB49019-965B-4C10-BAFF-C86C16D58010} = {92944FCF-7E50-41FD-8A99-DD6869F9AEA5} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {5782CB9E-B335-4D07-A195-717BF4093536} - EndGlobalSection -EndGlobal From 1eb67404a7d060f2801c444afa2856dd195384e8 Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 17:54:34 -0700 Subject: [PATCH 08/10] Fixup PCHes in BlackJack sample. --- .../BlackJack_Client/BlackJackClient.cpp | 31 +++- .../BlackJack_Client140.vcxproj | 148 ----------------- .../BlackJack_Client140.vcxproj.filters | 33 ---- .../BlackJack_Client141.vcxproj | 149 ----------------- .../BlackJack_Client141.vcxproj.filters | 30 ---- .../BlackJack/BlackJack_Client/CMakeLists.txt | 1 - .../BlackJack/BlackJack_Client/stdafx.cpp | 15 -- .../BlackJack/BlackJack_Client/stdafx.h | 44 ----- .../BlackJack/BlackJack_Client/targetver.h | 18 -- .../BlackJack_Server140.vcxproj | 154 ----------------- .../BlackJack_Server140.vcxproj.filters | 45 ----- .../BlackJack_Server141.vcxproj | 155 ------------------ .../BlackJack_Server141.vcxproj.filters | 42 ----- .../BlackJack/BlackJack_Server/CMakeLists.txt | 11 ++ 14 files changed, 41 insertions(+), 835 deletions(-) delete mode 100644 Release/samples/BlackJack/BlackJack_Client/BlackJack_Client140/BlackJack_Client140.vcxproj delete mode 100644 Release/samples/BlackJack/BlackJack_Client/BlackJack_Client140/BlackJack_Client140.vcxproj.filters delete mode 100644 Release/samples/BlackJack/BlackJack_Client/BlackJack_Client141/BlackJack_Client141.vcxproj delete mode 100644 Release/samples/BlackJack/BlackJack_Client/BlackJack_Client141/BlackJack_Client141.vcxproj.filters delete mode 100644 Release/samples/BlackJack/BlackJack_Client/stdafx.cpp delete mode 100644 Release/samples/BlackJack/BlackJack_Client/stdafx.h delete mode 100644 Release/samples/BlackJack/BlackJack_Client/targetver.h delete mode 100644 Release/samples/BlackJack/BlackJack_Server/BlackJack_Server140/BlackJack_Server140.vcxproj delete mode 100644 Release/samples/BlackJack/BlackJack_Server/BlackJack_Server140/BlackJack_Server140.vcxproj.filters delete mode 100644 Release/samples/BlackJack/BlackJack_Server/BlackJack_Server141/BlackJack_Server141.vcxproj delete mode 100644 Release/samples/BlackJack/BlackJack_Server/BlackJack_Server141/BlackJack_Server141.vcxproj.filters diff --git a/Release/samples/BlackJack/BlackJack_Client/BlackJackClient.cpp b/Release/samples/BlackJack/BlackJack_Client/BlackJackClient.cpp index 1ca303fbdc..9a17d8983d 100644 --- a/Release/samples/BlackJack/BlackJack_Client/BlackJackClient.cpp +++ b/Release/samples/BlackJack/BlackJack_Client/BlackJackClient.cpp @@ -9,7 +9,36 @@ * =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- ****/ -#include "stdafx.h" +#ifdef _WIN32 +#include + +#include +#include + +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#endif +#define NOMINMAX +#include +#include +#include + +// ws2tcpip.h - isn't warning clean. +#pragma warning(push) +#pragma warning(disable : 6386) +#include +#pragma warning(pop) + +#include +#endif + +#include +#include +#include +#include + +#include "cpprest/http_client.h" + #include #include #include diff --git a/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client140/BlackJack_Client140.vcxproj b/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client140/BlackJack_Client140.vcxproj deleted file mode 100644 index 6a247f1616..0000000000 --- a/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client140/BlackJack_Client140.vcxproj +++ /dev/null @@ -1,148 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {830b6e2f-9224-41d1-b9c7-a51fc78b00c7} - Win32Proj - BlackJack_Client - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - - - - Application - true - NotSet - v140 - - - Application - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);..\..\BlackJack_Server;$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);..\..\BlackJack_Server;$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);..\..\BlackJack_Server;$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);..\..\BlackJack_Server;$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - Create - Create - Create - Create - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - \ No newline at end of file diff --git a/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client140/BlackJack_Client140.vcxproj.filters b/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client140/BlackJack_Client140.vcxproj.filters deleted file mode 100644 index 127018be70..0000000000 --- a/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client140/BlackJack_Client140.vcxproj.filters +++ /dev/null @@ -1,33 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client141/BlackJack_Client141.vcxproj b/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client141/BlackJack_Client141.vcxproj deleted file mode 100644 index 8770125299..0000000000 --- a/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client141/BlackJack_Client141.vcxproj +++ /dev/null @@ -1,149 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {830b6e2f-9224-41d1-b9c7-a51fc78b00c7} - Win32Proj - BlackJack_Client - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - 10.0.16299.0 - - - - Application - true - NotSet - v141 - - - Application - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);..\..\BlackJack_Server;$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);..\..\BlackJack_Server;$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);..\..\BlackJack_Server;$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);..\..\BlackJack_Server;$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - Create - Create - Create - Create - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - \ No newline at end of file diff --git a/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client141/BlackJack_Client141.vcxproj.filters b/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client141/BlackJack_Client141.vcxproj.filters deleted file mode 100644 index d19e3a56d0..0000000000 --- a/Release/samples/BlackJack/BlackJack_Client/BlackJack_Client141/BlackJack_Client141.vcxproj.filters +++ /dev/null @@ -1,30 +0,0 @@ - - - - - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - h;hpp;hxx;hm;inl;inc;xsd - - - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/BlackJack/BlackJack_Client/CMakeLists.txt b/Release/samples/BlackJack/BlackJack_Client/CMakeLists.txt index f884ca8f8d..e5845aa827 100644 --- a/Release/samples/BlackJack/BlackJack_Client/CMakeLists.txt +++ b/Release/samples/BlackJack/BlackJack_Client/CMakeLists.txt @@ -4,7 +4,6 @@ endif() add_executable(blackjackclient BlackJackClient.cpp - stdafx.cpp ) target_link_libraries(blackjackclient cpprest) diff --git a/Release/samples/BlackJack/BlackJack_Client/stdafx.cpp b/Release/samples/BlackJack/BlackJack_Client/stdafx.cpp deleted file mode 100644 index cd389fa0d6..0000000000 --- a/Release/samples/BlackJack/BlackJack_Client/stdafx.cpp +++ /dev/null @@ -1,15 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* stdafx.cpp : source file that includes just the standard includes -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ - -#include "stdafx.h" - -// reference any additional headers you need in STDAFX.H -// and not in this file diff --git a/Release/samples/BlackJack/BlackJack_Client/stdafx.h b/Release/samples/BlackJack/BlackJack_Client/stdafx.h deleted file mode 100644 index 82b776702a..0000000000 --- a/Release/samples/BlackJack/BlackJack_Client/stdafx.h +++ /dev/null @@ -1,44 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* stdafx.h : include file for standard system include files, -* or project specific include files that are used frequently, but -* are changed infrequently -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ - -#pragma once - -#ifdef _WIN32 -#include "targetver.h" - -#include -#include - -#ifndef WIN32_LEAN_AND_MEAN -#define WIN32_LEAN_AND_MEAN -#endif -#define NOMINMAX -#include -#include -#include - -// ws2tcpip.h - isn't warning clean. -#pragma warning(push) -#pragma warning(disable : 6386) -#include -#pragma warning(pop) - -#include -#endif - -#include -#include -#include -#include - -#include "cpprest/http_client.h" diff --git a/Release/samples/BlackJack/BlackJack_Client/targetver.h b/Release/samples/BlackJack/BlackJack_Client/targetver.h deleted file mode 100644 index 951583c45d..0000000000 --- a/Release/samples/BlackJack/BlackJack_Client/targetver.h +++ /dev/null @@ -1,18 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* targetver.h -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ -#pragma once - -// Including SDKDDKVer.h defines the highest available Windows platform. - -// If you wish to build your application for a previous Windows platform, include WinSDKVer.h and -// set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h. - -#include diff --git a/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server140/BlackJack_Server140.vcxproj b/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server140/BlackJack_Server140.vcxproj deleted file mode 100644 index de642bde3c..0000000000 --- a/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server140/BlackJack_Server140.vcxproj +++ /dev/null @@ -1,154 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {84350cd1-d406-4a4f-9571-261ca46d77c5} - Win32Proj - BlackJack_Server - SAK - SAK - SAK - $(VCTargetsPath12) - SAK - - - - Application - true - NotSet - v140 - - - Application - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - \ No newline at end of file diff --git a/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server140/BlackJack_Server140.vcxproj.filters b/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server140/BlackJack_Server140.vcxproj.filters deleted file mode 100644 index 2de41685ef..0000000000 --- a/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server140/BlackJack_Server140.vcxproj.filters +++ /dev/null @@ -1,45 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server141/BlackJack_Server141.vcxproj b/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server141/BlackJack_Server141.vcxproj deleted file mode 100644 index ff8468da47..0000000000 --- a/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server141/BlackJack_Server141.vcxproj +++ /dev/null @@ -1,155 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {84350cd1-d406-4a4f-9571-261ca46d77c5} - Win32Proj - BlackJack_Server - SAK - SAK - SAK - $(VCTargetsPath12) - SAK - 10.0.16299.0 - - - - Application - true - NotSet - v141 - - - Application - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - - - Use - Level3 - Disabled - WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaIncludeDir) - Async - -Zm140 %(AdditionalOptions) - - - Console - true - true - true - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - \ No newline at end of file diff --git a/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server141/BlackJack_Server141.vcxproj.filters b/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server141/BlackJack_Server141.vcxproj.filters deleted file mode 100644 index a13f88916c..0000000000 --- a/Release/samples/BlackJack/BlackJack_Server/BlackJack_Server141/BlackJack_Server141.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - h;hpp;hxx;hm;inl;inc;xsd - - - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/BlackJack/BlackJack_Server/CMakeLists.txt b/Release/samples/BlackJack/BlackJack_Server/CMakeLists.txt index c5b2fec0af..1accf923c5 100644 --- a/Release/samples/BlackJack/BlackJack_Server/CMakeLists.txt +++ b/Release/samples/BlackJack/BlackJack_Server/CMakeLists.txt @@ -10,3 +10,14 @@ add_executable(blackjackserver ) target_link_libraries(blackjackserver cpprest) + +if(MSVC) + get_target_property(_srcs blackjackserver SOURCES) + if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + endif() + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + target_sources(blackjackserver PRIVATE stdafx.cpp) + target_compile_options(blackjackserver PRIVATE /Yustdafx.h /Zm200) +endif() From 6004516c32d8e753a61a797bd520dc0c8df42dfd Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 18:00:40 -0700 Subject: [PATCH 09/10] Delete legacy, unmaintained project files. Some samples have broken project files, but they were already broken before. --- Build/Common.Build.Traversal.targets | 28 -- Build/Common.Build.settings | 242 ---------- Build/Config.Definitions.props | 29 -- Build/Release.Product.settings | 64 --- Build/Release.Tests.settings | 27 -- Build/version.props | 11 - NuGet.Config | 6 - .../BingRequest140.xp.vcxproj | 133 ------ .../BingRequest140.xp.vcxproj.filters | 13 - .../BingRequest140/BingRequest140.vcxproj | 141 ------ .../BingRequest140.vcxproj.filters | 13 - .../BingRequest141/BingRequest141.vcxproj | 134 ------ .../BingRequest141.vcxproj.filters | 12 - Release/src/build/android.vcxitems | 31 -- Release/src/build/android.vcxitems.filters | 39 -- Release/src/build/common.vcxitems | 93 ---- Release/src/build/common.vcxitems.filters | 227 --------- Release/src/build/cpprest.natvis | 207 --------- Release/src/build/init.ps1 | 23 - Release/src/build/other.vcxitems | 22 - Release/src/build/other.vcxitems.filters | 16 - .../casablanca140.android.vcxproj | 138 ------ .../src/build/vs14.android/packages.config | 11 - .../vs14.static/casablanca140.static.vcxproj | 84 ---- Release/src/build/vs14.static/packages.config | 11 - .../cpprestsdk140.uwp.staticlib.vcxproj | 110 ----- .../build/vs14.uwp/cpprestsdk140.uwp.vcxproj | 99 ---- .../build/vs14.xp/casablanca140.xp.vcxproj | 86 ---- Release/src/build/vs14.xp/packages.config | 11 - Release/src/build/vs14/casablanca140.vcxproj | 78 ---- Release/src/build/vs14/packages.config | 11 - .../vs141.android/cpprest141.android.vcxproj | 140 ------ .../src/build/vs141.android/packages.config | 11 - .../build/vs141.uwp/cpprest141.uwp.vcxproj | 91 ---- Release/src/build/vs141/cpprest141.vcxproj | 85 ---- Release/src/build/vs141/packages.config | 11 - Release/src/build/win32.vcxitems | 33 -- Release/src/build/win32.vcxitems.filters | 39 -- Release/src/build/winrt.vcxitems | 31 -- Release/src/build/winrt.vcxitems.filters | 33 -- .../ios/ios_runner.xcodeproj/project.pbxproj | 368 --------------- .../contents.xcworkspacedata | 7 - .../xcschemes/ios_runner.xcscheme | 110 ----- .../TestRunner/ios/ios_runnerTests/Info.plist | 24 - .../ios/ios_runnerTests/ios_runnerTests.mm | 67 --- .../TestRunner.android.NativeActivity.vcxproj | 284 ------------ ...ner.android.NativeActivity.vcxproj.filters | 14 - .../android_native_app_glue.c | 426 ----------------- .../android_native_app_glue.h | 344 -------------- .../main.cpp | 437 ------------------ .../packages.config | 12 - .../TestRunner.android.NativeActivity/pch.h | 23 - .../AndroidManifest.xml | 30 -- .../TestRunner.android.Packaging.androidproj | 84 ---- .../TestRunner.android.Packaging/build.xml | 82 ---- .../project.properties | 2 - .../res/values/strings.xml | 4 - .../vs14.uwp/TestRunner140.uwp.vcxproj | 118 ----- .../TestRunner140.uwp.vcxproj.filters | 24 - .../TestRunner/vs14/TestRunner140.vcxproj | 248 ---------- .../vs14/TestRunner140.vcxproj.filters | 24 - .../UnitTestpp140.android.vcxproj | 199 -------- .../UnitTestpp140.android.vcxproj.filters | 168 ------- .../vs14.uwp/UnitTestpp140.uwp.vcxproj | 208 --------- .../UnitTestpp140.uwp.vcxproj.filters | 159 ------- .../UnitTestpp/vs14/TestUnitTestpp140.vcxproj | 202 -------- .../vs14/TestUnitTestpp140.vcxproj.filters | 72 --- .../UnitTestpp/vs14/UnitTestpp140.vcxproj | 228 --------- .../vs14/UnitTestpp140.vcxproj.filters | 159 ------- .../CommonUtilities140.android.vcxproj | 148 ------ ...CommonUtilities140.android.vcxproj.filters | 36 -- .../vs14.uwp/CommonUtilities140.uwp.vcxproj | 167 ------- .../CommonUtilities140.uwp.vcxproj.filters | 33 -- .../vs14.xp/CommonUtilities140.xp.vcxproj | 150 ------ .../utilities/vs14/CommonUtilities140.vcxproj | 200 -------- .../vs14/CommonUtilities140.vcxproj.filters | 33 -- .../HttpClient140_test.android.vcxproj | 168 ------- ...HttpClient140_test.android.vcxproj.filters | 90 ---- .../http/client/vs14.android/packages.config | 5 - .../vs14.uwp/HttpClient140_test.uwp.vcxproj | 153 ------ .../HttpClient140_test.uwp.vcxproj.filters | 87 ---- .../client/vs14/HttpClient140_test.vcxproj | 240 ---------- .../vs14/HttpClient140_test.vcxproj.filters | 88 ---- .../HttpListener140_test.android.vcxproj | 160 ------- ...tpListener140_test.android.vcxproj.filters | 66 --- .../vs14/HttpListener140_test.vcxproj | 242 ---------- .../vs14/HttpListener140_test.vcxproj.filters | 63 --- .../HttpTestUtilities140.android.vcxproj | 156 ------- ...tpTestUtilities140.android.vcxproj.filters | 54 --- .../vs14.uwp/HttpTestUtilities140.uwp.vcxproj | 183 -------- .../HttpTestUtilities140.uwp.vcxproj.filters | 51 -- .../vs14/HttpTestUtilities140.vcxproj | 218 --------- .../vs14/HttpTestUtilities140.vcxproj.filters | 51 -- .../vs14.android/JSON140_test.android.vcxproj | 154 ------ .../JSON140_test.android.vcxproj.filters | 48 -- .../json/vs14.uwp/JSON140_test.uwp.vcxproj | 128 ----- .../vs14.uwp/JSON140_test.uwp.vcxproj.filters | 42 -- .../json/vs14.xp/JSON140_test.xp.vcxproj | 151 ------ .../functional/json/vs14/JSON140_test.vcxproj | 211 --------- .../json/vs14/JSON140_test.vcxproj.filters | 47 -- .../misc/version/vs14/version140_test.vcxproj | 100 ---- .../vs14.android/pplx140_test.android.vcxproj | 149 ------ .../vs14.uwp/pplx140_test.uwp.vcxproj | 130 ------ .../pplx_test/vs14.xp/pplx140_test.xp.vcxproj | 158 ------- .../pplx/pplx_test/vs14/pplx140_test.vcxproj | 212 --------- .../streams140_test.android.vcxproj | 153 ------ .../streams140_test.android.vcxproj.filters | 43 -- .../vs14.uwp/streams140_test.uwp.vcxproj | 137 ------ .../streams140_test.uwp.vcxproj.filters | 45 -- .../vs14.xp/streams140_test.xp.vcxproj | 163 ------- .../streams/vs14/streams140_test.vcxproj | 219 --------- .../vs14/streams140_test.vcxproj.filters | 43 -- .../vs14.android/Uri140_test.android.vcxproj | 156 ------- .../Uri140_test.android.vcxproj.filters | 54 --- .../vs14.uwp/URI140_test.uwp.vcxproj.filters | 57 --- .../uri/vs14.uwp/Uri140_test.uwp.vcxproj | 136 ------ .../uri/vs14.xp/Uri140_test.xp.vcxproj | 155 ------- .../functional/uri/vs14/Uri140_test.vcxproj | 212 --------- .../uri/vs14/Uri140_test.vcxproj.filters | 53 --- .../Utils140_test.android.vcxproj | 152 ------ .../Utils140_test.android.vcxproj.filters | 42 -- .../utils/vs14.uwp/Utils140_test.uwp.vcxproj | 131 ------ .../Utils140_test.uwp.vcxproj.filters | 36 -- .../utils/vs14.xp/Utils140_test.xp.vcxproj | 151 ------ .../utils/vs14/Utils140_test.vcxproj | 208 --------- .../utils/vs14/Utils140_test.vcxproj.filters | 38 -- .../websocketsclient140_test.android.vcxproj | 154 ------ .../websocketsclient140_test.uwp.vcxproj | 127 ----- .../websocketsclient140_test.xp.vcxproj | 123 ----- .../vs14/websocketsclient140_test.vcxproj | 125 ----- .../utilities/vs14.android/packages.config | 5 - ...bsockets_test_utilities140.android.vcxproj | 148 ------ .../utilities/vs14.uwp/packages.config | 7 - .../websockets_test_utilities140.uwp.vcxproj | 147 ------ .../websockets_test_utilities140.xp.vcxproj | 132 ------ .../websockets/utilities/vs14/packages.config | 7 - .../vs14/websockets_test_utilities140.vcxproj | 151 ------ build.root | 1 - 138 files changed, 14634 deletions(-) delete mode 100644 Build/Common.Build.Traversal.targets delete mode 100644 Build/Common.Build.settings delete mode 100644 Build/Config.Definitions.props delete mode 100644 Build/Release.Product.settings delete mode 100644 Build/Release.Tests.settings delete mode 100644 Build/version.props delete mode 100644 NuGet.Config delete mode 100644 Release/samples/BingRequest/BingRequest140.xp/BingRequest140.xp.vcxproj delete mode 100644 Release/samples/BingRequest/BingRequest140.xp/BingRequest140.xp.vcxproj.filters delete mode 100644 Release/samples/BingRequest/BingRequest140/BingRequest140.vcxproj delete mode 100644 Release/samples/BingRequest/BingRequest140/BingRequest140.vcxproj.filters delete mode 100644 Release/samples/BingRequest/BingRequest141/BingRequest141.vcxproj delete mode 100644 Release/samples/BingRequest/BingRequest141/BingRequest141.vcxproj.filters delete mode 100644 Release/src/build/android.vcxitems delete mode 100644 Release/src/build/android.vcxitems.filters delete mode 100644 Release/src/build/common.vcxitems delete mode 100644 Release/src/build/common.vcxitems.filters delete mode 100644 Release/src/build/cpprest.natvis delete mode 100644 Release/src/build/init.ps1 delete mode 100644 Release/src/build/other.vcxitems delete mode 100644 Release/src/build/other.vcxitems.filters delete mode 100644 Release/src/build/vs14.android/casablanca140.android.vcxproj delete mode 100644 Release/src/build/vs14.android/packages.config delete mode 100644 Release/src/build/vs14.static/casablanca140.static.vcxproj delete mode 100644 Release/src/build/vs14.static/packages.config delete mode 100644 Release/src/build/vs14.uwp/cpprestsdk140.uwp.staticlib.vcxproj delete mode 100644 Release/src/build/vs14.uwp/cpprestsdk140.uwp.vcxproj delete mode 100644 Release/src/build/vs14.xp/casablanca140.xp.vcxproj delete mode 100644 Release/src/build/vs14.xp/packages.config delete mode 100644 Release/src/build/vs14/casablanca140.vcxproj delete mode 100644 Release/src/build/vs14/packages.config delete mode 100644 Release/src/build/vs141.android/cpprest141.android.vcxproj delete mode 100644 Release/src/build/vs141.android/packages.config delete mode 100644 Release/src/build/vs141.uwp/cpprest141.uwp.vcxproj delete mode 100644 Release/src/build/vs141/cpprest141.vcxproj delete mode 100644 Release/src/build/vs141/packages.config delete mode 100644 Release/src/build/win32.vcxitems delete mode 100644 Release/src/build/win32.vcxitems.filters delete mode 100644 Release/src/build/winrt.vcxitems delete mode 100644 Release/src/build/winrt.vcxitems.filters delete mode 100644 Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/project.pbxproj delete mode 100644 Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata delete mode 100644 Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/xcshareddata/xcschemes/ios_runner.xcscheme delete mode 100644 Release/tests/common/TestRunner/ios/ios_runnerTests/Info.plist delete mode 100644 Release/tests/common/TestRunner/ios/ios_runnerTests/ios_runnerTests.mm delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/TestRunner.android.NativeActivity.vcxproj delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/TestRunner.android.NativeActivity.vcxproj.filters delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/android_native_app_glue.c delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/android_native_app_glue.h delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/main.cpp delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/packages.config delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/pch.h delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/AndroidManifest.xml delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/TestRunner.android.Packaging.androidproj delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/build.xml delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/project.properties delete mode 100644 Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/res/values/strings.xml delete mode 100644 Release/tests/common/TestRunner/vs14.uwp/TestRunner140.uwp.vcxproj delete mode 100644 Release/tests/common/TestRunner/vs14.uwp/TestRunner140.uwp.vcxproj.filters delete mode 100644 Release/tests/common/TestRunner/vs14/TestRunner140.vcxproj delete mode 100644 Release/tests/common/TestRunner/vs14/TestRunner140.vcxproj.filters delete mode 100644 Release/tests/common/UnitTestpp/vs14.android/UnitTestpp140.android.vcxproj delete mode 100644 Release/tests/common/UnitTestpp/vs14.android/UnitTestpp140.android.vcxproj.filters delete mode 100644 Release/tests/common/UnitTestpp/vs14.uwp/UnitTestpp140.uwp.vcxproj delete mode 100644 Release/tests/common/UnitTestpp/vs14.uwp/UnitTestpp140.uwp.vcxproj.filters delete mode 100644 Release/tests/common/UnitTestpp/vs14/TestUnitTestpp140.vcxproj delete mode 100644 Release/tests/common/UnitTestpp/vs14/TestUnitTestpp140.vcxproj.filters delete mode 100644 Release/tests/common/UnitTestpp/vs14/UnitTestpp140.vcxproj delete mode 100644 Release/tests/common/UnitTestpp/vs14/UnitTestpp140.vcxproj.filters delete mode 100644 Release/tests/common/utilities/vs14.android/CommonUtilities140.android.vcxproj delete mode 100644 Release/tests/common/utilities/vs14.android/CommonUtilities140.android.vcxproj.filters delete mode 100644 Release/tests/common/utilities/vs14.uwp/CommonUtilities140.uwp.vcxproj delete mode 100644 Release/tests/common/utilities/vs14.uwp/CommonUtilities140.uwp.vcxproj.filters delete mode 100644 Release/tests/common/utilities/vs14.xp/CommonUtilities140.xp.vcxproj delete mode 100644 Release/tests/common/utilities/vs14/CommonUtilities140.vcxproj delete mode 100644 Release/tests/common/utilities/vs14/CommonUtilities140.vcxproj.filters delete mode 100644 Release/tests/functional/http/client/vs14.android/HttpClient140_test.android.vcxproj delete mode 100644 Release/tests/functional/http/client/vs14.android/HttpClient140_test.android.vcxproj.filters delete mode 100644 Release/tests/functional/http/client/vs14.android/packages.config delete mode 100644 Release/tests/functional/http/client/vs14.uwp/HttpClient140_test.uwp.vcxproj delete mode 100644 Release/tests/functional/http/client/vs14.uwp/HttpClient140_test.uwp.vcxproj.filters delete mode 100644 Release/tests/functional/http/client/vs14/HttpClient140_test.vcxproj delete mode 100644 Release/tests/functional/http/client/vs14/HttpClient140_test.vcxproj.filters delete mode 100644 Release/tests/functional/http/listener/vs14.android/HttpListener140_test.android.vcxproj delete mode 100644 Release/tests/functional/http/listener/vs14.android/HttpListener140_test.android.vcxproj.filters delete mode 100644 Release/tests/functional/http/listener/vs14/HttpListener140_test.vcxproj delete mode 100644 Release/tests/functional/http/listener/vs14/HttpListener140_test.vcxproj.filters delete mode 100644 Release/tests/functional/http/utilities/vs14.android/HttpTestUtilities140.android.vcxproj delete mode 100644 Release/tests/functional/http/utilities/vs14.android/HttpTestUtilities140.android.vcxproj.filters delete mode 100644 Release/tests/functional/http/utilities/vs14.uwp/HttpTestUtilities140.uwp.vcxproj delete mode 100644 Release/tests/functional/http/utilities/vs14.uwp/HttpTestUtilities140.uwp.vcxproj.filters delete mode 100644 Release/tests/functional/http/utilities/vs14/HttpTestUtilities140.vcxproj delete mode 100644 Release/tests/functional/http/utilities/vs14/HttpTestUtilities140.vcxproj.filters delete mode 100644 Release/tests/functional/json/vs14.android/JSON140_test.android.vcxproj delete mode 100644 Release/tests/functional/json/vs14.android/JSON140_test.android.vcxproj.filters delete mode 100644 Release/tests/functional/json/vs14.uwp/JSON140_test.uwp.vcxproj delete mode 100644 Release/tests/functional/json/vs14.uwp/JSON140_test.uwp.vcxproj.filters delete mode 100644 Release/tests/functional/json/vs14.xp/JSON140_test.xp.vcxproj delete mode 100644 Release/tests/functional/json/vs14/JSON140_test.vcxproj delete mode 100644 Release/tests/functional/json/vs14/JSON140_test.vcxproj.filters delete mode 100644 Release/tests/functional/misc/version/vs14/version140_test.vcxproj delete mode 100644 Release/tests/functional/pplx/pplx_test/vs14.android/pplx140_test.android.vcxproj delete mode 100644 Release/tests/functional/pplx/pplx_test/vs14.uwp/pplx140_test.uwp.vcxproj delete mode 100644 Release/tests/functional/pplx/pplx_test/vs14.xp/pplx140_test.xp.vcxproj delete mode 100644 Release/tests/functional/pplx/pplx_test/vs14/pplx140_test.vcxproj delete mode 100644 Release/tests/functional/streams/vs14.android/streams140_test.android.vcxproj delete mode 100644 Release/tests/functional/streams/vs14.android/streams140_test.android.vcxproj.filters delete mode 100644 Release/tests/functional/streams/vs14.uwp/streams140_test.uwp.vcxproj delete mode 100644 Release/tests/functional/streams/vs14.uwp/streams140_test.uwp.vcxproj.filters delete mode 100644 Release/tests/functional/streams/vs14.xp/streams140_test.xp.vcxproj delete mode 100644 Release/tests/functional/streams/vs14/streams140_test.vcxproj delete mode 100644 Release/tests/functional/streams/vs14/streams140_test.vcxproj.filters delete mode 100644 Release/tests/functional/uri/vs14.android/Uri140_test.android.vcxproj delete mode 100644 Release/tests/functional/uri/vs14.android/Uri140_test.android.vcxproj.filters delete mode 100644 Release/tests/functional/uri/vs14.uwp/URI140_test.uwp.vcxproj.filters delete mode 100644 Release/tests/functional/uri/vs14.uwp/Uri140_test.uwp.vcxproj delete mode 100644 Release/tests/functional/uri/vs14.xp/Uri140_test.xp.vcxproj delete mode 100644 Release/tests/functional/uri/vs14/Uri140_test.vcxproj delete mode 100644 Release/tests/functional/uri/vs14/Uri140_test.vcxproj.filters delete mode 100644 Release/tests/functional/utils/vs14.android/Utils140_test.android.vcxproj delete mode 100644 Release/tests/functional/utils/vs14.android/Utils140_test.android.vcxproj.filters delete mode 100644 Release/tests/functional/utils/vs14.uwp/Utils140_test.uwp.vcxproj delete mode 100644 Release/tests/functional/utils/vs14.uwp/Utils140_test.uwp.vcxproj.filters delete mode 100644 Release/tests/functional/utils/vs14.xp/Utils140_test.xp.vcxproj delete mode 100644 Release/tests/functional/utils/vs14/Utils140_test.vcxproj delete mode 100644 Release/tests/functional/utils/vs14/Utils140_test.vcxproj.filters delete mode 100644 Release/tests/functional/websockets/client/vs14.android/websocketsclient140_test.android.vcxproj delete mode 100644 Release/tests/functional/websockets/client/vs14.uwp/websocketsclient140_test.uwp.vcxproj delete mode 100644 Release/tests/functional/websockets/client/vs14.xp/websocketsclient140_test.xp.vcxproj delete mode 100644 Release/tests/functional/websockets/client/vs14/websocketsclient140_test.vcxproj delete mode 100644 Release/tests/functional/websockets/utilities/vs14.android/packages.config delete mode 100644 Release/tests/functional/websockets/utilities/vs14.android/websockets_test_utilities140.android.vcxproj delete mode 100644 Release/tests/functional/websockets/utilities/vs14.uwp/packages.config delete mode 100644 Release/tests/functional/websockets/utilities/vs14.uwp/websockets_test_utilities140.uwp.vcxproj delete mode 100644 Release/tests/functional/websockets/utilities/vs14.xp/websockets_test_utilities140.xp.vcxproj delete mode 100644 Release/tests/functional/websockets/utilities/vs14/packages.config delete mode 100644 Release/tests/functional/websockets/utilities/vs14/websockets_test_utilities140.vcxproj delete mode 100644 build.root diff --git a/Build/Common.Build.Traversal.targets b/Build/Common.Build.Traversal.targets deleted file mode 100644 index db26ed7ada..0000000000 --- a/Build/Common.Build.Traversal.targets +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - true - - - - - - - - - - - - - - - - diff --git a/Build/Common.Build.settings b/Build/Common.Build.settings deleted file mode 100644 index 16ba09aa54..0000000000 --- a/Build/Common.Build.settings +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - Debug - Win32 - - - - - $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), build.root)) - $(BuildRoot)\Build - $(registry:HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion@CurrentVersion) - - 140 - 120 - 110 - - $(WindowsSdkDir) - true - true - false - - - - - - $(BuildRoot)\Binaries\$(Platform)\$(Configuration)\ - $(OutputPath) - $(BuildRoot)\Intermediate\$(MSBuildProjectName)\$(Platform)\$(Configuration)\ - $(BuildRoot)\Release\Tests - $(BuildRoot)\Release\src - $(BuildRoot)\Release\Resource - $(BuildRoot)\Release\include - $(BuildRoot)\Release\libs\websocketpp - $(BuildRoot)\packages - $(BuildRoot)\..\Tools\packages - - - - - $(OutDir)\ - - - - $(VS110COMNTOOLS)..\IDE - - - - $(VS120COMNTOOLS)..\IDE - - - - $(TargetsPath)\BinaryDependencies - prompt - 4 - - - false - - - false - $(RunCodeAnalysis) - true - - true - - - true - false - false - true - - - - - Level4 - Use - true - $(EnableCPPAnalysis) - true - /d2notypeopt %(AdditionalOptions) - - - /DTARGET_NAME="$(TARGETNAME)" %(AdditionalOptions) - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - true - - - - - - _WIN64;_DEBUG;%(PreprocessorDefinitions) - - - true - - - - - - _DEBUG;%(PreprocessorDefinitions) - - - true - - - - - - _WIN64;NDEBUG;%(PreprocessorDefinitions) - - - true - - - - - - NDEBUG;%(PreprocessorDefinitions) - - - true - - - - - - NDEBUG;%(PreprocessorDefinitions) - - - true - - - - - true - full - false - DEBUG;TRACE - x86 - - - - true - full - false - DEBUG;TRACE;X64 - - - - pdbonly - true - TRACE - x86 - - - - pdbonly - true - TRACE;X64 - - - - true - full - false - DEBUG;TRACE;ARM - - - - pdbonly - true - TRACE;ARM - - - - - - - - - - - - - - - - - - - - - - - - - - - - - <_ResolvedProjectReferencePaths> - Undefined - - - - - - - - <_ResolvedProjectReferencePaths Condition="'%(CopyToOutputDirectory)' != 'Undefined'" - Remove="@(_ResolvedProjectReferencePaths)" /> - - - - - - - diff --git a/Build/Config.Definitions.props b/Build/Config.Definitions.props deleted file mode 100644 index 9eaabbb298..0000000000 --- a/Build/Config.Definitions.props +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - \ No newline at end of file diff --git a/Build/Release.Product.settings b/Build/Release.Product.settings deleted file mode 100644 index 30d0bc9a4f..0000000000 --- a/Build/Release.Product.settings +++ /dev/null @@ -1,64 +0,0 @@ - - - - - true - false - - - - false - true - - - - Unicode - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - false - - $(RunCodeAnalysis) - - - - - - $(CasablancaIncludeDir) - - - - - false - - - Windows - false - true - /SAFESEH%(AdditionalOptions) - - - - - - Disabled - - - - - - NDEBUG;%(PreprocessorDefinitions) - MaxSpeed - true - true - - - - diff --git a/Build/Release.Tests.settings b/Build/Release.Tests.settings deleted file mode 100644 index 2bbff91192..0000000000 --- a/Build/Release.Tests.settings +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - false - - - - - - - $(TestRoot)\Common\utilities\include;$(TestRoot)\Common\UnitTestpp - $(BinariesDirectory)\inc;$(CasablancaIncludeDir) - - - - - - - - diff --git a/Build/version.props b/Build/version.props deleted file mode 100644 index 2b67f6647e..0000000000 --- a/Build/version.props +++ /dev/null @@ -1,11 +0,0 @@ - - - - cpprest - 2 - 10 - 6 - $(CppRestSDKVersionMajor)_$(CppRestSDKVersionMinor) - $(CppRestSDKVersionMajor).$(CppRestSDKVersionMinor) - - diff --git a/NuGet.Config b/NuGet.Config deleted file mode 100644 index abc5b1378c..0000000000 --- a/NuGet.Config +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/Release/samples/BingRequest/BingRequest140.xp/BingRequest140.xp.vcxproj b/Release/samples/BingRequest/BingRequest140.xp/BingRequest140.xp.vcxproj deleted file mode 100644 index 56afcd81b3..0000000000 --- a/Release/samples/BingRequest/BingRequest140.xp/BingRequest140.xp.vcxproj +++ /dev/null @@ -1,133 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {7009BCBE-D67C-4B54-BEFC-A44E62656CF1} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath14) - - - - Application - true - NotSet - v140_xp - - - Application - true - NotSet - v140_xp - - - Application - false - true - NotSet - v140_xp - - - Application - false - true - NotSet - v140_xp - - - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - CPPREST_TARGET_XP;WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - CPPREST_TARGET_XP;WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - CPPREST_TARGET_XP;WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - CPPREST_TARGET_XP;WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - - - - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9} - - - - \ No newline at end of file diff --git a/Release/samples/BingRequest/BingRequest140.xp/BingRequest140.xp.vcxproj.filters b/Release/samples/BingRequest/BingRequest140.xp/BingRequest140.xp.vcxproj.filters deleted file mode 100644 index cee450afc2..0000000000 --- a/Release/samples/BingRequest/BingRequest140.xp/BingRequest140.xp.vcxproj.filters +++ /dev/null @@ -1,13 +0,0 @@ - - - - - {786631e0-badc-4b3f-bd98-9b13e6a8e5f8} - - - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/BingRequest/BingRequest140/BingRequest140.vcxproj b/Release/samples/BingRequest/BingRequest140/BingRequest140.vcxproj deleted file mode 100644 index bf9a63acc9..0000000000 --- a/Release/samples/BingRequest/BingRequest140/BingRequest140.vcxproj +++ /dev/null @@ -1,141 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath12) - - - - Application - true - NotSet - v140 - - - Application - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - Application - false - true - NotSet - v140 - - - - - $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), build.root)) - $(BuildRoot)\Binaries\$(Platform)\$(Configuration)\ - $(OutputPath) - $(BuildRoot)\Release\src - $(BuildRoot)\Release\include - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - - \ No newline at end of file diff --git a/Release/samples/BingRequest/BingRequest140/BingRequest140.vcxproj.filters b/Release/samples/BingRequest/BingRequest140/BingRequest140.vcxproj.filters deleted file mode 100644 index b78f1994bb..0000000000 --- a/Release/samples/BingRequest/BingRequest140/BingRequest140.vcxproj.filters +++ /dev/null @@ -1,13 +0,0 @@ - - - - - {bc214923-f806-44a3-abd4-08a1aa1a9b3b} - - - - - Source Files - - - \ No newline at end of file diff --git a/Release/samples/BingRequest/BingRequest141/BingRequest141.vcxproj b/Release/samples/BingRequest/BingRequest141/BingRequest141.vcxproj deleted file mode 100644 index b5af27cbca..0000000000 --- a/Release/samples/BingRequest/BingRequest141/BingRequest141.vcxproj +++ /dev/null @@ -1,134 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {2EB9CCAA-541D-4DC1-BE2C-B1AE9712194D} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath12) - 10.0.16299.0 - - - - Application - true - NotSet - v141 - - - Application - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - Application - false - true - NotSet - v141 - - - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - Disabled - WIN32;_DEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - /bigobj %(AdditionalOptions) - NotUsing - MaxSpeed - true - true - WIN32;NDEBUG;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir) - Async - - - Console - true - true - true - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - - \ No newline at end of file diff --git a/Release/samples/BingRequest/BingRequest141/BingRequest141.vcxproj.filters b/Release/samples/BingRequest/BingRequest141/BingRequest141.vcxproj.filters deleted file mode 100644 index bb6411f159..0000000000 --- a/Release/samples/BingRequest/BingRequest141/BingRequest141.vcxproj.filters +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - Source Files - - - \ No newline at end of file diff --git a/Release/src/build/android.vcxitems b/Release/src/build/android.vcxitems deleted file mode 100644 index eaf19e2057..0000000000 --- a/Release/src/build/android.vcxitems +++ /dev/null @@ -1,31 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 248F659F-DAC5-46E8-AC09-60EC9FC95053 - true - 6a3ec03a-67b9-4430-9eb3-a56acc7d127e - {65951c40-a332-4b54-89c2-7cdaf30d5f66} - android - - - - %(AdditionalIncludeDirectories);$(MSBuildThisFileDirectory) - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/android.vcxitems.filters b/Release/src/build/android.vcxitems.filters deleted file mode 100644 index 819746782d..0000000000 --- a/Release/src/build/android.vcxitems.filters +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - {8660c551-ea8d-4dda-86b8-4a74cfa9a271} - - - {5489914b-c16a-429b-b787-2d4621924a1c} - - - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/Release/src/build/common.vcxitems b/Release/src/build/common.vcxitems deleted file mode 100644 index 520e0dbac3..0000000000 --- a/Release/src/build/common.vcxitems +++ /dev/null @@ -1,93 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 248F659F-DAC5-46E8-AC09-60EC9FC95053 - true - b19fa703-0bf0-4e1f-8927-b0eaeb6aa823 - {594dcb5f-07e3-4084-a2ce-268611fa629f} - common - common - - - - %(AdditionalIncludeDirectories);$(MSBuildThisFileDirectory) - - - - - - - - - - - - - - - - - - Create - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/common.vcxitems.filters b/Release/src/build/common.vcxitems.filters deleted file mode 100644 index 5445979e22..0000000000 --- a/Release/src/build/common.vcxitems.filters +++ /dev/null @@ -1,227 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - {3bdf9ddb-6199-4b83-84cd-e8617e78294e} - - - {42f86193-fcdc-443d-8ede-8fd31abe6643} - - - {ed89d519-15d6-47d9-90cb-e6c25bcaa323} - - - {e5ecd256-178a-403a-9249-5d15463ad051} - - - {d32b3879-7333-4ab4-8ef2-dd72aed7b5dc} - - - {1c12997c-5bf5-4b60-853e-a5f9c8303760} - - - {97da7aee-41c8-4948-bb0e-c31cec1bfb16} - - - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest - - - Header Files\cpprest\details - - - Header Files\cpprest\details - - - Header Files\cpprest\details - - - Header Files\cpprest\details - - - Header Files\cpprest\details - - - Header Files\cpprest\details - - - Header Files\cpprest\details - - - Header Files\cpprest\details - - - Header Files\pch - - - Header Files\pplx - - - Header Files\pplx - - - Header Files\pplx - - - Header Files\pplx - - - Header Files\pplx - - - Header Files\cpprest\details - - - Header Files\cpprest\details - - - Header Files\cpprest - - - Header Files\cpprest\details - - - Header Files\private - - - Header Files\private - - - Header Files\private - - - Header Files\private - - - - - Header Files\cpprest\details - - - \ No newline at end of file diff --git a/Release/src/build/cpprest.natvis b/Release/src/build/cpprest.natvis deleted file mode 100644 index 621c147881..0000000000 --- a/Release/src/build/cpprest.natvis +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - m_scheme - m_host - m_port - m_user_info - m_path - m_query - m_fragment - - - - - {m_uri} - - m_components - - - - - - m_uri - - - - - {m_username} - - m_username - - - - - {"default"} - {"disabled"} - {"auto discovery"} - {m_address} - - "default" - "disabled" - "auto discovery" - m_address - m_credentials - - - - - - m_proxy - m_credentials - m_timeout._MyRep - m_guarantee_order - m_chunksize - - - - - {_base_uri} - - - - {m_uri} - - - - [{_m_impl._Ptr->m_method}] - - _m_impl._Ptr->m_method - _m_impl._Ptr->m_uri - ((*((web::http::details::http_msg_base*)(&(*((web::http::details::_http_request*)((_m_impl)._Ptr)))))).m_headers).m_headers - - - - - [{_m_impl._Ptr->m_status_code}, {_m_impl._Ptr->m_reason_phrase}] - - _m_impl._Ptr->m_status_code - _m_impl._Ptr->m_reason_phrase - ((*((web::http::details::http_msg_base*)(&(*((web::http::details::_http_request*)((_m_impl)._Ptr)))))).m_headers).m_headers - - - - - - m_proxy - m_credentials - m_headers - - - - - {m_client._Ptr->m_callback_client._Ptr->m_uri} - - m_client._Ptr->m_callback_client._Ptr->m_uri - m_client._Ptr->m_callback_client._Ptr->m_config - - - - - {m_client._Ptr->m_uri} - - m_client._Ptr->m_uri - m_client._Ptr->m_config - - - - - - text" - "binary" - "close" - "ping" - "pong" - m_length - m_body - - - - - - "text" - "binary" - "close" - "ping" - "pong" - m_body - - - - - - {m_intval} - - - - {m_uintval} - - - - {m_value} - - - - - {{size = {m_elements._Mylast - m_elements._Myfirst}}} - - - m_elements._Mylast - m_elements._Myfirst - m_elements._Myfirst - - - - - - {{size = {m_elements._Mylast - m_elements._Myfirst}}} - - - m_elements._Mylast - m_elements._Myfirst - m_elements._Myfirst - - - - - - - {(*((web::json::details::_Number*)((m_value)._Myptr))).m_number} - - - - {(*((web::json::details::_Boolean*)(m_value._Myptr))).m_value} - - - - {((((&((*((web::json::details::_String*)(m_value._Myptr))).m_string)))))} - - - null - - not initialized - not initialized - - - object {(*((web::json::details::_Object*)(m_value._Myptr))).m_object} - - - - array {(*((web::json::details::_Array*)(m_value._Myptr))).m_array} - - - - - (*((web::json::details::_Object*)(m_value._Myptr))).m_object.m_elements._Mylast - (*((web::json::details::_Object*)(m_value._Myptr))).m_object.m_elements._Myfirst - (*((web::json::details::_Object*)(m_value._Myptr))).m_object.m_elements._Myfirst - - - - (*((web::json::details::_Array*)(m_value._Myptr))).m_array.m_elements._Mylast - (*((web::json::details::_Array*)(m_value._Myptr))).m_array.m_elements._Myfirst - (*((web::json::details::_Array*)(m_value._Myptr))).m_array.m_elements._Myfirst - - - - - - \ No newline at end of file diff --git a/Release/src/build/init.ps1 b/Release/src/build/init.ps1 deleted file mode 100644 index 595baeaaa9..0000000000 --- a/Release/src/build/init.ps1 +++ /dev/null @@ -1,23 +0,0 @@ -param($installPath, $toolsPath, $package) - -function Copy-Natvis($DestFolder) -{ - if ((Test-Path $DestFolder) -eq $True) - { - # Update casablanca version for each release here. - $DestFile = Join-Path -path $DestFolder -childpath "cpprest2_10.natvis"; - - # Check to see if cpp rest natvis file for this version already exists - # if not, then copy into user profile for Visual Studio to pick up - if ((Test-Path $DestFile) -eq $False) - { - $SrcFile = Join-Path -path $toolsPath -childpath "cpprest.natvis"; - Copy-Item $SrcFile $DestFile; - } - } -} - -$VS2013Folder = Join-Path -path $env:userprofile -childpath "Documents\Visual Studio 2013\Visualizers"; -$VS2015Folder = Join-Path -path $env:userprofile -childpath "Documents\Visual Studio 2015\Visualizers"; -Copy-Natvis $VS2013Folder; -Copy-Natvis $VS2015Folder; \ No newline at end of file diff --git a/Release/src/build/other.vcxitems b/Release/src/build/other.vcxitems deleted file mode 100644 index 2199600b11..0000000000 --- a/Release/src/build/other.vcxitems +++ /dev/null @@ -1,22 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 248F659F-DAC5-46E8-AC09-60EC9FC95053 - true - 388fd5af-5c41-4452-97f0-2841cee780b6 - {3d5908f7-7673-4229-bc46-2007a7af9cae} - other - - - - %(AdditionalIncludeDirectories);$(MSBuildThisFileDirectory) - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/other.vcxitems.filters b/Release/src/build/other.vcxitems.filters deleted file mode 100644 index caa96f0b2a..0000000000 --- a/Release/src/build/other.vcxitems.filters +++ /dev/null @@ -1,16 +0,0 @@ - - - - - {627bd7c9-4277-424f-b76c-849f88aa536a} - - - {efbed7e8-e66d-48e1-97f5-d687726e1748} - - - - - Source Files - - - \ No newline at end of file diff --git a/Release/src/build/vs14.android/casablanca140.android.vcxproj b/Release/src/build/vs14.android/casablanca140.android.vcxproj deleted file mode 100644 index 038f56b125..0000000000 --- a/Release/src/build/vs14.android/casablanca140.android.vcxproj +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - {AFB49019-965B-4C10-BAFF-C86C16D58010} - Android - Android - 2.0 - cpprestsdk140.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - - true - - - true - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - $(CppRestBaseFileName)140$(DebugFileSuffix)_android_$(CppRestSDKVersionFileSuffix) - - - true - - - true - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/src/build/vs14.android/packages.config b/Release/src/build/vs14.android/packages.config deleted file mode 100644 index 746b7f61a2..0000000000 --- a/Release/src/build/vs14.android/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/vs14.static/casablanca140.static.vcxproj b/Release/src/build/vs14.static/casablanca140.static.vcxproj deleted file mode 100644 index cda12db6a7..0000000000 --- a/Release/src/build/vs14.static/casablanca140.static.vcxproj +++ /dev/null @@ -1,84 +0,0 @@ - - - - - {79C9BBEC-D7C9-4BA3-B2B3-5C3A14A9F24A} - Win32Proj - SAK - SAK - SAK - SAK - StaticLibrary - v140 - false - false - cpprestsdk140.static - 8.1 - - - - - - - - - - - - - - - - - - - d - - - lib$(CppRestBaseFileName)140$(DebugFileSuffix)_$(CppRestSDKVersionFileSuffix) - - - - Designer - - - - - _NO_ASYNCRTIMP;_ASYNCRT_EXPORT;_PPLX_EXPORT;WIN32;_MBCS;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Use - stdafx.h - -Zm300 /bigobj %(AdditionalOptions) - MultiThreadedDebugDLL - MultiThreadedDLL - true - - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - false - false - false - false - false - false - - - Winhttp.lib;httpapi.lib;bcrypt.lib;crypt32.lib;%(AdditionalDependencies) - UseLinkTimeCodeGeneration - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/Release/src/build/vs14.static/packages.config b/Release/src/build/vs14.static/packages.config deleted file mode 100644 index 21a51fdf83..0000000000 --- a/Release/src/build/vs14.static/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/vs14.uwp/cpprestsdk140.uwp.staticlib.vcxproj b/Release/src/build/vs14.uwp/cpprestsdk140.uwp.staticlib.vcxproj deleted file mode 100644 index 2918824b65..0000000000 --- a/Release/src/build/vs14.uwp/cpprestsdk140.uwp.staticlib.vcxproj +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {47A5CFDC-C244-45A6-9830-38CB303CB495} - StaticLibrary - en-US - 14.0 - true - Windows Store - 8.2 - cpprestsdk140.uwp.staticlib - v140 - StaticLibrary - $(OutDir)\$(MsBuildProjectName) - 10.0.10240.0 - 10.0.10240.0 - - - - - - - - - - - - - - - - d - - - lib$(CppRestBaseFileName)140$(DebugFileSuffix)_uwp_$(CppRestSDKVersionFileSuffix) - - - - - false - false - - - - _NO_ASYNCRTIMP;_NO_PPLXIMP;_USRDLL;%(PreprocessorDefinitions); - Use - true - $(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;%(AdditionalIncludeDirectories) - Use - stdafx.h - -Zm250 /bigobj %(AdditionalOptions) - true - - - Console - false - UseLinkTimeCodeGeneration - false - - - - - - copy /Y $(OutDir)\* $(OutDir)..\ - exit 0 - Copying $(TargetName).winrt binaries to OutDir and removing appcontainer flag - - - MachineX86 - - - MachineX86 - - - MachineX64 - - - MachineX64 - - - - - \ No newline at end of file diff --git a/Release/src/build/vs14.uwp/cpprestsdk140.uwp.vcxproj b/Release/src/build/vs14.uwp/cpprestsdk140.uwp.vcxproj deleted file mode 100644 index 88a336088c..0000000000 --- a/Release/src/build/vs14.uwp/cpprestsdk140.uwp.vcxproj +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - DynamicLibrary - en-US - 14.0 - true - Windows Store - 10.0.10240.0 - 10.0.10240.0 - 10.0 - cpprestsdk140.uwp - v140 - DynamicLibrary - $(OutDir)\$(MsBuildProjectName) - - - - - - - - - - - - - - - - d - - - $(CppRestBaseFileName)140$(DebugFileSuffix)_uwp_$(CppRestSDKVersionFileSuffix) - - - - - false - false - - - - _ASYNCRT_EXPORT;_PPLX_EXPORT;_USRDLL;%(PreprocessorDefinitions); - Use - true - $(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;%(AdditionalIncludeDirectories) - Use - stdafx.h - -Zm250 /bigobj %(AdditionalOptions) - true - - - Console - false - UseLinkTimeCodeGeneration - false - - - - - - copy /Y "$(OutDir)\*" "$(OutDir)..\" - link /edit /appcontainer:no "$(OutDir)..\$(TargetName).dll" - exit 0 - Copying $(TargetName).winrt binaries to OutDir and removing appcontainer flag - - - - - \ No newline at end of file diff --git a/Release/src/build/vs14.xp/casablanca140.xp.vcxproj b/Release/src/build/vs14.xp/casablanca140.xp.vcxproj deleted file mode 100644 index 7f3e81937a..0000000000 --- a/Release/src/build/vs14.xp/casablanca140.xp.vcxproj +++ /dev/null @@ -1,86 +0,0 @@ - - - - - {39F7E851-7EF8-4DFB-9907-B480CB8D2AC9} - Win32Proj - SAK - SAK - SAK - SAK - DynamicLibrary - v140_xp - false - true - cpprestsdk140.xp - 8.1 - - - - - - - - true - true - true - true - - - - - - - - - - - - - - - d - - - $(CppRestBaseFileName)140$(DebugFileSuffix)_xp_$(CppRestSDKVersionFileSuffix) - - - - Designer - - - - - CPPREST_TARGET_XP;_ASYNCRT_EXPORT;_PPLX_EXPORT;WIN32;_MBCS;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Use - stdafx.h - -Zm300 /bigobj %(AdditionalOptions) - MultiThreadedDebugDLL - MultiThreadedDLL - true - - - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - - - Winhttp.lib;crypt32.lib;%(AdditionalDependencies) - UseLinkTimeCodeGeneration - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/Release/src/build/vs14.xp/packages.config b/Release/src/build/vs14.xp/packages.config deleted file mode 100644 index 21a51fdf83..0000000000 --- a/Release/src/build/vs14.xp/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/vs14/casablanca140.vcxproj b/Release/src/build/vs14/casablanca140.vcxproj deleted file mode 100644 index cca6328ef9..0000000000 --- a/Release/src/build/vs14/casablanca140.vcxproj +++ /dev/null @@ -1,78 +0,0 @@ - - - - - {1014C621-BC2D-4813-B8C1-6D83AD6F9249} - Win32Proj - SAK - SAK - SAK - SAK - DynamicLibrary - v140 - false - false - cpprestsdk140 - - - - - - - - - - - - - - - - - - - d - - - $(CppRestBaseFileName)140$(DebugFileSuffix)_$(CppRestSDKVersionFileSuffix) - - - - Designer - - - - - _ASYNCRT_EXPORT;_PPLX_EXPORT;WIN32;_MBCS;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Use - stdafx.h - -Zm300 /bigobj %(AdditionalOptions) - MultiThreadedDebugDLL - MultiThreadedDLL - true - - - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - - - Winhttp.lib;httpapi.lib;bcrypt.lib;crypt32.lib;%(AdditionalDependencies) - UseLinkTimeCodeGeneration - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/Release/src/build/vs14/packages.config b/Release/src/build/vs14/packages.config deleted file mode 100644 index 21a51fdf83..0000000000 --- a/Release/src/build/vs14/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/vs141.android/cpprest141.android.vcxproj b/Release/src/build/vs141.android/cpprest141.android.vcxproj deleted file mode 100644 index 99a265fa01..0000000000 --- a/Release/src/build/vs141.android/cpprest141.android.vcxproj +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - {AFB49019-965B-4C10-BAFF-C86C16D58010} - Android - Android - 3.0 - cpprest141.android - 15.0 - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - android-24 - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - - true - - - true - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(CasablancaSrcDir)\android;$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(CasablancaSrcDir)\android;$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(CasablancaSrcDir)\android;$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(CasablancaSrcDir)\android;$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - $(CppRestBaseFileName)141$(DebugFileSuffix)_android_$(CppRestSDKVersionFileSuffix) - - - true - - - true - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/Release/src/build/vs141.android/packages.config b/Release/src/build/vs141.android/packages.config deleted file mode 100644 index 746b7f61a2..0000000000 --- a/Release/src/build/vs141.android/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/vs141.uwp/cpprest141.uwp.vcxproj b/Release/src/build/vs141.uwp/cpprest141.uwp.vcxproj deleted file mode 100644 index f0ee5aae9d..0000000000 --- a/Release/src/build/vs141.uwp/cpprest141.uwp.vcxproj +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - DynamicLibrary - en-US - 14.0 - true - Windows Store - 10.0.16299.0 - 10.0.16299.0 - 10.0 - cpprest141.uwp - v141 - DynamicLibrary - $(OutDir)\$(MsBuildProjectName) - - - - - - - - - - - - - - - - d - - - $(CppRestBaseFileName)141$(DebugFileSuffix)_uwp_$(CppRestSDKVersionFileSuffix) - - - - - false - false - - - - _ASYNCRT_EXPORT;_PPLX_EXPORT;_USRDLL;%(PreprocessorDefinitions); - Use - true - $(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;%(AdditionalIncludeDirectories) - Use - stdafx.h - -Zm250 /bigobj %(AdditionalOptions) - true - - - Console - false - UseLinkTimeCodeGeneration - false - - - - - - \ No newline at end of file diff --git a/Release/src/build/vs141/cpprest141.vcxproj b/Release/src/build/vs141/cpprest141.vcxproj deleted file mode 100644 index 794a5155ba..0000000000 --- a/Release/src/build/vs141/cpprest141.vcxproj +++ /dev/null @@ -1,85 +0,0 @@ - - - - - {1014C621-BC2D-4813-B8C1-6D83AD6F9249} - Win32Proj - SAK - SAK - SAK - SAK - DynamicLibrary - v141 - false - false - cpprest141 - 10.0.16299.0 - - - true - true - true - true - - - - - - - - - - - - - - - - - - - d - - - $(CppRestBaseFileName)141$(DebugFileSuffix)_$(CppRestSDKVersionFileSuffix) - - - - Designer - - - - - _ASYNCRT_EXPORT;_PPLX_EXPORT;WIN32;_MBCS;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Use - stdafx.h - -Zm300 /bigobj %(AdditionalOptions) - MultiThreadedDebugDLL - MultiThreadedDLL - true - - - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - 4503;4592;%(DisableSpecificWarnings) - - - Winhttp.lib;httpapi.lib;bcrypt.lib;crypt32.lib;%(AdditionalDependencies) - UseLinkTimeCodeGeneration - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - \ No newline at end of file diff --git a/Release/src/build/vs141/packages.config b/Release/src/build/vs141/packages.config deleted file mode 100644 index 21a51fdf83..0000000000 --- a/Release/src/build/vs141/packages.config +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/win32.vcxitems b/Release/src/build/win32.vcxitems deleted file mode 100644 index 216b00fca5..0000000000 --- a/Release/src/build/win32.vcxitems +++ /dev/null @@ -1,33 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 248F659F-DAC5-46E8-AC09-60EC9FC95053 - true - c9564eb9-0f37-49cc-a2d6-b1a42b8bfb10 - {f40f4804-50f9-4257-8d74-b9cbb19ac4c3} - win32 - - - - %(AdditionalIncludeDirectories);$(MSBuildThisFileDirectory) - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/win32.vcxitems.filters b/Release/src/build/win32.vcxitems.filters deleted file mode 100644 index 0a8e8e865a..0000000000 --- a/Release/src/build/win32.vcxitems.filters +++ /dev/null @@ -1,39 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - {48e3e0ed-8995-4e0b-b58c-a9c38bac54de} - - - {95470a15-70ac-4e0f-ae3b-e5721e93400c} - - - - - Header Files - - - Header Files - - - - - - \ No newline at end of file diff --git a/Release/src/build/winrt.vcxitems b/Release/src/build/winrt.vcxitems deleted file mode 100644 index c07ce03c97..0000000000 --- a/Release/src/build/winrt.vcxitems +++ /dev/null @@ -1,31 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - 248F659F-DAC5-46E8-AC09-60EC9FC95053 - true - 6b93d548-6644-4909-8c97-3e19aac98514 - {0a9ba181-7876-4b3d-a5e0-ee673fa51c05} - winrt - - - - %(AdditionalIncludeDirectories);$(MSBuildThisFileDirectory) - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/src/build/winrt.vcxitems.filters b/Release/src/build/winrt.vcxitems.filters deleted file mode 100644 index 746985781b..0000000000 --- a/Release/src/build/winrt.vcxitems.filters +++ /dev/null @@ -1,33 +0,0 @@ - - - - - {1a4ff9ed-f148-42a8-8119-185e2c58800e} - - - {5e8ffeb7-9f5b-45ae-baa1-45d4634d7dc4} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - - - - \ No newline at end of file diff --git a/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/project.pbxproj b/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/project.pbxproj deleted file mode 100644 index 4fa4952084..0000000000 --- a/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/project.pbxproj +++ /dev/null @@ -1,368 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - D5E513901A1BEA1D0060F252 /* ios_runnerTests.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5E5138F1A1BEA1D0060F252 /* ios_runnerTests.mm */; }; - D5E5139A1A1BFDD80060F252 /* libunittestpp.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513991A1BFDD80060F252 /* libunittestpp.a */; }; - D5E5139C1A1BFECD0060F252 /* libcpprest.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E5139B1A1BFECD0060F252 /* libcpprest.a */; }; - D5E513A61A1BFEE20060F252 /* libcommon_utilities.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E5139D1A1BFEE20060F252 /* libcommon_utilities.a */; }; - D5E513A71A1BFEE20060F252 /* libhttpclient_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E5139E1A1BFEE20060F252 /* libhttpclient_test.a */; }; - D5E513A81A1BFEE20060F252 /* libhttplistener_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E5139F1A1BFEE20060F252 /* libhttplistener_test.a */; }; - D5E513A91A1BFEE20060F252 /* libhttptest_utilities.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513A01A1BFEE20060F252 /* libhttptest_utilities.a */; }; - D5E513AA1A1BFEE20060F252 /* libjson_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513A11A1BFEE20060F252 /* libjson_test.a */; }; - D5E513AB1A1BFEE20060F252 /* libpplx_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513A21A1BFEE20060F252 /* libpplx_test.a */; }; - D5E513AC1A1BFEE20060F252 /* libstreams_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513A31A1BFEE20060F252 /* libstreams_test.a */; }; - D5E513AD1A1BFEE20060F252 /* liburi_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513A41A1BFEE20060F252 /* liburi_test.a */; }; - D5E513AE1A1BFEE20060F252 /* libutils_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513A51A1BFEE20060F252 /* libutils_test.a */; }; - D5E513B01A1C01820060F252 /* libiconv.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513AF1A1C01820060F252 /* libiconv.dylib */; }; - D5E513B41A1C02210060F252 /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513B21A1C02200060F252 /* libcrypto.a */; }; - D5E513B51A1C02210060F252 /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513B31A1C02210060F252 /* libssl.a */; }; - D5E513B71A1C02570060F252 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513B61A1C02570060F252 /* Security.framework */; }; - D5E513B81A1C02CF0060F252 /* boost.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D5E513B11A1C01D30060F252 /* boost.framework */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - D52BABA91A1C064100FAE04C /* libwebsocketclient_test.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libwebsocketclient_test.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libwebsocketclient_test.a; sourceTree = ""; }; - D52BABAA1A1C064100FAE04C /* libwebsockettest_utilities.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libwebsockettest_utilities.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libwebsockettest_utilities.a; sourceTree = ""; }; - D5E513891A1BEA1D0060F252 /* ios_runnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ios_runnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - D5E5138E1A1BEA1D0060F252 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - D5E5138F1A1BEA1D0060F252 /* ios_runnerTests.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = ios_runnerTests.mm; sourceTree = ""; }; - D5E513991A1BFDD80060F252 /* libunittestpp.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libunittestpp.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libunittestpp.a; sourceTree = ""; }; - D5E5139B1A1BFECD0060F252 /* libcpprest.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcpprest.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libcpprest.a; sourceTree = ""; }; - D5E5139D1A1BFEE20060F252 /* libcommon_utilities.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcommon_utilities.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libcommon_utilities.a; sourceTree = ""; }; - D5E5139E1A1BFEE20060F252 /* libhttpclient_test.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libhttpclient_test.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libhttpclient_test.a; sourceTree = ""; }; - D5E5139F1A1BFEE20060F252 /* libhttplistener_test.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libhttplistener_test.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libhttplistener_test.a; sourceTree = ""; }; - D5E513A01A1BFEE20060F252 /* libhttptest_utilities.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libhttptest_utilities.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libhttptest_utilities.a; sourceTree = ""; }; - D5E513A11A1BFEE20060F252 /* libjson_test.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libjson_test.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libjson_test.a; sourceTree = ""; }; - D5E513A21A1BFEE20060F252 /* libpplx_test.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libpplx_test.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libpplx_test.a; sourceTree = ""; }; - D5E513A31A1BFEE20060F252 /* libstreams_test.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libstreams_test.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libstreams_test.a; sourceTree = ""; }; - D5E513A41A1BFEE20060F252 /* liburi_test.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = liburi_test.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/liburi_test.a; sourceTree = ""; }; - D5E513A51A1BFEE20060F252 /* libutils_test.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libutils_test.a; path = ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug/libutils_test.a; sourceTree = ""; }; - D5E513AF1A1C01820060F252 /* libiconv.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libiconv.dylib; path = usr/lib/libiconv.dylib; sourceTree = SDKROOT; }; - D5E513B11A1C01D30060F252 /* boost.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = boost.framework; path = ../../../../../Build_iOS/boost.framework; sourceTree = ""; }; - D5E513B21A1C02200060F252 /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libcrypto.a; path = ../../../../../Build_iOS/openssl/lib/libcrypto.a; sourceTree = ""; }; - D5E513B31A1C02210060F252 /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libssl.a; path = ../../../../../Build_iOS/openssl/lib/libssl.a; sourceTree = ""; }; - D5E513B61A1C02570060F252 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - D5E513861A1BEA1D0060F252 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - D5E513B81A1C02CF0060F252 /* boost.framework in Frameworks */, - D5E513B71A1C02570060F252 /* Security.framework in Frameworks */, - D5E513B41A1C02210060F252 /* libcrypto.a in Frameworks */, - D5E513B51A1C02210060F252 /* libssl.a in Frameworks */, - D5E513B01A1C01820060F252 /* libiconv.dylib in Frameworks */, - D5E513A61A1BFEE20060F252 /* libcommon_utilities.a in Frameworks */, - D5E513A71A1BFEE20060F252 /* libhttpclient_test.a in Frameworks */, - D5E513A81A1BFEE20060F252 /* libhttplistener_test.a in Frameworks */, - D5E513A91A1BFEE20060F252 /* libhttptest_utilities.a in Frameworks */, - D5E513AA1A1BFEE20060F252 /* libjson_test.a in Frameworks */, - D5E513AB1A1BFEE20060F252 /* libpplx_test.a in Frameworks */, - D5E513AC1A1BFEE20060F252 /* libstreams_test.a in Frameworks */, - D5E513AD1A1BFEE20060F252 /* liburi_test.a in Frameworks */, - D5E513AE1A1BFEE20060F252 /* libutils_test.a in Frameworks */, - D5E5139C1A1BFECD0060F252 /* libcpprest.a in Frameworks */, - D5E5139A1A1BFDD80060F252 /* libunittestpp.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - D5E513671A1BEA1D0060F252 = { - isa = PBXGroup; - children = ( - D52BABA91A1C064100FAE04C /* libwebsocketclient_test.a */, - D52BABAA1A1C064100FAE04C /* libwebsockettest_utilities.a */, - D5E513B61A1C02570060F252 /* Security.framework */, - D5E513B21A1C02200060F252 /* libcrypto.a */, - D5E513B31A1C02210060F252 /* libssl.a */, - D5E513B11A1C01D30060F252 /* boost.framework */, - D5E513AF1A1C01820060F252 /* libiconv.dylib */, - D5E5139D1A1BFEE20060F252 /* libcommon_utilities.a */, - D5E5139E1A1BFEE20060F252 /* libhttpclient_test.a */, - D5E5139F1A1BFEE20060F252 /* libhttplistener_test.a */, - D5E513A01A1BFEE20060F252 /* libhttptest_utilities.a */, - D5E513A11A1BFEE20060F252 /* libjson_test.a */, - D5E513A21A1BFEE20060F252 /* libpplx_test.a */, - D5E513A31A1BFEE20060F252 /* libstreams_test.a */, - D5E513A41A1BFEE20060F252 /* liburi_test.a */, - D5E513A51A1BFEE20060F252 /* libutils_test.a */, - D5E5139B1A1BFECD0060F252 /* libcpprest.a */, - D5E513991A1BFDD80060F252 /* libunittestpp.a */, - D5E5138C1A1BEA1D0060F252 /* ios_runnerTests */, - D5E513711A1BEA1D0060F252 /* Products */, - ); - sourceTree = ""; - }; - D5E513711A1BEA1D0060F252 /* Products */ = { - isa = PBXGroup; - children = ( - D5E513891A1BEA1D0060F252 /* ios_runnerTests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - D5E5138C1A1BEA1D0060F252 /* ios_runnerTests */ = { - isa = PBXGroup; - children = ( - D5E5138F1A1BEA1D0060F252 /* ios_runnerTests.mm */, - D5E5138D1A1BEA1D0060F252 /* Supporting Files */, - ); - path = ios_runnerTests; - sourceTree = ""; - }; - D5E5138D1A1BEA1D0060F252 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - D5E5138E1A1BEA1D0060F252 /* Info.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - D5E513881A1BEA1D0060F252 /* ios_runnerTests */ = { - isa = PBXNativeTarget; - buildConfigurationList = D5E513961A1BEA1D0060F252 /* Build configuration list for PBXNativeTarget "ios_runnerTests" */; - buildPhases = ( - D5E513851A1BEA1D0060F252 /* Sources */, - D5E513861A1BEA1D0060F252 /* Frameworks */, - D5E513871A1BEA1D0060F252 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = ios_runnerTests; - productName = ios_runnerTests; - productReference = D5E513891A1BEA1D0060F252 /* ios_runnerTests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - D5E513681A1BEA1D0060F252 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0610; - ORGANIZATIONNAME = "Steve Gates"; - TargetAttributes = { - D5E513881A1BEA1D0060F252 = { - CreatedOnToolsVersion = 6.1; - }; - }; - }; - buildConfigurationList = D5E5136B1A1BEA1D0060F252 /* Build configuration list for PBXProject "ios_runner" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = D5E513671A1BEA1D0060F252; - productRefGroup = D5E513711A1BEA1D0060F252 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - D5E513881A1BEA1D0060F252 /* ios_runnerTests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - D5E513871A1BEA1D0060F252 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - D5E513851A1BEA1D0060F252 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D5E513901A1BEA1D0060F252 /* ios_runnerTests.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - D5E513911A1BEA1D0060F252 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.1; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - USER_HEADER_SEARCH_PATHS = ../../unittestpp/; - VALID_ARCHS = i386; - }; - name = Debug; - }; - D5E513921A1BEA1D0060F252 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = YES; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.1; - MTL_ENABLE_DEBUG_INFO = NO; - ONLY_ACTIVE_ARCH = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - USER_HEADER_SEARCH_PATHS = ../../unittestpp/; - VALIDATE_PRODUCT = YES; - VALID_ARCHS = i386; - }; - name = Release; - }; - D5E513971A1BEA1D0060F252 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - ../../../../../Build_iOS, - ); - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - INFOPLIST_FILE = ios_runnerTests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - ../../../../../Build_iOS/build.debug/build.i386/Binaries/Debug, - ../../../../../Build_iOS/openssl/lib, - ); - OTHER_LDFLAGS = ( - "$(inherited)", - "-all_load", - "-framework", - XCTest, - ); - PRODUCT_NAME = "$(TARGET_NAME)"; - USER_HEADER_SEARCH_PATHS = "../../unittestpp/ ../../../../include ../../../../../Build_iOS/boost.framework/Headers"; - }; - name = Debug; - }; - D5E513981A1BEA1D0060F252 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - FRAMEWORK_SEARCH_PATHS = ( - "$(SDKROOT)/Developer/Library/Frameworks", - "$(inherited)", - ../../../../../Build_iOS, - ); - INFOPLIST_FILE = ios_runnerTests/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - ../../../../../Build_iOS/build.release/build.i386/Binaries/Release, - ../../../../../Build_iOS/openssl/lib, - ); - OTHER_LDFLAGS = ( - "$(inherited)", - "-all_load", - "-framework", - XCTest, - ); - PRODUCT_NAME = "$(TARGET_NAME)"; - USER_HEADER_SEARCH_PATHS = "../../unittestpp/ ../../../../include ../../../../../Build_iOS/boost.framework/Headers"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - D5E5136B1A1BEA1D0060F252 /* Build configuration list for PBXProject "ios_runner" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D5E513911A1BEA1D0060F252 /* Debug */, - D5E513921A1BEA1D0060F252 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - D5E513961A1BEA1D0060F252 /* Build configuration list for PBXNativeTarget "ios_runnerTests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D5E513971A1BEA1D0060F252 /* Debug */, - D5E513981A1BEA1D0060F252 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = D5E513681A1BEA1D0060F252 /* Project object */; -} diff --git a/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index f7799a8bc6..0000000000 --- a/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/xcshareddata/xcschemes/ios_runner.xcscheme b/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/xcshareddata/xcschemes/ios_runner.xcscheme deleted file mode 100644 index bef34bb582..0000000000 --- a/Release/tests/common/TestRunner/ios/ios_runner.xcodeproj/xcshareddata/xcschemes/ios_runner.xcscheme +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Release/tests/common/TestRunner/ios/ios_runnerTests/Info.plist b/Release/tests/common/TestRunner/ios/ios_runnerTests/Info.plist deleted file mode 100644 index 04f6d96780..0000000000 --- a/Release/tests/common/TestRunner/ios/ios_runnerTests/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - blah.$(PRODUCT_NAME:rfc1034identifier) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/Release/tests/common/TestRunner/ios/ios_runnerTests/ios_runnerTests.mm b/Release/tests/common/TestRunner/ios/ios_runnerTests/ios_runnerTests.mm deleted file mode 100644 index b0f578a59f..0000000000 --- a/Release/tests/common/TestRunner/ios/ios_runnerTests/ios_runnerTests.mm +++ /dev/null @@ -1,67 +0,0 @@ -/*** -* Copyright (C) Microsoft. All rights reserved. -* Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. -* -* ==--== -* =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ -* -* Creates an Xcode test to bride with our UnitTestpp tests. Can be used to run -* iOS tests in the simulator or a connected physically device. -* -* For the latest on this and related APIs, please see: https://github.com/Microsoft/cpprestsdk -* -* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- -****/ -#import -#import - -#include "unittestpp.h" -#include "src/TestReporterStdout.h" - -@interface ios_runnerTests : XCTestCase - -@end - -@implementation ios_runnerTests - -- (void)setUp { - [super setUp]; - // Put setup code here. This method is called before the invocation of each test method in the class. -} - -- (void)tearDown { - // Put teardown code here. This method is called after the invocation of each test method in the class. - [super tearDown]; -} - -- (void)testCppRestSdk { - UnitTest::TestReporterStdout testReporter; - UnitTest::TestRunner testRunner(testReporter); - - UnitTest::TestList& tests = UnitTest::GetTestList(); - testRunner.RunTestsIf(tests, - [&](UnitTest::Test *pTest) - { - if (pTest->m_properties.Has("Ignore")) return false; - if (pTest->m_properties.Has("Ignore:Apple")) return false; - if (pTest->m_properties.Has("Ignore:IOS")) return false; - if (pTest->m_properties.Has("Requires")) return false; - return true; - }, - 60000 * 3); - - int totalTestCount = testRunner.GetTestResults()->GetTotalTestCount(); - int failedTestCount = testRunner.GetTestResults()->GetFailedTestCount(); - if(failedTestCount > 0) - { - printf("%i tests FAILED\n", failedTestCount); - XCTAssert(false); - } - else - { - printf("All %i tests PASSED\n", totalTestCount); - XCTAssert(YES, @"Pass"); - } -} - -@end diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/TestRunner.android.NativeActivity.vcxproj b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/TestRunner.android.NativeActivity.vcxproj deleted file mode 100644 index d798ca823d..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/TestRunner.android.NativeActivity.vcxproj +++ /dev/null @@ -1,284 +0,0 @@ - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - {d1060d0a-a10e-444d-9f6b-9676ea453f9a} - Android - TestRunner.android.NativeActivity - TestRunner_android - en-US - 14.0 - Android - 2.0 - - - - DynamicLibrary - true - gnustl_static - Clang_3_8 - - - DynamicLibrary - true - gnustl_static - Clang_3_8 - - - DynamicLibrary - false - gnustl_static - Clang_3_8 - - - DynamicLibrary - false - gnustl_static - Clang_3_8 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Use - pch.h - CompileAsCpp - Enabled - true - c++11 - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - %(LibraryDependencies);GLESv1_CM;EGL;m - - - - - Use - pch.h - CompileAsCpp - Enabled - true - c++11 - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - %(LibraryDependencies);GLESv1_CM;EGL;m - - - - - Use - pch.h - CompileAsCpp - Enabled - true - c++11 - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - %(LibraryDependencies);GLESv1_CM;EGL;m - - - - - Use - pch.h - CompileAsCpp - Enabled - true - c++11 - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - %(LibraryDependencies);GLESv1_CM;EGL;m - - - - - - - - - - - - - {afb49019-965b-4c10-baff-c86c16d58010} - true - false - false - true - true - - - {0ee481da-a97f-4831-9119-c65eb2d7b4da} - true - false - false - true - true - - - {2b00d1c0-1a93-4a32-8932-c3cc43acff45} - true - false - false - true - true - - - {b444ee47-1340-4a74-820d-cdd55f9f22f7} - true - false - false - true - true - - - {169555ef-8a80-405e-a815-cfe70028ca45} - true - false - false - true - true - - - {df670b4e-692c-424e-bcfd-f63d34fe5cd3} - true - false - false - true - true - - - {b9da540f-95f7-485e-adf4-c94a17bfa1eb} - true - false - false - true - true - - - {63569c1a-a168-442a-b160-76d0256803af} - true - false - false - true - true - - - {423fce6d-7400-4c09-9038-4438fbb089d4} - true - false - false - true - true - - - {3e8466b1-7cbc-489d-8e6b-5e45bab4d627} - true - false - false - true - true - - - {0149e1c2-fbf3-48b6-9996-d6753f689dfb} - true - false - false - true - true - - - {3efd8540-a54d-4900-887e-f856162535a0} - true - false - false - true - true - - - {7c4e6e33-42e2-4472-9319-dde7564f3dae} - true - false - false - true - true - - - - - - - - - - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/TestRunner.android.NativeActivity.vcxproj.filters b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/TestRunner.android.NativeActivity.vcxproj.filters deleted file mode 100644 index 52b354d8e3..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/TestRunner.android.NativeActivity.vcxproj.filters +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/android_native_app_glue.c b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/android_native_app_glue.c deleted file mode 100644 index 6de5362a00..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/android_native_app_glue.c +++ /dev/null @@ -1,426 +0,0 @@ -/* - * Copyright (C) 2010 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "threaded_app", __VA_ARGS__)) -#define LOGE(...) ((void)__android_log_print(ANDROID_LOG_ERROR, "threaded_app", __VA_ARGS__)) - -/* For debug builds, always enable the debug traces in this library */ -#ifndef NDEBUG -# define LOGV(...) ((void)__android_log_print(ANDROID_LOG_VERBOSE, "threaded_app", __VA_ARGS__)) -#else -# define LOGV(...) ((void)0) -#endif - -static void free_saved_state(struct android_app* android_app) { - pthread_mutex_lock(&android_app->mutex); - if (android_app->savedState != NULL) { - free(android_app->savedState); - android_app->savedState = NULL; - android_app->savedStateSize = 0; - } - pthread_mutex_unlock(&android_app->mutex); -} - -int8_t android_app_read_cmd(struct android_app* android_app) { - int8_t cmd; - if (read(android_app->msgread, &cmd, sizeof(cmd)) == sizeof(cmd)) { - switch (cmd) { - case APP_CMD_SAVE_STATE: - free_saved_state(android_app); - break; - } - return cmd; - } else { - LOGE("No data on command pipe!"); - } - return -1; -} - -static void print_cur_config(struct android_app* android_app) { - char lang[2], country[2]; - AConfiguration_getLanguage(android_app->config, lang); - AConfiguration_getCountry(android_app->config, country); - - LOGV("Config: mcc=%d mnc=%d lang=%c%c cnt=%c%c orien=%d touch=%d dens=%d " - "keys=%d nav=%d keysHid=%d navHid=%d sdk=%d size=%d long=%d " - "modetype=%d modenight=%d", - AConfiguration_getMcc(android_app->config), - AConfiguration_getMnc(android_app->config), - lang[0], lang[1], country[0], country[1], - AConfiguration_getOrientation(android_app->config), - AConfiguration_getTouchscreen(android_app->config), - AConfiguration_getDensity(android_app->config), - AConfiguration_getKeyboard(android_app->config), - AConfiguration_getNavigation(android_app->config), - AConfiguration_getKeysHidden(android_app->config), - AConfiguration_getNavHidden(android_app->config), - AConfiguration_getSdkVersion(android_app->config), - AConfiguration_getScreenSize(android_app->config), - AConfiguration_getScreenLong(android_app->config), - AConfiguration_getUiModeType(android_app->config), - AConfiguration_getUiModeNight(android_app->config)); -} - -void android_app_pre_exec_cmd(struct android_app* android_app, int8_t cmd) { - switch (cmd) { - case APP_CMD_INPUT_CHANGED: - LOGV("APP_CMD_INPUT_CHANGED\n"); - pthread_mutex_lock(&android_app->mutex); - if (android_app->inputQueue != NULL) { - AInputQueue_detachLooper(android_app->inputQueue); - } - android_app->inputQueue = android_app->pendingInputQueue; - if (android_app->inputQueue != NULL) { - LOGV("Attaching input queue to looper"); - AInputQueue_attachLooper(android_app->inputQueue, - android_app->looper, LOOPER_ID_INPUT, NULL, - &android_app->inputPollSource); - } - pthread_cond_broadcast(&android_app->cond); - pthread_mutex_unlock(&android_app->mutex); - break; - - case APP_CMD_INIT_WINDOW: - LOGV("APP_CMD_INIT_WINDOW\n"); - pthread_mutex_lock(&android_app->mutex); - android_app->window = android_app->pendingWindow; - pthread_cond_broadcast(&android_app->cond); - pthread_mutex_unlock(&android_app->mutex); - break; - - case APP_CMD_TERM_WINDOW: - LOGV("APP_CMD_TERM_WINDOW\n"); - pthread_cond_broadcast(&android_app->cond); - break; - - case APP_CMD_RESUME: - case APP_CMD_START: - case APP_CMD_PAUSE: - case APP_CMD_STOP: - LOGV("activityState=%d\n", cmd); - pthread_mutex_lock(&android_app->mutex); - android_app->activityState = cmd; - pthread_cond_broadcast(&android_app->cond); - pthread_mutex_unlock(&android_app->mutex); - break; - - case APP_CMD_CONFIG_CHANGED: - LOGV("APP_CMD_CONFIG_CHANGED\n"); - AConfiguration_fromAssetManager(android_app->config, - android_app->activity->assetManager); - print_cur_config(android_app); - break; - - case APP_CMD_DESTROY: - LOGV("APP_CMD_DESTROY\n"); - android_app->destroyRequested = 1; - break; - } -} - -void android_app_post_exec_cmd(struct android_app* android_app, int8_t cmd) { - switch (cmd) { - case APP_CMD_TERM_WINDOW: - LOGV("APP_CMD_TERM_WINDOW\n"); - pthread_mutex_lock(&android_app->mutex); - android_app->window = NULL; - pthread_cond_broadcast(&android_app->cond); - pthread_mutex_unlock(&android_app->mutex); - break; - - case APP_CMD_SAVE_STATE: - LOGV("APP_CMD_SAVE_STATE\n"); - pthread_mutex_lock(&android_app->mutex); - android_app->stateSaved = 1; - pthread_cond_broadcast(&android_app->cond); - pthread_mutex_unlock(&android_app->mutex); - break; - - case APP_CMD_RESUME: - free_saved_state(android_app); - break; - } -} - -static void android_app_destroy(struct android_app* android_app) { - LOGV("android_app_destroy!"); - free_saved_state(android_app); - pthread_mutex_lock(&android_app->mutex); - if (android_app->inputQueue != NULL) { - AInputQueue_detachLooper(android_app->inputQueue); - } - AConfiguration_delete(android_app->config); - android_app->destroyed = 1; - pthread_cond_broadcast(&android_app->cond); - pthread_mutex_unlock(&android_app->mutex); - // Can't touch android_app object after this. -} - -static void process_input(struct android_app* app, struct android_poll_source* source) { - AInputEvent* event = NULL; - while (AInputQueue_getEvent(app->inputQueue, &event) >= 0) { - LOGV("New input event: type=%d\n", AInputEvent_getType(event)); - if (AInputQueue_preDispatchEvent(app->inputQueue, event)) { - continue; - } - int32_t handled = 0; - if (app->onInputEvent != NULL) handled = app->onInputEvent(app, event); - AInputQueue_finishEvent(app->inputQueue, event, handled); - } -} - -static void process_cmd(struct android_app* app, struct android_poll_source* source) { - int8_t cmd = android_app_read_cmd(app); - android_app_pre_exec_cmd(app, cmd); - if (app->onAppCmd != NULL) app->onAppCmd(app, cmd); - android_app_post_exec_cmd(app, cmd); -} - -static void* android_app_entry(void* param) { - struct android_app* android_app = (struct android_app*)param; - - android_app->config = AConfiguration_new(); - AConfiguration_fromAssetManager(android_app->config, android_app->activity->assetManager); - - print_cur_config(android_app); - - android_app->cmdPollSource.id = LOOPER_ID_MAIN; - android_app->cmdPollSource.app = android_app; - android_app->cmdPollSource.process = process_cmd; - android_app->inputPollSource.id = LOOPER_ID_INPUT; - android_app->inputPollSource.app = android_app; - android_app->inputPollSource.process = process_input; - - ALooper* looper = ALooper_prepare(ALOOPER_PREPARE_ALLOW_NON_CALLBACKS); - ALooper_addFd(looper, android_app->msgread, LOOPER_ID_MAIN, ALOOPER_EVENT_INPUT, NULL, - &android_app->cmdPollSource); - android_app->looper = looper; - - pthread_mutex_lock(&android_app->mutex); - android_app->running = 1; - pthread_cond_broadcast(&android_app->cond); - pthread_mutex_unlock(&android_app->mutex); - - android_main(android_app); - - android_app_destroy(android_app); - return NULL; -} - -// -------------------------------------------------------------------- -// Native activity interaction (called from main thread) -// -------------------------------------------------------------------- - -static struct android_app* android_app_create(ANativeActivity* activity, - void* savedState, size_t savedStateSize) { - struct android_app* android_app = (struct android_app*)malloc(sizeof(struct android_app)); - memset(android_app, 0, sizeof(struct android_app)); - android_app->activity = activity; - - pthread_mutex_init(&android_app->mutex, NULL); - pthread_cond_init(&android_app->cond, NULL); - - if (savedState != NULL) { - android_app->savedState = malloc(savedStateSize); - android_app->savedStateSize = savedStateSize; - memcpy(android_app->savedState, savedState, savedStateSize); - } - - int msgpipe[2]; - if (pipe(msgpipe)) { - LOGE("could not create pipe: %s", strerror(errno)); - return NULL; - } - android_app->msgread = msgpipe[0]; - android_app->msgwrite = msgpipe[1]; - - pthread_attr_t attr; - pthread_attr_init(&attr); - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); - pthread_create(&android_app->thread, &attr, android_app_entry, android_app); - - // Wait for thread to start. - pthread_mutex_lock(&android_app->mutex); - while (!android_app->running) { - pthread_cond_wait(&android_app->cond, &android_app->mutex); - } - pthread_mutex_unlock(&android_app->mutex); - - return android_app; -} - -static void android_app_write_cmd(struct android_app* android_app, int8_t cmd) { - if (write(android_app->msgwrite, &cmd, sizeof(cmd)) != sizeof(cmd)) { - LOGE("Failure writing android_app cmd: %s\n", strerror(errno)); - } -} - -static void android_app_set_input(struct android_app* android_app, AInputQueue* inputQueue) { - pthread_mutex_lock(&android_app->mutex); - android_app->pendingInputQueue = inputQueue; - android_app_write_cmd(android_app, APP_CMD_INPUT_CHANGED); - while (android_app->inputQueue != android_app->pendingInputQueue) { - pthread_cond_wait(&android_app->cond, &android_app->mutex); - } - pthread_mutex_unlock(&android_app->mutex); -} - -static void android_app_set_window(struct android_app* android_app, ANativeWindow* window) { - pthread_mutex_lock(&android_app->mutex); - if (android_app->pendingWindow != NULL) { - android_app_write_cmd(android_app, APP_CMD_TERM_WINDOW); - } - android_app->pendingWindow = window; - if (window != NULL) { - android_app_write_cmd(android_app, APP_CMD_INIT_WINDOW); - } - while (android_app->window != android_app->pendingWindow) { - pthread_cond_wait(&android_app->cond, &android_app->mutex); - } - pthread_mutex_unlock(&android_app->mutex); -} - -static void android_app_set_activity_state(struct android_app* android_app, int8_t cmd) { - pthread_mutex_lock(&android_app->mutex); - android_app_write_cmd(android_app, cmd); - while (android_app->activityState != cmd) { - pthread_cond_wait(&android_app->cond, &android_app->mutex); - } - pthread_mutex_unlock(&android_app->mutex); -} - -static void android_app_free(struct android_app* android_app) { - pthread_mutex_lock(&android_app->mutex); - android_app_write_cmd(android_app, APP_CMD_DESTROY); - while (!android_app->destroyed) { - pthread_cond_wait(&android_app->cond, &android_app->mutex); - } - pthread_mutex_unlock(&android_app->mutex); - - close(android_app->msgread); - close(android_app->msgwrite); - pthread_cond_destroy(&android_app->cond); - pthread_mutex_destroy(&android_app->mutex); - free(android_app); -} - -static void onDestroy(ANativeActivity* activity) { - LOGV("Destroy: %p\n", activity); - android_app_free((struct android_app*)activity->instance); -} - -static void onStart(ANativeActivity* activity) { - LOGV("Start: %p\n", activity); - android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_START); -} - -static void onResume(ANativeActivity* activity) { - LOGV("Resume: %p\n", activity); - android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_RESUME); -} - -static void* onSaveInstanceState(ANativeActivity* activity, size_t* outLen) { - struct android_app* android_app = (struct android_app*)activity->instance; - void* savedState = NULL; - - LOGV("SaveInstanceState: %p\n", activity); - pthread_mutex_lock(&android_app->mutex); - android_app->stateSaved = 0; - android_app_write_cmd(android_app, APP_CMD_SAVE_STATE); - while (!android_app->stateSaved) { - pthread_cond_wait(&android_app->cond, &android_app->mutex); - } - - if (android_app->savedState != NULL) { - savedState = android_app->savedState; - *outLen = android_app->savedStateSize; - android_app->savedState = NULL; - android_app->savedStateSize = 0; - } - - pthread_mutex_unlock(&android_app->mutex); - - return savedState; -} - -static void onPause(ANativeActivity* activity) { - LOGV("Pause: %p\n", activity); - android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_PAUSE); -} - -static void onStop(ANativeActivity* activity) { - LOGV("Stop: %p\n", activity); - android_app_set_activity_state((struct android_app*)activity->instance, APP_CMD_STOP); -} - -static void onConfigurationChanged(ANativeActivity* activity) { - struct android_app* android_app = (struct android_app*)activity->instance; - LOGV("ConfigurationChanged: %p\n", activity); - android_app_write_cmd(android_app, APP_CMD_CONFIG_CHANGED); -} - -static void onLowMemory(ANativeActivity* activity) { - struct android_app* android_app = (struct android_app*)activity->instance; - LOGV("LowMemory: %p\n", activity); - android_app_write_cmd(android_app, APP_CMD_LOW_MEMORY); -} - -static void onWindowFocusChanged(ANativeActivity* activity, int focused) { - LOGV("WindowFocusChanged: %p -- %d\n", activity, focused); - android_app_write_cmd((struct android_app*)activity->instance, - focused ? APP_CMD_GAINED_FOCUS : APP_CMD_LOST_FOCUS); -} - -static void onNativeWindowCreated(ANativeActivity* activity, ANativeWindow* window) { - LOGV("NativeWindowCreated: %p -- %p\n", activity, window); - android_app_set_window((struct android_app*)activity->instance, window); -} - -static void onNativeWindowDestroyed(ANativeActivity* activity, ANativeWindow* window) { - LOGV("NativeWindowDestroyed: %p -- %p\n", activity, window); - android_app_set_window((struct android_app*)activity->instance, NULL); -} - -static void onInputQueueCreated(ANativeActivity* activity, AInputQueue* queue) { - LOGV("InputQueueCreated: %p -- %p\n", activity, queue); - android_app_set_input((struct android_app*)activity->instance, queue); -} - -static void onInputQueueDestroyed(ANativeActivity* activity, AInputQueue* queue) { - LOGV("InputQueueDestroyed: %p -- %p\n", activity, queue); - android_app_set_input((struct android_app*)activity->instance, NULL); -} - -void ANativeActivity_onCreate(ANativeActivity* activity, - void* savedState, size_t savedStateSize) { - LOGV("Creating: %p\n", activity); - activity->callbacks->onDestroy = onDestroy; - activity->callbacks->onStart = onStart; - activity->callbacks->onResume = onResume; - activity->callbacks->onSaveInstanceState = onSaveInstanceState; - activity->callbacks->onPause = onPause; - activity->callbacks->onStop = onStop; - activity->callbacks->onConfigurationChanged = onConfigurationChanged; - activity->callbacks->onLowMemory = onLowMemory; - activity->callbacks->onWindowFocusChanged = onWindowFocusChanged; - activity->callbacks->onNativeWindowCreated = onNativeWindowCreated; - activity->callbacks->onNativeWindowDestroyed = onNativeWindowDestroyed; - activity->callbacks->onInputQueueCreated = onInputQueueCreated; - activity->callbacks->onInputQueueDestroyed = onInputQueueDestroyed; - - activity->instance = android_app_create(activity, savedState, savedStateSize); -} diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/android_native_app_glue.h b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/android_native_app_glue.h deleted file mode 100644 index 1b390c2d46..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/android_native_app_glue.h +++ /dev/null @@ -1,344 +0,0 @@ -/* - * Copyright (C) 2010 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -#ifndef _ANDROID_NATIVE_APP_GLUE_H -#define _ANDROID_NATIVE_APP_GLUE_H - -#include -#include -#include - -#include -#include -#include - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * The native activity interface provided by - * is based on a set of application-provided callbacks that will be called - * by the Activity's main thread when certain events occur. - * - * This means that each one of this callbacks _should_ _not_ block, or they - * risk having the system force-close the application. This programming - * model is direct, lightweight, but constraining. - * - * The 'threaded_native_app' static library is used to provide a different - * execution model where the application can implement its own main event - * loop in a different thread instead. Here's how it works: - * - * 1/ The application must provide a function named "android_main()" that - * will be called when the activity is created, in a new thread that is - * distinct from the activity's main thread. - * - * 2/ android_main() receives a pointer to a valid "android_app" structure - * that contains references to other important objects, e.g. the - * ANativeActivity obejct instance the application is running in. - * - * 3/ the "android_app" object holds an ALooper instance that already - * listens to two important things: - * - * - activity lifecycle events (e.g. "pause", "resume"). See APP_CMD_XXX - * declarations below. - * - * - input events coming from the AInputQueue attached to the activity. - * - * Each of these correspond to an ALooper identifier returned by - * ALooper_pollOnce with values of LOOPER_ID_MAIN and LOOPER_ID_INPUT, - * respectively. - * - * Your application can use the same ALooper to listen to additional - * file-descriptors. They can either be callback based, or with return - * identifiers starting with LOOPER_ID_USER. - * - * 4/ Whenever you receive a LOOPER_ID_MAIN or LOOPER_ID_INPUT event, - * the returned data will point to an android_poll_source structure. You - * can call the process() function on it, and fill in android_app->onAppCmd - * and android_app->onInputEvent to be called for your own processing - * of the event. - * - * Alternatively, you can call the low-level functions to read and process - * the data directly... look at the process_cmd() and process_input() - * implementations in the glue to see how to do this. - * - * See the sample named "native-activity" that comes with the NDK with a - * full usage example. Also look at the JavaDoc of NativeActivity. - */ - -struct android_app; - -/** - * Data associated with an ALooper fd that will be returned as the "outData" - * when that source has data ready. - */ -struct android_poll_source { - // The identifier of this source. May be LOOPER_ID_MAIN or - // LOOPER_ID_INPUT. - int32_t id; - - // The android_app this ident is associated with. - struct android_app* app; - - // Function to call to perform the standard processing of data from - // this source. - void (*process)(struct android_app* app, struct android_poll_source* source); -}; - -/** - * This is the interface for the standard glue code of a threaded - * application. In this model, the application's code is running - * in its own thread separate from the main thread of the process. - * It is not required that this thread be associated with the Java - * VM, although it will need to be in order to make JNI calls any - * Java objects. - */ -struct android_app { - // The application can place a pointer to its own state object - // here if it likes. - void* userData; - - // Fill this in with the function to process main app commands (APP_CMD_*) - void (*onAppCmd)(struct android_app* app, int32_t cmd); - - // Fill this in with the function to process input events. At this point - // the event has already been pre-dispatched, and it will be finished upon - // return. Return 1 if you have handled the event, 0 for any default - // dispatching. - int32_t (*onInputEvent)(struct android_app* app, AInputEvent* event); - - // The ANativeActivity object instance that this app is running in. - ANativeActivity* activity; - - // The current configuration the app is running in. - AConfiguration* config; - - // This is the last instance's saved state, as provided at creation time. - // It is NULL if there was no state. You can use this as you need; the - // memory will remain around until you call android_app_exec_cmd() for - // APP_CMD_RESUME, at which point it will be freed and savedState set to NULL. - // These variables should only be changed when processing a APP_CMD_SAVE_STATE, - // at which point they will be initialized to NULL and you can malloc your - // state and place the information here. In that case the memory will be - // freed for you later. - void* savedState; - size_t savedStateSize; - - // The ALooper associated with the app's thread. - ALooper* looper; - - // When non-NULL, this is the input queue from which the app will - // receive user input events. - AInputQueue* inputQueue; - - // When non-NULL, this is the window surface that the app can draw in. - ANativeWindow* window; - - // Current content rectangle of the window; this is the area where the - // window's content should be placed to be seen by the user. - ARect contentRect; - - // Current state of the app's activity. May be either APP_CMD_START, - // APP_CMD_RESUME, APP_CMD_PAUSE, or APP_CMD_STOP; see below. - int activityState; - - // This is non-zero when the application's NativeActivity is being - // destroyed and waiting for the app thread to complete. - int destroyRequested; - - // ------------------------------------------------- - // Below are "private" implementation of the glue code. - - pthread_mutex_t mutex; - pthread_cond_t cond; - - int msgread; - int msgwrite; - - pthread_t thread; - - struct android_poll_source cmdPollSource; - struct android_poll_source inputPollSource; - - int running; - int stateSaved; - int destroyed; - int redrawNeeded; - AInputQueue* pendingInputQueue; - ANativeWindow* pendingWindow; - ARect pendingContentRect; -}; - -enum { - /** - * Looper data ID of commands coming from the app's main thread, which - * is returned as an identifier from ALooper_pollOnce(). The data for this - * identifier is a pointer to an android_poll_source structure. - * These can be retrieved and processed with android_app_read_cmd() - * and android_app_exec_cmd(). - */ - LOOPER_ID_MAIN = 1, - - /** - * Looper data ID of events coming from the AInputQueue of the - * application's window, which is returned as an identifier from - * ALooper_pollOnce(). The data for this identifier is a pointer to an - * android_poll_source structure. These can be read via the inputQueue - * object of android_app. - */ - LOOPER_ID_INPUT = 2, - - /** - * Start of user-defined ALooper identifiers. - */ - LOOPER_ID_USER = 3, -}; - -enum { - /** - * Command from main thread: the AInputQueue has changed. Upon processing - * this command, android_app->inputQueue will be updated to the new queue - * (or NULL). - */ - APP_CMD_INPUT_CHANGED, - - /** - * Command from main thread: a new ANativeWindow is ready for use. Upon - * receiving this command, android_app->window will contain the new window - * surface. - */ - APP_CMD_INIT_WINDOW, - - /** - * Command from main thread: the existing ANativeWindow needs to be - * terminated. Upon receiving this command, android_app->window still - * contains the existing window; after calling android_app_exec_cmd - * it will be set to NULL. - */ - APP_CMD_TERM_WINDOW, - - /** - * Command from main thread: the current ANativeWindow has been resized. - * Please redraw with its new size. - */ - APP_CMD_WINDOW_RESIZED, - - /** - * Command from main thread: the system needs that the current ANativeWindow - * be redrawn. You should redraw the window before handing this to - * android_app_exec_cmd() in order to avoid transient drawing glitches. - */ - APP_CMD_WINDOW_REDRAW_NEEDED, - - /** - * Command from main thread: the content area of the window has changed, - * such as from the soft input window being shown or hidden. You can - * find the new content rect in android_app::contentRect. - */ - APP_CMD_CONTENT_RECT_CHANGED, - - /** - * Command from main thread: the app's activity window has gained - * input focus. - */ - APP_CMD_GAINED_FOCUS, - - /** - * Command from main thread: the app's activity window has lost - * input focus. - */ - APP_CMD_LOST_FOCUS, - - /** - * Command from main thread: the current device configuration has changed. - */ - APP_CMD_CONFIG_CHANGED, - - /** - * Command from main thread: the system is running low on memory. - * Try to reduce your memory use. - */ - APP_CMD_LOW_MEMORY, - - /** - * Command from main thread: the app's activity has been started. - */ - APP_CMD_START, - - /** - * Command from main thread: the app's activity has been resumed. - */ - APP_CMD_RESUME, - - /** - * Command from main thread: the app should generate a new saved state - * for itself, to restore from later if needed. If you have saved state, - * allocate it with malloc and place it in android_app.savedState with - * the size in android_app.savedStateSize. The will be freed for you - * later. - */ - APP_CMD_SAVE_STATE, - - /** - * Command from main thread: the app's activity has been paused. - */ - APP_CMD_PAUSE, - - /** - * Command from main thread: the app's activity has been stopped. - */ - APP_CMD_STOP, - - /** - * Command from main thread: the app's activity is being destroyed, - * and waiting for the app thread to clean up and exit before proceeding. - */ - APP_CMD_DESTROY, -}; - -/** - * Call when ALooper_pollAll() returns LOOPER_ID_MAIN, reading the next - * app command message. - */ -int8_t android_app_read_cmd(struct android_app* android_app); - -/** - * Call with the command returned by android_app_read_cmd() to do the - * initial pre-processing of the given command. You can perform your own - * actions for the command after calling this function. - */ -void android_app_pre_exec_cmd(struct android_app* android_app, int8_t cmd); - -/** - * Call with the command returned by android_app_read_cmd() to do the - * final post-processing of the given command. You must have done your own - * actions for the command before calling this function. - */ -void android_app_post_exec_cmd(struct android_app* android_app, int8_t cmd); - -/** - * This is the function that application code must implement, representing - * the main entry to the app. - */ -extern void android_main(struct android_app* app); - -#ifdef __cplusplus -} -#endif - -#endif /* _ANDROID_NATIVE_APP_GLUE_H */ diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/main.cpp b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/main.cpp deleted file mode 100644 index d6333e1fd5..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/main.cpp +++ /dev/null @@ -1,437 +0,0 @@ -/* -* Copyright (C) 2010 The Android Open Source Project -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -*/ - -#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "AndroidProject1.NativeActivity", __VA_ARGS__)) -#define LOGW(...) ((void)__android_log_print(ANDROID_LOG_WARN, "AndroidProject1.NativeActivity", __VA_ARGS__)) - -/** -* Our saved state data. -*/ -struct saved_state { - float angle; - int32_t x; - int32_t y; -}; - -/** -* Shared state for our app. -*/ -struct engine { - struct android_app* app; - - ASensorManager* sensorManager; - const ASensor* accelerometerSensor; - ASensorEventQueue* sensorEventQueue; - - int animating; - EGLDisplay display; - EGLSurface surface; - EGLContext context; - int32_t width; - int32_t height; - struct saved_state state; -}; - -/** -* Initialize an EGL context for the current display. -*/ -static int engine_init_display(struct engine* engine) { - // initialize OpenGL ES and EGL - - /* - * Here specify the attributes of the desired configuration. - * Below, we select an EGLConfig with at least 8 bits per color - * component compatible with on-screen windows - */ - const EGLint attribs[] = { - EGL_SURFACE_TYPE, EGL_WINDOW_BIT, - EGL_BLUE_SIZE, 8, - EGL_GREEN_SIZE, 8, - EGL_RED_SIZE, 8, - EGL_NONE - }; - EGLint w, h, format; - EGLint numConfigs; - EGLConfig config; - EGLSurface surface; - EGLContext context; - - EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY); - - eglInitialize(display, 0, 0); - - /* Here, the application chooses the configuration it desires. In this - * sample, we have a very simplified selection process, where we pick - * the first EGLConfig that matches our criteria */ - eglChooseConfig(display, attribs, &config, 1, &numConfigs); - - /* EGL_NATIVE_VISUAL_ID is an attribute of the EGLConfig that is - * guaranteed to be accepted by ANativeWindow_setBuffersGeometry(). - * As soon as we picked a EGLConfig, we can safely reconfigure the - * ANativeWindow buffers to match, using EGL_NATIVE_VISUAL_ID. */ - eglGetConfigAttrib(display, config, EGL_NATIVE_VISUAL_ID, &format); - - ANativeWindow_setBuffersGeometry(engine->app->window, 0, 0, format); - - surface = eglCreateWindowSurface(display, config, engine->app->window, NULL); - context = eglCreateContext(display, config, NULL, NULL); - - if (eglMakeCurrent(display, surface, surface, context) == EGL_FALSE) { - LOGW("Unable to eglMakeCurrent"); - return -1; - } - - eglQuerySurface(display, surface, EGL_WIDTH, &w); - eglQuerySurface(display, surface, EGL_HEIGHT, &h); - - engine->display = display; - engine->context = context; - engine->surface = surface; - engine->width = w; - engine->height = h; - engine->state.angle = 0; - - // Initialize GL state. - glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_FASTEST); - glEnable(GL_CULL_FACE); - glShadeModel(GL_SMOOTH); - glDisable(GL_DEPTH_TEST); - - return 0; -} - -/** -* Just the current frame in the display. -*/ -static void engine_draw_frame(struct engine* engine) { - if (engine->display == NULL) { - // No display. - return; - } - - // Just fill the screen with a color. - glClearColor(((float)engine->state.x) / engine->width, engine->state.angle, - ((float)engine->state.y) / engine->height, 1); - glClear(GL_COLOR_BUFFER_BIT); - - eglSwapBuffers(engine->display, engine->surface); -} - -/** -* Tear down the EGL context currently associated with the display. -*/ -static void engine_term_display(struct engine* engine) { - if (engine->display != EGL_NO_DISPLAY) { - eglMakeCurrent(engine->display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); - if (engine->context != EGL_NO_CONTEXT) { - eglDestroyContext(engine->display, engine->context); - } - if (engine->surface != EGL_NO_SURFACE) { - eglDestroySurface(engine->display, engine->surface); - } - eglTerminate(engine->display); - } - engine->animating = 0; - engine->display = EGL_NO_DISPLAY; - engine->context = EGL_NO_CONTEXT; - engine->surface = EGL_NO_SURFACE; -} - -/** -* Process the next input event. -*/ -static int32_t engine_handle_input(struct android_app* app, AInputEvent* event) { - struct engine* engine = (struct engine*)app->userData; - if (AInputEvent_getType(event) == AINPUT_EVENT_TYPE_MOTION) { - engine->state.x = AMotionEvent_getX(event, 0); - engine->state.y = AMotionEvent_getY(event, 0); - return 1; - } - return 0; -} - -/** -* Process the next main command. -*/ -static void engine_handle_cmd(struct android_app* app, int32_t cmd) { - struct engine* engine = (struct engine*)app->userData; - switch (cmd) { - case APP_CMD_SAVE_STATE: - // The system has asked us to save our current state. Do so. - engine->app->savedState = malloc(sizeof(struct saved_state)); - *((struct saved_state*)engine->app->savedState) = engine->state; - engine->app->savedStateSize = sizeof(struct saved_state); - break; - case APP_CMD_INIT_WINDOW: - // The window is being shown, get it ready. - if (engine->app->window != NULL) { - engine_init_display(engine); - engine_draw_frame(engine); - } - break; - case APP_CMD_TERM_WINDOW: - // The window is being hidden or closed, clean it up. - engine_term_display(engine); - break; - case APP_CMD_GAINED_FOCUS: - // When our app gains focus, we start monitoring the accelerometer. - if (engine->accelerometerSensor != NULL) { - ASensorEventQueue_enableSensor(engine->sensorEventQueue, - engine->accelerometerSensor); - // We'd like to get 60 events per second (in us). - ASensorEventQueue_setEventRate(engine->sensorEventQueue, - engine->accelerometerSensor, (1000L / 60) * 1000); - } - break; - case APP_CMD_LOST_FOCUS: - // When our app loses focus, we stop monitoring the accelerometer. - // This is to avoid consuming battery while not being used. - if (engine->accelerometerSensor != NULL) { - ASensorEventQueue_disableSensor(engine->sensorEventQueue, - engine->accelerometerSensor); - } - // Also stop animating. - engine->animating = 0; - engine_draw_frame(engine); - break; - } -} - -#include -#include -#include -#include -#include -#include -#include "unittestpp.h" -#include "src/TestReporter.h" -#include "src/TestDetails.h" -#include -#include -#include - -void printLn(const std::string& s) { - __android_log_print(ANDROID_LOG_WARN, "UnitTestpp", "%s", s.c_str()); -} - -struct MyTestReporter : UnitTest::TestReporter { - UNITTEST_LINKAGE virtual void ReportTestStart(UnitTest::TestDetails const& test) { - std::stringstream ss; - ss << test.suiteName << ":" << test.testName << ": Start."; - printLn(ss.str()); - } - UNITTEST_LINKAGE virtual void ReportFailure(UnitTest::TestDetails const& test, char const* failure) { - std::stringstream ss; - ss << test.suiteName << ":" << test.testName << ": " << failure; - printLn(ss.str()); - } - UNITTEST_LINKAGE virtual void ReportTestFinish(UnitTest::TestDetails const& test, bool passed, float secondsElapsed) { - if (!passed) { - std::stringstream ss; - ss << test.suiteName << ":" << test.testName << ": Failed. Seconds: " << secondsElapsed; - printLn(ss.str()); - } - } - UNITTEST_LINKAGE virtual void ReportSummary(int totalTestCount, int failedTestCount, int failureCount, float secondsElapsed) { - std::stringstream ss; - ss << "Tests complete. Total: " << totalTestCount << ", Failed: " << failedTestCount << ", Time: " << secondsElapsed; - printLn(ss.str()); - // Print a bunch of messages to defeat any batching that may be applied by adb or logcat - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - printLn("--- Flush buffer ---"); - } - UNITTEST_LINKAGE virtual void print(const std::string& s) { - printLn(s); - } -}; - -static std::string to_lower(const std::string &str) -{ - std::string lower; - for (auto iter = str.begin(); iter != str.end(); ++iter) - { - lower.push_back((char)tolower(*iter)); - } - return lower; -} - -bool matched_properties(UnitTest::TestProperties const& test_props) { - if (test_props.Has("Requires")) { - std::string const requires = test_props.Get("Requires"); - std::vector requirements; - - // Can be multiple requirements, a semi colon seperated list - std::string::size_type pos = requires.find_first_of(';'); - std::string::size_type last_pos = 0; - while (pos != std::string::npos) - { - requirements.push_back(requires.substr(last_pos, pos - last_pos)); - last_pos = pos + 1; - pos = requires.find_first_of(';', last_pos); - } - requirements.push_back(requires.substr(last_pos)); - for (auto iter = requirements.begin(); iter != requirements.end(); ++iter) - { - if (!UnitTest::GlobalSettings::Has(to_lower(*iter))) - { - return false; - } - } - } - return true; -} - -bool should_run_test(UnitTest::Test *pTest) -{ - if (pTest->m_properties.Has("Ignore")) return false; - if (pTest->m_properties.Has("Ignore:Linux")) return false; - if (pTest->m_properties.Has("Ignore:Android")) return false; - if (matched_properties(pTest->m_properties)) { - return true; - } - return false; -} - -void* RunTests() { - UnitTest::TestList& tests = UnitTest::GetTestList(); - - MyTestReporter mtr; - - // Do work - UnitTest::TestRunner testrunner(mtr, false); - testrunner.RunTestsIf(tests, - [](UnitTest::Test *pTest) -> bool - { - if (should_run_test(pTest)) - return true; - auto& test = pTest->m_details; - std::stringstream ss; - ss << test.suiteName << ":" << test.testName << ": Skipped."; - printLn(ss.str()); - return false; - }, 0); - - return nullptr; -} - -/** -* This is the main entry point of a native application that is using -* android_native_app_glue. It runs in its own thread, with its own -* event loop for receiving input events and doing other things. -*/ -void android_main(struct android_app* state) { - struct engine engine; - - cpprest_init(state->activity->vm); - - // Begin change path to temp dir - jobject nAct = state->activity->clazz; - auto env = crossplat::get_jvm_env(); - - auto contextClass = env->FindClass("android/content/Context"); - auto getCacheDir = env->GetMethodID(contextClass, "getCacheDir", "()Ljava/io/File;"); - - auto fileClass = env->FindClass("java/io/File"); - auto getPath = env->GetMethodID(fileClass, "getPath", "()Ljava/lang/String;"); - - auto cacheDir = env->CallObjectMethod(nAct, getCacheDir); - jstring cacheDirPath = (jstring)env->CallObjectMethod(cacheDir, getPath); - auto st = env->GetStringUTFChars(cacheDirPath, nullptr); - chdir(st); - env->ReleaseStringUTFChars(cacheDirPath, st); - // End change path to temp dir - - RunTests(); - - memset(&engine, 0, sizeof(engine)); - state->userData = &engine; - state->onAppCmd = engine_handle_cmd; - state->onInputEvent = engine_handle_input; - engine.app = state; - - // Prepare to monitor accelerometer - engine.sensorManager = ASensorManager_getInstance(); - engine.accelerometerSensor = ASensorManager_getDefaultSensor(engine.sensorManager, - ASENSOR_TYPE_ACCELEROMETER); - engine.sensorEventQueue = ASensorManager_createEventQueue(engine.sensorManager, - state->looper, LOOPER_ID_USER, NULL, NULL); - - if (state->savedState != NULL) { - // We are starting with a previous saved state; restore from it. - engine.state = *(struct saved_state*)state->savedState; - } - - engine.animating = 1; - - // loop waiting for stuff to do. - - while (1) { - // Read all pending events. - int ident; - int events; - struct android_poll_source* source; - - // If not animating, we will block forever waiting for events. - // If animating, we loop until all events are read, then continue - // to draw the next frame of animation. - while ((ident = ALooper_pollAll(engine.animating ? 0 : -1, NULL, &events, - (void**)&source)) >= 0) { - - // Process this event. - if (source != NULL) { - source->process(state, source); - } - - // Check if we are exiting. - if (state->destroyRequested != 0) { - engine_term_display(&engine); - return; - } - } - - if (engine.animating) { - // Done with events; draw next animation frame. - engine.state.angle += .01f; - if (engine.state.angle > 1) { - engine.state.angle = 0; - } - - // Drawing is throttled to the screen update rate, so there - // is no need to do timing here. - engine_draw_frame(&engine); - } - } -} diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/packages.config b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/packages.config deleted file mode 100644 index c99b35a84e..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/packages.config +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/pch.h b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/pch.h deleted file mode 100644 index 5bf4b11366..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.NativeActivity/pch.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// pch.h -// Header for standard system include files. -// -// Used by the build system to generate the precompiled header. Note that no -// pch.cpp is needed and the pch.h is automatically included in all cpp files -// that are part of the project -// - -#include -#include - -#include -#include -#include - -#include -#include - -#include - -#include -#include "android_native_app_glue.h" diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/AndroidManifest.xml b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/AndroidManifest.xml deleted file mode 100644 index 711b77cda6..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/AndroidManifest.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/TestRunner.android.Packaging.androidproj b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/TestRunner.android.Packaging.androidproj deleted file mode 100644 index d4e2b5fcc6..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/TestRunner.android.Packaging.androidproj +++ /dev/null @@ -1,84 +0,0 @@ - - - - - Debug - ARM - - - Release - ARM - - - Debug - x86 - - - Release - x86 - - - - TestRunner_android - 14.0 - 1.0 - {7cf3c460-3486-4106-80cd-eb802dfef373} - - - - true - - - false - - - true - - - false - - - - - - - - TestRunner_android - - - - - TestRunner_android - - - - - TestRunner_android - - - - - TestRunner_android - - - - - - - - - - - - {d1060d0a-a10e-444d-9f6b-9676ea453f9a} - - - - - - - - - - - diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/build.xml b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/build.xml deleted file mode 100644 index 3b9c329d4a..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/build.xml +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/project.properties b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/project.properties deleted file mode 100644 index e613b43798..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/project.properties +++ /dev/null @@ -1,2 +0,0 @@ -# Project target -target=$(androidapilevel) diff --git a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/res/values/strings.xml b/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/res/values/strings.xml deleted file mode 100644 index 31108df64d..0000000000 --- a/Release/tests/common/TestRunner/vs14.android/TestRunner.android.Packaging/res/values/strings.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - TestRunner.android.Packaging - diff --git a/Release/tests/common/TestRunner/vs14.uwp/TestRunner140.uwp.vcxproj b/Release/tests/common/TestRunner/vs14.uwp/TestRunner140.uwp.vcxproj deleted file mode 100644 index 231344b499..0000000000 --- a/Release/tests/common/TestRunner/vs14.uwp/TestRunner140.uwp.vcxproj +++ /dev/null @@ -1,118 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {5E421824-72D7-4482-A161-8D7D02308E52} - Win32Proj - SAK - SAK - SAK - SAK - 14.0 - v140 - Unicode - Application - - - - true - - - false - true - - - false - true - - - false - true - - - - - - - - - - - TestRunner.winrt - - - - - NotUsing - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - WINRT_TEST_RUNNER;WIN32;_CONSOLE;%(PreprocessorDefinitions) - false - - - Console - $(OutDir);%(AdditionalLibraryDirectories) - true - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - - - - - - - - - - - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - - - - diff --git a/Release/tests/common/TestRunner/vs14.uwp/TestRunner140.uwp.vcxproj.filters b/Release/tests/common/TestRunner/vs14.uwp/TestRunner140.uwp.vcxproj.filters deleted file mode 100644 index f9fa6c25ca..0000000000 --- a/Release/tests/common/TestRunner/vs14.uwp/TestRunner140.uwp.vcxproj.filters +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Source Files - - - Source Files - - - - - {5e4d32c8-a472-4388-b880-920a7a546fa3} - - - {f05a925c-282c-4424-ae9a-10fe7f88fe47} - - - - - Header Files - - - \ No newline at end of file diff --git a/Release/tests/common/TestRunner/vs14/TestRunner140.vcxproj b/Release/tests/common/TestRunner/vs14/TestRunner140.vcxproj deleted file mode 100644 index e14b9ab7e0..0000000000 --- a/Release/tests/common/TestRunner/vs14/TestRunner140.vcxproj +++ /dev/null @@ -1,248 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {6490C580-DD4A-4F2D-A345-732C5148349F} - Win32Proj - TestRunner - $(VCTargetsPath12) - SAK - SAK - SAK - SAK - - - - Application - true - Unicode - v140 - - - Application - true - Unicode - v140 - - - Application - true - Unicode - v140 - - - Application - false - true - Unicode - v140 - - - Application - false - true - Unicode - v140 - - - Application - false - true - Unicode - v140 - - - - - - - - - - - - - - - - - - - - - - - TestRunner - - - TestRunner - - - TestRunner - - - false - TestRunner - - - false - TestRunner - - - false - TestRunner - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - NotUsing - Disabled - DESKTOP_TEST_RUNNER;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - - - $(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - false - - - Console - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - NotUsing - Disabled - DESKTOP_TEST_RUNNER;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - - - $(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - false - - - Console - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - NotUsing - Disabled - DESKTOP_TEST_RUNNER;WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - - - $(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - false - - - Console - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - NotUsing - MaxSpeed - true - true - DESKTOP_TEST_RUNNER;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - - - $(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - false - - - Console - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - NotUsing - MaxSpeed - true - true - DESKTOP_TEST_RUNNER;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - - - $(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - false - - - Console - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - NotUsing - MaxSpeed - true - true - DESKTOP_TEST_RUNNER;WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - - - $(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - false - - - Console - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - - {3eb86c0d-432c-4ffc-bad4-8df4efc7d0ff} - - - - - - \ No newline at end of file diff --git a/Release/tests/common/TestRunner/vs14/TestRunner140.vcxproj.filters b/Release/tests/common/TestRunner/vs14/TestRunner140.vcxproj.filters deleted file mode 100644 index f9fa6c25ca..0000000000 --- a/Release/tests/common/TestRunner/vs14/TestRunner140.vcxproj.filters +++ /dev/null @@ -1,24 +0,0 @@ - - - - - Source Files - - - Source Files - - - - - {5e4d32c8-a472-4388-b880-920a7a546fa3} - - - {f05a925c-282c-4424-ae9a-10fe7f88fe47} - - - - - Header Files - - - \ No newline at end of file diff --git a/Release/tests/common/UnitTestpp/vs14.android/UnitTestpp140.android.vcxproj b/Release/tests/common/UnitTestpp/vs14.android/UnitTestpp140.android.vcxproj deleted file mode 100644 index c7b52f072b..0000000000 --- a/Release/tests/common/UnitTestpp/vs14.android/UnitTestpp140.android.vcxproj +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - - - - - - - - {afb49019-965b-4c10-baff-c86c16d58010} - false - false - false - false - false - - - - {3EFD8540-A54D-4900-887E-F856162535A0} - Android - Android - 2.0 - UnitTestpp140.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - UnitTestpp140.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/common/UnitTestpp/vs14.android/UnitTestpp140.android.vcxproj.filters b/Release/tests/common/UnitTestpp/vs14.android/UnitTestpp140.android.vcxproj.filters deleted file mode 100644 index eccc1b629f..0000000000 --- a/Release/tests/common/UnitTestpp/vs14.android/UnitTestpp140.android.vcxproj.filters +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - - {99f8e13d-e0d8-4917-83d5-6658b4a57e8e} - - - {40c405e2-9304-484c-b23b-441e611abff6} - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/tests/common/UnitTestpp/vs14.uwp/UnitTestpp140.uwp.vcxproj b/Release/tests/common/UnitTestpp/vs14.uwp/UnitTestpp140.uwp.vcxproj deleted file mode 100644 index 01a4ef1b5d..0000000000 --- a/Release/tests/common/UnitTestpp/vs14.uwp/UnitTestpp140.uwp.vcxproj +++ /dev/null @@ -1,208 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - Win32Proj - UnitTest - SAK - SAK - SAK - SAK - 14.0 - Windows Store - 10.0.10240.0 - 10.0.10240.0 - 10.0 - - - - DynamicLibrary - Unicode - v140 - - - true - - - false - true - - - - - - $(CasablancaIncludeDir);$(TestRoot)\Common\UnitTestpp\src\;%(AdditionalIncludeDirectories); - NotUsing - UNITTEST_DLL_EXPORT;WIN32;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - $(WindowsSdkDir)\UnionMetadata;$(VSInstallDir)\vc\vcpackages;$(AdditionalUsingDirectories) - true - false - stdafx.h - - - Windows - true - true - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - $(VCINSTALLDIR)\lib\store;%(AdditionalLibraryDirectories); - ucrtd.lib;vcruntimed.lib;vccorlibd.lib;msvcrtd.lib;msvcprtd.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - $(VCINSTALLDIR)\lib\store\arm;%(AdditionalLibraryDirectories); - ucrtd.lib;vcruntimed.lib;vccorlibd.lib;uuid.lib;ole32.lib;msvcrtd.lib;msvcprtd.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - $(VCINSTALLDIR)\lib\store\amd64;%(AdditionalLibraryDirectories); - ucrtd.lib;vcruntimed.lib;vccorlibd.lib;msvcrtd.lib;msvcprtd.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - $(VCINSTALLDIR)\lib\store;%(AdditionalLibraryDirectories); - ucrt.lib;vcruntime.lib;vccorlib.lib;msvcrt.lib;msvcprt.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - $(VCINSTALLDIR)\lib\store\arm;%(AdditionalLibraryDirectories); - ucrt.lib;vcruntime.lib;vccorlib.lib;uuid.lib;ole32.lib;msvcrt.lib;msvcprt.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - $(VCINSTALLDIR)\lib\store\amd64;%(AdditionalLibraryDirectories); - ucrt.lib;vcruntime.lib;vccorlib.lib;msvcrt.lib;msvcprt.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Release/tests/common/UnitTestpp/vs14.uwp/UnitTestpp140.uwp.vcxproj.filters b/Release/tests/common/UnitTestpp/vs14.uwp/UnitTestpp140.uwp.vcxproj.filters deleted file mode 100644 index 6fd73f9e3b..0000000000 --- a/Release/tests/common/UnitTestpp/vs14.uwp/UnitTestpp140.uwp.vcxproj.filters +++ /dev/null @@ -1,159 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - {640fb93d-0deb-4bc4-a035-5d44d5c2af4b} - - - {b883825b-c6c4-4545-806e-dfe105753ac8} - - - \ No newline at end of file diff --git a/Release/tests/common/UnitTestpp/vs14/TestUnitTestpp140.vcxproj b/Release/tests/common/UnitTestpp/vs14/TestUnitTestpp140.vcxproj deleted file mode 100644 index b1ccc17621..0000000000 --- a/Release/tests/common/UnitTestpp/vs14/TestUnitTestpp140.vcxproj +++ /dev/null @@ -1,202 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {E715BBE6-743D-47C2-8F43-92AA18F6ED19} - Win32Proj - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - TestUnitTestpp140 - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);%(AdditionalIncludeDirectories); - - - - - NotUsing - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - - - - - NotUsing - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - - - - - NotUsing - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - - - - - MaxSpeed - NotUsing - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - true - true - - - - - MaxSpeed - NotUsing - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - true - true - - - - - MaxSpeed - NotUsing - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - true - true - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - - - - \ No newline at end of file diff --git a/Release/tests/common/UnitTestpp/vs14/TestUnitTestpp140.vcxproj.filters b/Release/tests/common/UnitTestpp/vs14/TestUnitTestpp140.vcxproj.filters deleted file mode 100644 index 44e0743ad6..0000000000 --- a/Release/tests/common/UnitTestpp/vs14/TestUnitTestpp140.vcxproj.filters +++ /dev/null @@ -1,72 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - - - {420b7d9f-7900-40f3-8aa7-3c800278bc98} - - - {7ddca59d-156c-46f2-af93-4a03f915bbcb} - - - \ No newline at end of file diff --git a/Release/tests/common/UnitTestpp/vs14/UnitTestpp140.vcxproj b/Release/tests/common/UnitTestpp/vs14/UnitTestpp140.vcxproj deleted file mode 100644 index 3bd4978222..0000000000 --- a/Release/tests/common/UnitTestpp/vs14/UnitTestpp140.vcxproj +++ /dev/null @@ -1,228 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - Win32Proj - UnitTest - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - UnitTestpp140 - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(TestRoot)\Common\UnitTestpp\src\;%(AdditionalIncludeDirectories); - Use - - - - - NotUsing - Disabled - UNITTEST_DLL_EXPORT;WIN32;_DEBUG;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - - - - - NotUsing - Disabled - UNITTEST_DLL_EXPORT;WIN32;_DEBUG;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - - - - - NotUsing - Disabled - UNITTEST_DLL_EXPORT;WIN32;_DEBUG;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - - - - - MaxSpeed - NotUsing - true - true - UNITTEST_DLL_EXPORT;WIN32;NDEBUG;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - true - true - - - - - MaxSpeed - NotUsing - true - true - UNITTEST_DLL_EXPORT;WIN32;NDEBUG;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - true - true - - - - - MaxSpeed - NotUsing - true - true - UNITTEST_DLL_EXPORT;WIN32;NDEBUG;_USRDLL;_CRT_SECURE_NO_DEPRECATE;%(PreprocessorDefinitions) - - - Windows - true - true - true - - - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/common/UnitTestpp/vs14/UnitTestpp140.vcxproj.filters b/Release/tests/common/UnitTestpp/vs14/UnitTestpp140.vcxproj.filters deleted file mode 100644 index 6fd73f9e3b..0000000000 --- a/Release/tests/common/UnitTestpp/vs14/UnitTestpp140.vcxproj.filters +++ /dev/null @@ -1,159 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - {640fb93d-0deb-4bc4-a035-5d44d5c2af4b} - - - {b883825b-c6c4-4545-806e-dfe105753ac8} - - - \ No newline at end of file diff --git a/Release/tests/common/utilities/vs14.android/CommonUtilities140.android.vcxproj b/Release/tests/common/utilities/vs14.android/CommonUtilities140.android.vcxproj deleted file mode 100644 index 53592625d0..0000000000 --- a/Release/tests/common/utilities/vs14.android/CommonUtilities140.android.vcxproj +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - {3efd8540-a54d-4900-887e-f856162535a0} - - - - {7C4E6E33-42E2-4472-9319-DDE7564F3DAE} - Android - Android - 2.0 - CommonUtilities140.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - - - - d - - - CommonUtilities140.android - - - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/common/utilities/vs14.android/CommonUtilities140.android.vcxproj.filters b/Release/tests/common/utilities/vs14.android/CommonUtilities140.android.vcxproj.filters deleted file mode 100644 index 65f1bbe659..0000000000 --- a/Release/tests/common/utilities/vs14.android/CommonUtilities140.android.vcxproj.filters +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - {31a9e4f4-e463-4a16-afeb-4e08578514f0} - - - {0354a1e4-1028-4f71-ae58-465027fa590d} - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/tests/common/utilities/vs14.uwp/CommonUtilities140.uwp.vcxproj b/Release/tests/common/utilities/vs14.uwp/CommonUtilities140.uwp.vcxproj deleted file mode 100644 index 10b6ac1e01..0000000000 --- a/Release/tests/common/utilities/vs14.uwp/CommonUtilities140.uwp.vcxproj +++ /dev/null @@ -1,167 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - Win32Proj - CommonUtilities140 - SAK - SAK - SAK - SAK - en-US - 14.0 - 10.0.10240.0 - 10.0.10240.0 - Unicode - v140 - DynamicLibrary - true - - - - true - - - false - true - - - - - - - Use - WIN32;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir) - true - false - stdafx.h - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories); - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {5E421824-72D7-4482-A161-8D7D02308E52} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/Release/tests/common/utilities/vs14.uwp/CommonUtilities140.uwp.vcxproj.filters b/Release/tests/common/utilities/vs14.uwp/CommonUtilities140.uwp.vcxproj.filters deleted file mode 100644 index 1325242b47..0000000000 --- a/Release/tests/common/utilities/vs14.uwp/CommonUtilities140.uwp.vcxproj.filters +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - {24e13f0e-e0f6-4fe0-922a-5cf7cbe823f4} - - - {ef18a939-f1a3-4e9e-b93a-05826fbae7f6} - - - \ No newline at end of file diff --git a/Release/tests/common/utilities/vs14.xp/CommonUtilities140.xp.vcxproj b/Release/tests/common/utilities/vs14.xp/CommonUtilities140.xp.vcxproj deleted file mode 100644 index 202e5daf98..0000000000 --- a/Release/tests/common/utilities/vs14.xp/CommonUtilities140.xp.vcxproj +++ /dev/null @@ -1,150 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {5AD81270-B089-4E1B-8741-6486F39DE273} - Win32Proj - CommonUtilities140 - SAK - SAK - SAK - SAK - $(VCTargetsPath14) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Create - Create - Create - Create - - - - - - - - - - - {75885703-7f3d-4086-8e60-c60b9b126f7e} - - - {6490c580-dd4a-4f2d-a345-732c5148349f} - - - {3eb86c0d-432c-4ffc-bad4-8df4efc7d0ff} - - - - - - \ No newline at end of file diff --git a/Release/tests/common/utilities/vs14/CommonUtilities140.vcxproj b/Release/tests/common/utilities/vs14/CommonUtilities140.vcxproj deleted file mode 100644 index c5a179f24c..0000000000 --- a/Release/tests/common/utilities/vs14/CommonUtilities140.vcxproj +++ /dev/null @@ -1,200 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - Win32Proj - CommonUtilities120 - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - Advapi32.lib;kernel32.lib;user32.lib;%(AdditionalDependencies) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - Advapi32.lib;kernel32.lib;user32.lib;%(AdditionalDependencies) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONUTILITIES_EXPORTS;%(PreprocessorDefinitions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - {3eb86c0d-432c-4ffc-bad4-8df4efc7d0ff} - - - - - - \ No newline at end of file diff --git a/Release/tests/common/utilities/vs14/CommonUtilities140.vcxproj.filters b/Release/tests/common/utilities/vs14/CommonUtilities140.vcxproj.filters deleted file mode 100644 index 1325242b47..0000000000 --- a/Release/tests/common/utilities/vs14/CommonUtilities140.vcxproj.filters +++ /dev/null @@ -1,33 +0,0 @@ - - - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - {24e13f0e-e0f6-4fe0-922a-5cf7cbe823f4} - - - {ef18a939-f1a3-4e9e-b93a-05826fbae7f6} - - - \ No newline at end of file diff --git a/Release/tests/functional/http/client/vs14.android/HttpClient140_test.android.vcxproj b/Release/tests/functional/http/client/vs14.android/HttpClient140_test.android.vcxproj deleted file mode 100644 index 9d4978a9af..0000000000 --- a/Release/tests/functional/http/client/vs14.android/HttpClient140_test.android.vcxproj +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - - - - - {b444ee47-1340-4a74-820d-cdd55f9f22f7} - - - - {0EE481DA-A97F-4831-9119-C65EB2D7B4DA} - Android - Android - 2.0 - HttpClient140_test.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - HttpClient140_test.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/http/client/vs14.android/HttpClient140_test.android.vcxproj.filters b/Release/tests/functional/http/client/vs14.android/HttpClient140_test.android.vcxproj.filters deleted file mode 100644 index 832cc001c1..0000000000 --- a/Release/tests/functional/http/client/vs14.android/HttpClient140_test.android.vcxproj.filters +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - {2102c5c5-ec68-4b17-a463-475af72c31aa} - - - {2e4123cf-9aa6-4269-93d6-4a24f7eb2af0} - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/Release/tests/functional/http/client/vs14.android/packages.config b/Release/tests/functional/http/client/vs14.android/packages.config deleted file mode 100644 index 4bd0fd80ad..0000000000 --- a/Release/tests/functional/http/client/vs14.android/packages.config +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Release/tests/functional/http/client/vs14.uwp/HttpClient140_test.uwp.vcxproj b/Release/tests/functional/http/client/vs14.uwp/HttpClient140_test.uwp.vcxproj deleted file mode 100644 index 704e677f5a..0000000000 --- a/Release/tests/functional/http/client/vs14.uwp/HttpClient140_test.uwp.vcxproj +++ /dev/null @@ -1,153 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {E1E5C85C-9C98-49FC-A645-C1368E981940} - HttpTests - SAK - SAK - SAK - SAK - en-US - Windows Store - 14.0 - true - Unicode - v140 - DynamicLibrary - 10.0.10240.0 - 10.0.10240.0 - - - - true - - - false - true - - - - - - - Use - $(CasablancaIncludeDir);$(CommonTestIncludeDir);..\..\utilities\include;%(AdditionalIncludeDirectories) - WIN32;_USRDLL;%(PreprocessorDefinitions) - true - false - stdafx.h - -Zm350 /bigobj%(AdditionalOptions) - - - Windows - true - CommonUtilities140.uwp.lib;%(AdditionalDependencies) - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - - - - - {039BA657-296A-4E11-8E37-948A5919F0B8} - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - - - - - diff --git a/Release/tests/functional/http/client/vs14.uwp/HttpClient140_test.uwp.vcxproj.filters b/Release/tests/functional/http/client/vs14.uwp/HttpClient140_test.uwp.vcxproj.filters deleted file mode 100644 index a8536ce996..0000000000 --- a/Release/tests/functional/http/client/vs14.uwp/HttpClient140_test.uwp.vcxproj.filters +++ /dev/null @@ -1,87 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - - - {fadb7f38-3d0c-4a31-af39-6364be0d9793} - - - {ee68ca67-bbcf-4196-89c7-fbf59083ac16} - - - \ No newline at end of file diff --git a/Release/tests/functional/http/client/vs14/HttpClient140_test.vcxproj b/Release/tests/functional/http/client/vs14/HttpClient140_test.vcxproj deleted file mode 100644 index 691f035901..0000000000 --- a/Release/tests/functional/http/client/vs14/HttpClient140_test.vcxproj +++ /dev/null @@ -1,240 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {dc215f97-c43c-47f5-9784-711908a24ae3} - HttpTests - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);..\..\utilities\include;%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - -Zm350 /bigobj%(AdditionalOptions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;httpapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - -Zm350 /bigobj%(AdditionalOptions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;httpapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - -Zm350 /bigobj %(AdditionalOptions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;httpapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - -Zm350 /bigobj%(AdditionalOptions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;httpapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - -Zm350 /bigobj%(AdditionalOptions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;httpapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - -Zm350 /bigobj%(AdditionalOptions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;httpapi.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies) - - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {6837625b-c0db-4fd0-aee2-19699031b76e} - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/http/client/vs14/HttpClient140_test.vcxproj.filters b/Release/tests/functional/http/client/vs14/HttpClient140_test.vcxproj.filters deleted file mode 100644 index 6a577a5662..0000000000 --- a/Release/tests/functional/http/client/vs14/HttpClient140_test.vcxproj.filters +++ /dev/null @@ -1,88 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - Source Files - - - - - Header Files - - - Header Files - - - - - {fadb7f38-3d0c-4a31-af39-6364be0d9793} - - - {ee68ca67-bbcf-4196-89c7-fbf59083ac16} - - - \ No newline at end of file diff --git a/Release/tests/functional/http/listener/vs14.android/HttpListener140_test.android.vcxproj b/Release/tests/functional/http/listener/vs14.android/HttpListener140_test.android.vcxproj deleted file mode 100644 index 2bb8421046..0000000000 --- a/Release/tests/functional/http/listener/vs14.android/HttpListener140_test.android.vcxproj +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - {b444ee47-1340-4a74-820d-cdd55f9f22f7} - - - - {2B00D1C0-1A93-4A32-8932-C3CC43ACFF45} - Android - Android - 2.0 - HttpListener140_test.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - HttpListener140_test.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/http/listener/vs14.android/HttpListener140_test.android.vcxproj.filters b/Release/tests/functional/http/listener/vs14.android/HttpListener140_test.android.vcxproj.filters deleted file mode 100644 index 48553613bc..0000000000 --- a/Release/tests/functional/http/listener/vs14.android/HttpListener140_test.android.vcxproj.filters +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - {fa079c21-f36e-4713-a05c-fced62c90650} - - - {c62749db-a977-4b3f-abe9-839f3f8a21b4} - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/tests/functional/http/listener/vs14/HttpListener140_test.vcxproj b/Release/tests/functional/http/listener/vs14/HttpListener140_test.vcxproj deleted file mode 100644 index 23a5617b20..0000000000 --- a/Release/tests/functional/http/listener/vs14/HttpListener140_test.vcxproj +++ /dev/null @@ -1,242 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {2853ec0b-1b8e-4d9d-8436-4ef6dded5378} - HttpTests - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - - - - - - - - - - - - - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);$(TestRoot)\functional\http\utilities\include;%(AdditionalIncludeDirectories) - -Zm140 /bigobj%(AdditionalOptions) - FastCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);$(TestRoot)\functional\http\utilities\include;%(AdditionalIncludeDirectories) - -Zm140 /bigobj%(AdditionalOptions) - FastCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);$(TestRoot)\functional\http\utilities\include;%(AdditionalIncludeDirectories) - -Zm140 /bigobj%(AdditionalOptions) - FastCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);$(TestRoot)\functional\http\utilities\include;%(AdditionalIncludeDirectories) - -Zm140 /bigobj%(AdditionalOptions) - FastCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);$(TestRoot)\functional\http\utilities\include;%(AdditionalIncludeDirectories) - -Zm140 /bigobj%(AdditionalOptions) - FastCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);$(TestRoot)\functional\http\utilities\include;%(AdditionalIncludeDirectories) - -Zm140 /bigobj%(AdditionalOptions) - FastCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {6837625b-c0db-4fd0-aee2-19699031b76e} - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/http/listener/vs14/HttpListener140_test.vcxproj.filters b/Release/tests/functional/http/listener/vs14/HttpListener140_test.vcxproj.filters deleted file mode 100644 index 6041b38df7..0000000000 --- a/Release/tests/functional/http/listener/vs14/HttpListener140_test.vcxproj.filters +++ /dev/null @@ -1,63 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - - - {3de7d3df-7d70-4ea1-a460-bc378ed266c2} - - - {4ac74123-f940-4347-9a8e-d9e35ba7c7ac} - - - \ No newline at end of file diff --git a/Release/tests/functional/http/utilities/vs14.android/HttpTestUtilities140.android.vcxproj b/Release/tests/functional/http/utilities/vs14.android/HttpTestUtilities140.android.vcxproj deleted file mode 100644 index 62a0cf8a5a..0000000000 --- a/Release/tests/functional/http/utilities/vs14.android/HttpTestUtilities140.android.vcxproj +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - - - {7c4e6e33-42e2-4472-9319-dde7564f3dae} - - - - {B444EE47-1340-4A74-820D-CDD55F9F22F7} - Android - Android - 2.0 - HttpTestUtilities140.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - HttpTestUtilities140.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/http/utilities/vs14.android/HttpTestUtilities140.android.vcxproj.filters b/Release/tests/functional/http/utilities/vs14.android/HttpTestUtilities140.android.vcxproj.filters deleted file mode 100644 index cd9c4f61a3..0000000000 --- a/Release/tests/functional/http/utilities/vs14.android/HttpTestUtilities140.android.vcxproj.filters +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - {0bfc92ca-392b-4e84-86de-9f87dea20ad1} - - - {6fdd8038-3b97-4ab2-8b8d-0e15fc4dbfdc} - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/tests/functional/http/utilities/vs14.uwp/HttpTestUtilities140.uwp.vcxproj b/Release/tests/functional/http/utilities/vs14.uwp/HttpTestUtilities140.uwp.vcxproj deleted file mode 100644 index c5282c8210..0000000000 --- a/Release/tests/functional/http/utilities/vs14.uwp/HttpTestUtilities140.uwp.vcxproj +++ /dev/null @@ -1,183 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {039BA657-296A-4E11-8E37-948A5919F0B8} - SAK - SAK - SAK - SAK - Win32Proj - en-US - 14.0 - Unicode - v140 - DynamicLibrary - Windows Store - 10.0.10240.0 - 10.0.10240.0 - - - - true - - - false - true - - - - - - Use - WIN32;_USRDLL;HTTPTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);..\include - $(WindowsSdkDir)\UnionMetadata;$(VSInstallDir)\vc\vcpackages;$(AdditionalUsingDirectories) - -Zm200 %(AdditionalOptions) - true - false - stdafx.h - - - Windows - true - true - CommonUtilities140.uwp.lib;%(AdditionalDependencies) - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - $(VCINSTALLDIR)\lib\store;$(OutDir);%(AdditionalLibraryDirectories); - ucrtd.lib;vcruntimed.lib;vccorlibd.lib;msvcrtd.lib;msvcprtd.lib;concrtd.lib;Winhttp.lib;Httpapi.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - $(VCINSTALLDIR)\lib\store\amd64;$(OutDir);%(AdditionalLibraryDirectories); - ucrtd.lib;vcruntimed.lib;vccorlibd.lib;msvcrtd.lib;msvcprtd.lib;concrtd.lib;Winhttp.lib;Httpapi.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - $(VCINSTALLDIR)\lib\store\arm;$(OutDir);%(AdditionalLibraryDirectories); - ucrtd.lib;vcruntimed.lib;vccorlibd.lib;msvcrtd.lib;msvcprtd.lib;concrtd.lib;Winhttp.lib;Httpapi.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - $(VCINSTALLDIR)\lib\store\arm;$(OutDir);%(AdditionalLibraryDirectories); - ucrt.lib;vcruntime.lib;vccorlib.lib;msvcrt.lib;msvcprt.lib;concrt.lib;Winhttp.lib;Httpapi.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - $(VCINSTALLDIR)\lib\store;$(OutDir);%(AdditionalLibraryDirectories); - ucrt.lib;vcruntime.lib;vccorlib.lib;msvcrt.lib;msvcprt.lib;concrt.lib;Winhttp.lib;Httpapi.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - $(VCINSTALLDIR)\lib\store\amd64;$(OutDir);%(AdditionalLibraryDirectories); - ucrt.lib;vcruntime.lib;vccorlib.lib;msvcrt.lib;msvcprt.lib;concrt.lib;Winhttp.lib;Httpapi.lib;RuntimeObject.lib;%(AdditionalDependencies) - - - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/http/utilities/vs14.uwp/HttpTestUtilities140.uwp.vcxproj.filters b/Release/tests/functional/http/utilities/vs14.uwp/HttpTestUtilities140.uwp.vcxproj.filters deleted file mode 100644 index c965e9cb22..0000000000 --- a/Release/tests/functional/http/utilities/vs14.uwp/HttpTestUtilities140.uwp.vcxproj.filters +++ /dev/null @@ -1,51 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - {96f6b99e-76ae-4ace-801c-39bb8d308125} - - - {d4ba757b-dfdc-4d61-a9bd-19e957c5a09c} - - - \ No newline at end of file diff --git a/Release/tests/functional/http/utilities/vs14/HttpTestUtilities140.vcxproj b/Release/tests/functional/http/utilities/vs14/HttpTestUtilities140.vcxproj deleted file mode 100644 index d06012ad6d..0000000000 --- a/Release/tests/functional/http/utilities/vs14/HttpTestUtilities140.vcxproj +++ /dev/null @@ -1,218 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {6837625b-c0db-4fd0-aee2-19699031b76e} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath12) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);..\include;%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - -Zm200 %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;Httpapi.lib;%(AdditionalDependencies) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - -Zm140 %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;Httpapi.lib;%(AdditionalDependencies) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HTTPTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - -Zm200 %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;Httpapi.lib;%(AdditionalDependencies) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - -Zm200 %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;Httpapi.lib;%(AdditionalDependencies) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - -Zm140 %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;Httpapi.lib;%(AdditionalDependencies) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - -Zm200 %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - Winhttp.lib;Httpapi.lib;%(AdditionalDependencies) - - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/http/utilities/vs14/HttpTestUtilities140.vcxproj.filters b/Release/tests/functional/http/utilities/vs14/HttpTestUtilities140.vcxproj.filters deleted file mode 100644 index 1e583ce8ed..0000000000 --- a/Release/tests/functional/http/utilities/vs14/HttpTestUtilities140.vcxproj.filters +++ /dev/null @@ -1,51 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - {d0052d1d-10e0-42da-9df6-72be473a8ebe} - - - {a4317631-da2e-4508-982f-e689f8d4a039} - - - \ No newline at end of file diff --git a/Release/tests/functional/json/vs14.android/JSON140_test.android.vcxproj b/Release/tests/functional/json/vs14.android/JSON140_test.android.vcxproj deleted file mode 100644 index 16dd72d5bc..0000000000 --- a/Release/tests/functional/json/vs14.android/JSON140_test.android.vcxproj +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - {7c4e6e33-42e2-4472-9319-dde7564f3dae} - - - - {169555EF-8A80-405E-A815-CFE70028CA45} - Android - Android - 2.0 - JSON140_test.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - JSON140_test.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/json/vs14.android/JSON140_test.android.vcxproj.filters b/Release/tests/functional/json/vs14.android/JSON140_test.android.vcxproj.filters deleted file mode 100644 index 9d4e307758..0000000000 --- a/Release/tests/functional/json/vs14.android/JSON140_test.android.vcxproj.filters +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - {ea88708b-1006-422c-b275-3f1394e595c8} - - - {9142d997-6ead-4b83-a03f-9e03e4da038d} - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/tests/functional/json/vs14.uwp/JSON140_test.uwp.vcxproj b/Release/tests/functional/json/vs14.uwp/JSON140_test.uwp.vcxproj deleted file mode 100644 index b2b05a4d50..0000000000 --- a/Release/tests/functional/json/vs14.uwp/JSON140_test.uwp.vcxproj +++ /dev/null @@ -1,128 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {D398DF71-8642-4BC4-940F-9AE2B0AE1CE4} - Windows Store - en-US - 14.0 - true - Unicode - v140 - DynamicLibrary - 10.0.10240.0 - 10.0.10240.0 - - - - true - - - false - true - - - - - - - Use - WIN32;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir) - false - false - stdafx.h - -Zm250 %(AdditionalOptions) - - - Console - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/json/vs14.uwp/JSON140_test.uwp.vcxproj.filters b/Release/tests/functional/json/vs14.uwp/JSON140_test.uwp.vcxproj.filters deleted file mode 100644 index ae62883eba..0000000000 --- a/Release/tests/functional/json/vs14.uwp/JSON140_test.uwp.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - {db714d7a-c017-4d4f-99ab-f1f195ba360c} - - - {3ea4dfd5-d8b3-4370-adda-ea04dcaf401b} - - - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/Release/tests/functional/json/vs14.xp/JSON140_test.xp.vcxproj b/Release/tests/functional/json/vs14.xp/JSON140_test.xp.vcxproj deleted file mode 100644 index 6b4e8ee881..0000000000 --- a/Release/tests/functional/json/vs14.xp/JSON140_test.xp.vcxproj +++ /dev/null @@ -1,151 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {ABA69F91-45D4-41D8-991A-10A6319E42C3} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath14) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir) - - - Console - true - $(OutDir)%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir) - - - Console - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir) - - - Console - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir) - - - Console - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - Create - Create - Create - Create - - - - - - - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {75885703-7f3d-4086-8e60-c60b9b126f7e} - - - {5AD81270-B089-4E1B-8741-6486F39DE273} - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/json/vs14/JSON140_test.vcxproj b/Release/tests/functional/json/vs14/JSON140_test.vcxproj deleted file mode 100644 index 58928de7d0..0000000000 --- a/Release/tests/functional/json/vs14/JSON140_test.vcxproj +++ /dev/null @@ -1,211 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {6f026328-4d10-4ef1-bd6c-8fd3cbe0f530} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath12) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - FastCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - FastCall - - - Console - true - $(OutDir)%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - FastCall - - - Console - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - FastCall - - - Console - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - FastCall - - - Console - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;COMMONTESTS_EXPORTS;%(PreprocessorDefinitions) - FastCall - - - Console - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/json/vs14/JSON140_test.vcxproj.filters b/Release/tests/functional/json/vs14/JSON140_test.vcxproj.filters deleted file mode 100644 index 9908627f9a..0000000000 --- a/Release/tests/functional/json/vs14/JSON140_test.vcxproj.filters +++ /dev/null @@ -1,47 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/Release/tests/functional/misc/version/vs14/version140_test.vcxproj b/Release/tests/functional/misc/version/vs14/version140_test.vcxproj deleted file mode 100644 index f62231600c..0000000000 --- a/Release/tests/functional/misc/version/vs14/version140_test.vcxproj +++ /dev/null @@ -1,100 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {1263db26-9035-43c4-adab-a2c71ae92cce} - Win32Proj - version - SAK - SAK - SAK - SAK - version - - - - DynamicLibrary - Unicode - v140 - - - - - - - - - - - - - - NotUsing - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;HEADER_TEST_EXPORTS;%(PreprocessorDefinitions);_AFXDLL - $(CommonTestIncludeDir);$(CasablancaIncludeDir);%(AdditionalIncludeDirectories) - MultiThreadedDebugDLL - - - Windows - true - - - - - - NotUsing - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HEADER_TEST_EXPORTS;%(PreprocessorDefinitions);_AFXDLL - $(CommonTestIncludeDir);$(CasablancaIncludeDir);%(AdditionalIncludeDirectories) - MultiThreadedDLL - - - Windows - true - true - true - - - - - - _VER_MAJOR=$(CppRestSDKVersionMajor);_VER_MINOR=$(CppRestSDKVersionMinor);_VER_REVISION=$(CppRestSDKVersionRevision);%(PreprocessorDefinitions) - - - - - - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/pplx/pplx_test/vs14.android/pplx140_test.android.vcxproj b/Release/tests/functional/pplx/pplx_test/vs14.android/pplx140_test.android.vcxproj deleted file mode 100644 index 7fd3c7b631..0000000000 --- a/Release/tests/functional/pplx/pplx_test/vs14.android/pplx140_test.android.vcxproj +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - Create - Create - Create - Create - - - - - - - - {7c4e6e33-42e2-4472-9319-dde7564f3dae} - - - - {DF670B4E-692C-424E-BCFD-F63D34FE5CD3} - Android - Android - 2.0 - pplx140_test.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - pplx140_test.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/pplx/pplx_test/vs14.uwp/pplx140_test.uwp.vcxproj b/Release/tests/functional/pplx/pplx_test/vs14.uwp/pplx140_test.uwp.vcxproj deleted file mode 100644 index b42ef70c16..0000000000 --- a/Release/tests/functional/pplx/pplx_test/vs14.uwp/pplx140_test.uwp.vcxproj +++ /dev/null @@ -1,130 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {23A43AC2-1E04-4589-B0A9-0295962755DC} - Win32Proj - HttpTests - SAK - SAK - SAK - SAK - en-US - 14.0 - true - DynamicLibrary - v140 - 10.0.10240.0 - 10.0.10240.0 - Unicode - - - - true - - - false - true - - - - - - - Use - WIN32;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir) - /bigobj %(AdditionalOptions) - true - false - stdafx.h - - - Windows - true - CommonUtilities140.uwp.lib;%(AdditionalDependencies) - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/pplx/pplx_test/vs14.xp/pplx140_test.xp.vcxproj b/Release/tests/functional/pplx/pplx_test/vs14.xp/pplx140_test.xp.vcxproj deleted file mode 100644 index bedd4efee8..0000000000 --- a/Release/tests/functional/pplx/pplx_test/vs14.xp/pplx140_test.xp.vcxproj +++ /dev/null @@ -1,158 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {EB4A3750-CA93-4968-89D7-3ED467DB2C59} - Win32Proj - HttpTests - SAK - SAK - SAK - SAK - $(VCTargetsPath14) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Level4 - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Level4 - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Level4 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Level4 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - - Create - Create - Create - Create - - - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {5ad81270-b089-4e1b-8741-6486f39de273} - - - {75885703-7F3D-4086-8E60-C60B9B126F7E} - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/pplx/pplx_test/vs14/pplx140_test.vcxproj b/Release/tests/functional/pplx/pplx_test/vs14/pplx140_test.vcxproj deleted file mode 100644 index 95c586743b..0000000000 --- a/Release/tests/functional/pplx/pplx_test/vs14/pplx140_test.vcxproj +++ /dev/null @@ -1,212 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {06F8344D-4EBA-4B9F-A209-5FCEFA9D62EB} - Win32Proj - HttpTests - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Level3 - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Level3 - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Level3 - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Level3 - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/streams/vs14.android/streams140_test.android.vcxproj b/Release/tests/functional/streams/vs14.android/streams140_test.android.vcxproj deleted file mode 100644 index 81ff3ad878..0000000000 --- a/Release/tests/functional/streams/vs14.android/streams140_test.android.vcxproj +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - {7c4e6e33-42e2-4472-9319-dde7564f3dae} - - - - {B9DA540F-95F7-485E-ADF4-C94A17BFA1EB} - Android - Android - 2.0 - streams140_test.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - streams140_test.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/streams/vs14.android/streams140_test.android.vcxproj.filters b/Release/tests/functional/streams/vs14.android/streams140_test.android.vcxproj.filters deleted file mode 100644 index 2288fd4da5..0000000000 --- a/Release/tests/functional/streams/vs14.android/streams140_test.android.vcxproj.filters +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - {086f8ce7-3abe-46b1-a418-069737cb878b} - - - {5a4e8b16-a7c4-439b-afb3-c4a50dbfb681} - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - \ No newline at end of file diff --git a/Release/tests/functional/streams/vs14.uwp/streams140_test.uwp.vcxproj b/Release/tests/functional/streams/vs14.uwp/streams140_test.uwp.vcxproj deleted file mode 100644 index 11b8c9404d..0000000000 --- a/Release/tests/functional/streams/vs14.uwp/streams140_test.uwp.vcxproj +++ /dev/null @@ -1,137 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {B4C6E439-20F9-406C-9586-792FB5B073C2} - Win32Proj - SAK - SAK - SAK - SAK - en-US - 14.0 - true - v140 - DynamicLibrary - e13f21ed - 10.0.10240.0 - 10.0.10240.0 - - - - true - - - false - true - - - - - - - Use - WIN32;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - /bigobj %(AdditionalOptions) - true - false - stdafx.h - -Zm160 %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/streams/vs14.uwp/streams140_test.uwp.vcxproj.filters b/Release/tests/functional/streams/vs14.uwp/streams140_test.uwp.vcxproj.filters deleted file mode 100644 index 86b36e3575..0000000000 --- a/Release/tests/functional/streams/vs14.uwp/streams140_test.uwp.vcxproj.filters +++ /dev/null @@ -1,45 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - {274676f3-573c-4a10-adbb-0421159c8a2a} - - - {dd303bf1-0c87-4079-a035-c16d23cf129d} - - - - - Header Files - - - Header Files - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/streams/vs14.xp/streams140_test.xp.vcxproj b/Release/tests/functional/streams/vs14.xp/streams140_test.xp.vcxproj deleted file mode 100644 index cdd4ff6820..0000000000 --- a/Release/tests/functional/streams/vs14.xp/streams140_test.xp.vcxproj +++ /dev/null @@ -1,163 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F279F1ED-8AFF-478D-9A20-DDCAD8CBA336} - Win32Proj - HttpTests - SAK - SAK - SAK - SAK - $(VCTargetsPath14) - 2276c549 - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - - Create - Create - Create - Create - - - - - - - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {75885703-7f3d-4086-8e60-c60b9b126f7e} - - - {5ad81270-b089-4e1b-8741-6486f39de273} - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/streams/vs14/streams140_test.vcxproj b/Release/tests/functional/streams/vs14/streams140_test.vcxproj deleted file mode 100644 index 07520fe5ac..0000000000 --- a/Release/tests/functional/streams/vs14/streams140_test.vcxproj +++ /dev/null @@ -1,219 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {181ccb80-9ae8-4ed7-8b7d-4c0cbc80eedd} - Win32Proj - HttpTests - SAK - SAK - SAK - SAK - $(VCTargetsPath12) - 84fd5b75 - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - ARM;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - ARM;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;HTTPTESTS_EXPORTS;%(PreprocessorDefinitions) - /bigobj %(AdditionalOptions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/streams/vs14/streams140_test.vcxproj.filters b/Release/tests/functional/streams/vs14/streams140_test.vcxproj.filters deleted file mode 100644 index fec2efca0f..0000000000 --- a/Release/tests/functional/streams/vs14/streams140_test.vcxproj.filters +++ /dev/null @@ -1,43 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - - {1de3a9ce-57af-48bd-8125-3af4f406be26} - - - {3c2936bc-8d1e-4a33-96c9-5cfb3d83b30d} - - - - - Header Files - - - Header Files - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/uri/vs14.android/Uri140_test.android.vcxproj b/Release/tests/functional/uri/vs14.android/Uri140_test.android.vcxproj deleted file mode 100644 index bf66be6210..0000000000 --- a/Release/tests/functional/uri/vs14.android/Uri140_test.android.vcxproj +++ /dev/null @@ -1,156 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - {7c4e6e33-42e2-4472-9319-dde7564f3dae} - - - - {63569C1A-A168-442A-B160-76D0256803AF} - Android - Android - 2.0 - Uri140_test.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - Uri140_test.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/uri/vs14.android/Uri140_test.android.vcxproj.filters b/Release/tests/functional/uri/vs14.android/Uri140_test.android.vcxproj.filters deleted file mode 100644 index ca869127a3..0000000000 --- a/Release/tests/functional/uri/vs14.android/Uri140_test.android.vcxproj.filters +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - {2a91a18a-e13e-4f80-8066-55d069396647} - - - {9ee2024f-1bd0-452f-bdf2-14f9dd9998d1} - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/tests/functional/uri/vs14.uwp/URI140_test.uwp.vcxproj.filters b/Release/tests/functional/uri/vs14.uwp/URI140_test.uwp.vcxproj.filters deleted file mode 100644 index fd4f136ea8..0000000000 --- a/Release/tests/functional/uri/vs14.uwp/URI140_test.uwp.vcxproj.filters +++ /dev/null @@ -1,57 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - {e30fa8ae-3cb4-4a63-870b-a7e85088a9ad} - - - {e7f8af98-2e23-4c57-93e1-2936a3f0ac84} - - - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/Release/tests/functional/uri/vs14.uwp/Uri140_test.uwp.vcxproj b/Release/tests/functional/uri/vs14.uwp/Uri140_test.uwp.vcxproj deleted file mode 100644 index 3225698298..0000000000 --- a/Release/tests/functional/uri/vs14.uwp/Uri140_test.uwp.vcxproj +++ /dev/null @@ -1,136 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {9169C20C-B98A-46C6-A138-A107C458E8DD} - SAK - SAK - SAK - SAK - Win32Proj - en-US - 14.0 - true - DynamicLibrary - Unicode - v140 - 10.0.10240.0 - 10.0.10240.0 - - - - true - - - false - true - - - - - - - Use - WIN32;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir) - true - false - stdafx.h - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - - - - - - - - - - - diff --git a/Release/tests/functional/uri/vs14.xp/Uri140_test.xp.vcxproj b/Release/tests/functional/uri/vs14.xp/Uri140_test.xp.vcxproj deleted file mode 100644 index 988d387b15..0000000000 --- a/Release/tests/functional/uri/vs14.xp/Uri140_test.xp.vcxproj +++ /dev/null @@ -1,155 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {66B6D1E2-A91C-4DA3-8568-B7457FA7ED6D} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath14) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {75885703-7f3d-4086-8e60-c60b9b126f7e} - - - {5ad81270-b089-4e1b-8741-6486f39de273} - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/uri/vs14/Uri140_test.vcxproj b/Release/tests/functional/uri/vs14/Uri140_test.vcxproj deleted file mode 100644 index c7758a2a41..0000000000 --- a/Release/tests/functional/uri/vs14/Uri140_test.vcxproj +++ /dev/null @@ -1,212 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {3d9c3f25-1736-4d39-a31f-6b2de34e20cf} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath12) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/uri/vs14/Uri140_test.vcxproj.filters b/Release/tests/functional/uri/vs14/Uri140_test.vcxproj.filters deleted file mode 100644 index a05e44e9f0..0000000000 --- a/Release/tests/functional/uri/vs14/Uri140_test.vcxproj.filters +++ /dev/null @@ -1,53 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/Release/tests/functional/utils/vs14.android/Utils140_test.android.vcxproj b/Release/tests/functional/utils/vs14.android/Utils140_test.android.vcxproj deleted file mode 100644 index 3bffb9f385..0000000000 --- a/Release/tests/functional/utils/vs14.android/Utils140_test.android.vcxproj +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - {7c4e6e33-42e2-4472-9319-dde7564f3dae} - - - - {423FCE6D-7400-4C09-9038-4438FBB089D4} - Android - Android - 2.0 - Utils140_test.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - Utils140_test.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/utils/vs14.android/Utils140_test.android.vcxproj.filters b/Release/tests/functional/utils/vs14.android/Utils140_test.android.vcxproj.filters deleted file mode 100644 index 72c7afdac7..0000000000 --- a/Release/tests/functional/utils/vs14.android/Utils140_test.android.vcxproj.filters +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - {22ca4c16-d08f-4f8d-9a72-1177da20c0e9} - - - {c59c025e-d09f-4eff-8553-3ec14490cdc0} - - - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - \ No newline at end of file diff --git a/Release/tests/functional/utils/vs14.uwp/Utils140_test.uwp.vcxproj b/Release/tests/functional/utils/vs14.uwp/Utils140_test.uwp.vcxproj deleted file mode 100644 index e02821bda3..0000000000 --- a/Release/tests/functional/utils/vs14.uwp/Utils140_test.uwp.vcxproj +++ /dev/null @@ -1,131 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {4fddc511-5cfd-48a0-b373-43b13a43fb45} - SAK - SAK - SAK - SAK - Win32Proj - en-US - 14.0 - true - Unicode - v140 - DynamicLibrary - 10.0.10240.0 - 10.0.10240.0 - - - - true - - - false - true - - - - - - - Use - WIN32;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir) - true - false - stdafx.h - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - - - - - - - - - - - diff --git a/Release/tests/functional/utils/vs14.uwp/Utils140_test.uwp.vcxproj.filters b/Release/tests/functional/utils/vs14.uwp/Utils140_test.uwp.vcxproj.filters deleted file mode 100644 index a2199f62fb..0000000000 --- a/Release/tests/functional/utils/vs14.uwp/Utils140_test.uwp.vcxproj.filters +++ /dev/null @@ -1,36 +0,0 @@ - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - {e30fa8ae-3cb4-4a63-870b-a7e85088a9ad} - - - {e7f8af98-2e23-4c57-93e1-2936a3f0ac84} - - - Source Files - - - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/Release/tests/functional/utils/vs14.xp/Utils140_test.xp.vcxproj b/Release/tests/functional/utils/vs14.xp/Utils140_test.xp.vcxproj deleted file mode 100644 index 45ee435b2b..0000000000 --- a/Release/tests/functional/utils/vs14.xp/Utils140_test.xp.vcxproj +++ /dev/null @@ -1,151 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {E9E26CDB-4CE3-4B0E-AAF8-D32F57E48856} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath14) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {75885703-7f3d-4086-8e60-c60b9b126f7e} - - - {5ad81270-b089-4e1b-8741-6486f39de273} - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/utils/vs14/Utils140_test.vcxproj b/Release/tests/functional/utils/vs14/Utils140_test.vcxproj deleted file mode 100644 index 37cd0326f0..0000000000 --- a/Release/tests/functional/utils/vs14/Utils140_test.vcxproj +++ /dev/null @@ -1,208 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {50386698-0180-4ebc-8827-f2c36561f6b4} - SAK - SAK - SAK - SAK - Win32Proj - $(VCTargetsPath12) - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - $(CasablancaIncludeDir);$(CommonTestIncludeDir);%(AdditionalIncludeDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Use - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - StdCall - - - Windows - true - true - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {3EB86C0D-432C-4FFC-BAD4-8DF4EFC7D0FF} - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/utils/vs14/Utils140_test.vcxproj.filters b/Release/tests/functional/utils/vs14/Utils140_test.vcxproj.filters deleted file mode 100644 index dfa7b86991..0000000000 --- a/Release/tests/functional/utils/vs14/Utils140_test.vcxproj.filters +++ /dev/null @@ -1,38 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Header Files - - - Header Files - - - \ No newline at end of file diff --git a/Release/tests/functional/websockets/client/vs14.android/websocketsclient140_test.android.vcxproj b/Release/tests/functional/websockets/client/vs14.android/websocketsclient140_test.android.vcxproj deleted file mode 100644 index 230810860b..0000000000 --- a/Release/tests/functional/websockets/client/vs14.android/websocketsclient140_test.android.vcxproj +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - - - - {0149e1c2-fbf3-48b6-9996-d6753f689dfb} - - - - {3E8466B1-7CBC-489D-8E6B-5E45BAB4D627} - Android - Android - 2.0 - websocketsclient140_test.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(TestRoot)\functional\websockets\utilities;%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);$(TestRoot)\functional\websockets\utilities;%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(TestRoot)\functional\websockets\utilities;%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(TestRoot)\functional\websockets\utilities;%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - websocketsclient140_test.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/websockets/client/vs14.uwp/websocketsclient140_test.uwp.vcxproj b/Release/tests/functional/websockets/client/vs14.uwp/websocketsclient140_test.uwp.vcxproj deleted file mode 100644 index 17ba6a3ffb..0000000000 --- a/Release/tests/functional/websockets/client/vs14.uwp/websocketsclient140_test.uwp.vcxproj +++ /dev/null @@ -1,127 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {CE900295-F777-446C-8954-894891F0A9D4} - SAK - SAK - SAK - SAK - en-US - 14.0 - true - DynamicLibrary - Unicode - v140 - 10.0.10240.0 - 10.0.10240.0 - - - - true - - - false - true - - - - - - - Use - WIN32;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);..\..\utilities; - true - false - stdafx.h - - - Windows - true - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - -Zm200 %(AdditionalOptions) - - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - -Zm200 %(AdditionalOptions) - - - true - true - - - - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - {D452C5CF-681B-4B64-B3A9-A916E842988F} - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/websockets/client/vs14.xp/websocketsclient140_test.xp.vcxproj b/Release/tests/functional/websockets/client/vs14.xp/websocketsclient140_test.xp.vcxproj deleted file mode 100644 index 9791f3d90c..0000000000 --- a/Release/tests/functional/websockets/client/vs14.xp/websocketsclient140_test.xp.vcxproj +++ /dev/null @@ -1,123 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - WebsocketTests - SAK - SAK - SAK - SAK - websocketsclient140_test.xp - {BBE711C0-568C-48E5-A9EB-2F3741D0687B} - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - Use - $(CasablancaIncludeDir);$(CommonTestIncludeDir);..\..\utilities;%(AdditionalIncludeDirectories) - - - Windows - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Disabled - CPPREST_TARGET_XP;WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - - - MaxSpeed - true - true - CPPREST_TARGET_XP;WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - true - true - - - - - {75885703-7f3d-4086-8e60-c60b9b126f7e} - - - {3eb86c0d-432c-4ffc-bad4-8df4efc7d0ff} - - - {5AD81270-B089-4E1B-8741-6486F39DE273} - - - {3803246A-F31E-44EC-BCA9-87DF68C5EB8D} - - - - - - - - - - - - - - - - Create - Create - Create - Create - - - - - - diff --git a/Release/tests/functional/websockets/client/vs14/websocketsclient140_test.vcxproj b/Release/tests/functional/websockets/client/vs14/websocketsclient140_test.vcxproj deleted file mode 100644 index 9d23e7da8a..0000000000 --- a/Release/tests/functional/websockets/client/vs14/websocketsclient140_test.vcxproj +++ /dev/null @@ -1,125 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {9A23F9D2-4876-423B-9393-A604764601B0} - WebsocketTests - SAK - SAK - SAK - SAK - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - Use - $(CasablancaIncludeDir);$(CommonTestIncludeDir);..\..\utilities;%(AdditionalIncludeDirectories) - -Zm200 %(AdditionalOptions) - - - Windows - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - - - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - - - true - true - - - - - {1014c621-bc2d-4813-b8c1-6d83ad6f9249} - - - {3eb86c0d-432c-4ffc-bad4-8df4efc7d0ff} - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {14f7b7a0-a057-4e15-8ec4-12baf00b0f64} - - - - - - - - - - - - - - - - Create - Create - Create - Create - Create - Create - - - - - - diff --git a/Release/tests/functional/websockets/utilities/vs14.android/packages.config b/Release/tests/functional/websockets/utilities/vs14.android/packages.config deleted file mode 100644 index 4bd0fd80ad..0000000000 --- a/Release/tests/functional/websockets/utilities/vs14.android/packages.config +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/Release/tests/functional/websockets/utilities/vs14.android/websockets_test_utilities140.android.vcxproj b/Release/tests/functional/websockets/utilities/vs14.android/websockets_test_utilities140.android.vcxproj deleted file mode 100644 index 3962040a52..0000000000 --- a/Release/tests/functional/websockets/utilities/vs14.android/websockets_test_utilities140.android.vcxproj +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - Debug - ARM - - - Debug - x86 - - - Release - ARM - - - Release - x86 - - - - - Create - Create - Create - Create - - - - - - - - - - - - - {7c4e6e33-42e2-4472-9319-dde7564f3dae} - - - - {0149E1C2-FBF3-48B6-9996-D6753F689DFB} - Android - Android - 2.0 - websockets_test_utilities140.android - - - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - true - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - StaticLibrary - false - Clang_3_8 - gnustl_static - - - - - - 378b82c3 - - - - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - Enabled - c++11 - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);$(StlIncludeDirectories);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-arm\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - - EnableAllWarnings - $(NDKRoot)\platforms\$(AndroidAPILevel)\arch-x86\usr\include;$(StlIncludeDirectories);$(CasablancaIncludeDir);$(TestRoot)\functional\http\utilities\include;$(CommonTestIncludeDir);$(CasablancaSrcDir)\pch;$(WebsocketppIncludeDir);%(AdditionalIncludeDirectories) - c++11 - Enabled - true - true - -funwind-tables -Wno-unused-local-typedef %(AdditionalOptions) - - - - d - - - websockets_test_utilities140.android - - - - - - - - - This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - - - - diff --git a/Release/tests/functional/websockets/utilities/vs14.uwp/packages.config b/Release/tests/functional/websockets/utilities/vs14.uwp/packages.config deleted file mode 100644 index 7438d474dd..0000000000 --- a/Release/tests/functional/websockets/utilities/vs14.uwp/packages.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/websockets/utilities/vs14.uwp/websockets_test_utilities140.uwp.vcxproj b/Release/tests/functional/websockets/utilities/vs14.uwp/websockets_test_utilities140.uwp.vcxproj deleted file mode 100644 index 71c92e1697..0000000000 --- a/Release/tests/functional/websockets/utilities/vs14.uwp/websockets_test_utilities140.uwp.vcxproj +++ /dev/null @@ -1,147 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {D452C5CF-681B-4B64-B3A9-A916E842988F} - SAK - SAK - SAK - SAK - Win32Proj - en-US - 14.0 - Unicode - v140 - DynamicLibrary - Windows Store - 10.0.10240.0 - 10.0.10240.0 - - - - true - - - false - true - - - - - - Use - WIN32;_USRDLL;WEBSOCKETTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - $(CasablancaIncludeDir);$(CommonTestIncludeDir);$(WebsocketppIncludeDir);..\include - $(WindowsSdkDir)\UnionMetadata;$(VSInstallDir)\vc\vcpackages;$(AdditionalUsingDirectories) - -Zm200 %(AdditionalOptions) - true - false - stdafx.h - - - Windows - true - true - CommonUtilities140.uwp.lib;Ws2_32.lib;Mswsock.lib;%(AdditionalDependencies) - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - $(VCINSTALLDIR)\lib\store;$(OutDir);%(AdditionalLibraryDirectories); - ucrtd.lib;vcruntimed.lib;vccorlibd.lib;msvcrtd.lib;msvcprtd.lib;concrtd.lib;RuntimeObject.lib;libboost_system-vc140-mt-gd-1_58.lib;%(AdditionalDependencies) - - - - - Disabled - _DEBUG;%(PreprocessorDefinitions) - - - $(VCINSTALLDIR)\lib\store\amd64;$(OutDir);%(AdditionalLibraryDirectories); - ucrtd.lib;vcruntimed.lib;vccorlibd.lib;msvcrtd.lib;msvcprtd.lib;concrtd.lib;RuntimeObject.lib;libboost_system-vc140-mt-gd-1_58.lib;%(AdditionalDependencies) - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - $(VCINSTALLDIR)\lib\store;$(OutDir);%(AdditionalLibraryDirectories); - ucrt.lib;vcruntime.lib;vccorlib.lib;msvcrt.lib;msvcprt.lib;concrt.lib;RuntimeObject.lib;libboost_system-vc140-mt-1_58.lib;%(AdditionalDependencies) - - - - - MaxSpeed - true - true - NDEBUG;%(PreprocessorDefinitions) - - - true - true - $(VCINSTALLDIR)\lib\store\amd64;$(OutDir);%(AdditionalLibraryDirectories); - ucrt.lib;vcruntime.lib;vccorlib.lib;msvcrt.lib;msvcprt.lib;concrt.lib;RuntimeObject.lib;libboost_system-vc140-mt-1_58.lib;%(AdditionalDependencies) - - - - - {DA089EAD-00A2-43CF-9954-DF01E8ED5E94} - - - {04214181-57D7-45F5-8499-1A5530CE6CBF} - - - {36d79e79-7e9e-4b3a-88a3-9f9b295c80b9} - - - - - - Create - Create - Create - Create - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/websockets/utilities/vs14.xp/websockets_test_utilities140.xp.vcxproj b/Release/tests/functional/websockets/utilities/vs14.xp/websockets_test_utilities140.xp.vcxproj deleted file mode 100644 index c1410e701a..0000000000 --- a/Release/tests/functional/websockets/utilities/vs14.xp/websockets_test_utilities140.xp.vcxproj +++ /dev/null @@ -1,132 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - SAK - SAK - SAK - SAK - Win32Proj - en-US - 11.0 - tests::common::websockets_test_utilities - websockets_test_utilities140.xp - {3803246A-F31E-44EC-BCA9-87DF68C5EB8D} - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - Use - $(CasablancaIncludeDir);$(CommonTestIncludeDir);$(WebsocketppIncludeDir);$(TestRoot)\Common\UnitTestpp\src\;%(AdditionalIncludeDirectories) - - - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - 4503;%(DisableSpecificWarnings) - - - Windows - $(OutDir);%(AdditionalLibraryDirectories) - - - - - Disabled - WIN32;_DEBUG;_WINDOWS;_USRDLL;WEBSOCKETTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - - - - - MaxSpeed - true - true - WIN32;NDEBUG;_WINDOWS;_USRDLL;WEBSOCKETTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - - - true - true - - - - - - Create - Create - Create - Create - - - - - - - - - {3eb86c0d-432c-4ffc-bad4-8df4efc7d0ff} - - - {75885703-7f3d-4086-8e60-c60b9b126f7e} - - - {5AD81270-B089-4E1B-8741-6486F39DE273} - - - - - - - - - - - - - diff --git a/Release/tests/functional/websockets/utilities/vs14/packages.config b/Release/tests/functional/websockets/utilities/vs14/packages.config deleted file mode 100644 index 7438d474dd..0000000000 --- a/Release/tests/functional/websockets/utilities/vs14/packages.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/Release/tests/functional/websockets/utilities/vs14/websockets_test_utilities140.vcxproj b/Release/tests/functional/websockets/utilities/vs14/websockets_test_utilities140.vcxproj deleted file mode 100644 index 23eb5b26c3..0000000000 --- a/Release/tests/functional/websockets/utilities/vs14/websockets_test_utilities140.vcxproj +++ /dev/null @@ -1,151 +0,0 @@ - - - - - Debug - ARM - - - Debug - Win32 - - - Debug - x64 - - - Release - ARM - - - Release - Win32 - - - Release - x64 - - - - {14F7B7A0-A057-4E15-8EC4-12BAF00B0F64} - SAK - SAK - SAK - SAK - Win32Proj - en-US - 11.0 - tests::common::websockets_test_utilities - websockets_test_utilities140 - - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - DynamicLibrary - false - true - Unicode - v140 - - - - - - - Use - $(CasablancaIncludeDir);$(CommonTestIncludeDir);$(WebsocketppIncludeDir);$(TestRoot)\Common\UnitTestpp\src\;%(AdditionalIncludeDirectories) - 4503;%(DisableSpecificWarnings) - -Zm200 /bigobj %(AdditionalOptions) - - - Windows - $(OutDir);%(AdditionalLibraryDirectories) - - - - - - Disabled - _DEBUG;_WINDOWS;_USRDLL;WEBSOCKETTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - - - - - MaxSpeed - true - true - NDEBUG;_WINDOWS;_USRDLL;WEBSOCKETTESTUTILITY_EXPORTS;%(PreprocessorDefinitions) - - - true - true - - - - - - Create - Create - Create - Create - Create - Create - - - - - - - - - {0c9d50d9-94fb-4732-a4ad-58e068315bb2} - - - {3eb86c0d-432c-4ffc-bad4-8df4efc7d0ff} - - - {90D85FF4-F0AE-4816-923F-0EF2758F30AB} - - - - - - - - - - - - - diff --git a/build.root b/build.root deleted file mode 100644 index d423a1a70c..0000000000 --- a/build.root +++ /dev/null @@ -1 +0,0 @@ -Marker file indicating root of build system. From 1123e13783345baf2b7a66d4503202da9f63e60f Mon Sep 17 00:00:00 2001 From: Billy Robert O'Neal III Date: Fri, 12 Oct 2018 18:25:27 -0700 Subject: [PATCH 10/10] Other fixes to make PCH work. --- .../samples/BlackJack/BlackJack_Server/CMakeLists.txt | 9 ++++----- Release/src/CMakeLists.txt | 2 +- Release/tests/functional/http/client/CMakeLists.txt | 8 ++++---- .../tests/functional/http/client/compression_tests.cpp | 3 ++- Release/tests/functional/http/listener/CMakeLists.txt | 8 ++++---- Release/tests/functional/json/CMakeLists.txt | 8 ++++---- Release/tests/functional/pplx/pplx_test/CMakeLists.txt | 8 ++++---- Release/tests/functional/streams/CMakeLists.txt | 8 ++++---- Release/tests/functional/uri/CMakeLists.txt | 8 ++++---- Release/tests/functional/utils/CMakeLists.txt | 8 ++++---- 10 files changed, 35 insertions(+), 35 deletions(-) diff --git a/Release/samples/BlackJack/BlackJack_Server/CMakeLists.txt b/Release/samples/BlackJack/BlackJack_Server/CMakeLists.txt index 1accf923c5..8073412fc1 100644 --- a/Release/samples/BlackJack/BlackJack_Server/CMakeLists.txt +++ b/Release/samples/BlackJack/BlackJack_Server/CMakeLists.txt @@ -5,7 +5,6 @@ endif() add_executable(blackjackserver BlackJack_Server.cpp Dealer.cpp - stdafx.cpp Table.cpp ) @@ -14,10 +13,10 @@ target_link_libraries(blackjackserver cpprest) if(MSVC) get_target_property(_srcs blackjackserver SOURCES) if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") - set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") - set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/blackjack-server-stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/blackjack-server-stdafx.pch") endif() - set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h /Fpblackjack-server-stdafx.pch") target_sources(blackjackserver PRIVATE stdafx.cpp) - target_compile_options(blackjackserver PRIVATE /Yustdafx.h /Zm200) + target_compile_options(blackjackserver PRIVATE /Yustdafx.h /Fpblackjack-server-stdafx.pch) endif() diff --git a/Release/src/CMakeLists.txt b/Release/src/CMakeLists.txt index bb3065e607..eceaad7437 100644 --- a/Release/src/CMakeLists.txt +++ b/Release/src/CMakeLists.txt @@ -180,7 +180,7 @@ if(MSVC) set_source_files_properties(pch/stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") target_sources(cpprest PRIVATE pch/stdafx.cpp) - target_compile_options(cpprest PRIVATE /Yustdafx.h /Zm200) + target_compile_options(cpprest PRIVATE /Yustdafx.h) endif() if(CMAKE_CXX_COMPILER_ID MATCHES "Clang" OR CMAKE_CXX_COMPILER_ID MATCHES "GNU") diff --git a/Release/tests/functional/http/client/CMakeLists.txt b/Release/tests/functional/http/client/CMakeLists.txt index 9430bb2734..d92b477481 100644 --- a/Release/tests/functional/http/client/CMakeLists.txt +++ b/Release/tests/functional/http/client/CMakeLists.txt @@ -35,13 +35,13 @@ if(MSVC) get_target_property(_srcs httpclient_test SOURCES) if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") - set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") - set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/client-tests-stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/client-tests-stdafx.pch") endif() - set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h /Fpclient-tests-stdafx.pch") target_sources(httpclient_test PRIVATE stdafx.cpp) - target_compile_options(httpclient_test PRIVATE /Yustdafx.h /Zm200) + target_compile_options(httpclient_test PRIVATE /Yustdafx.h /Fpclient-tests-stdafx.pch) endif() if(NOT WIN32) diff --git a/Release/tests/functional/http/client/compression_tests.cpp b/Release/tests/functional/http/client/compression_tests.cpp index fd9142931a..889ab71797 100644 --- a/Release/tests/functional/http/client/compression_tests.cpp +++ b/Release/tests/functional/http/client/compression_tests.cpp @@ -11,10 +11,11 @@ * =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- ****/ +#include "stdafx.h" + #include "cpprest/details/http_helpers.h" #include "cpprest/version.h" #include "cpprest/asyncrt_utils.h" -#include "stdafx.h" #include #ifndef __cplusplus_winrt diff --git a/Release/tests/functional/http/listener/CMakeLists.txt b/Release/tests/functional/http/listener/CMakeLists.txt index cacb600585..aa4245fed8 100644 --- a/Release/tests/functional/http/listener/CMakeLists.txt +++ b/Release/tests/functional/http/listener/CMakeLists.txt @@ -25,11 +25,11 @@ if(NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) if(MSVC) get_target_property(_srcs httplistener_test SOURCES) if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") - set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") - set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/listener-tests-stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/listener-tests-stdafx.pch") endif() - set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h /Fplistener-tests-stdafx.pch") target_sources(httplistener_test PRIVATE stdafx.cpp) - target_compile_options(httplistener_test PRIVATE /Yustdafx.h /Zm200) + target_compile_options(httplistener_test PRIVATE /Yustdafx.h /Fplistener-tests-stdafx.pch) endif() endif() diff --git a/Release/tests/functional/json/CMakeLists.txt b/Release/tests/functional/json/CMakeLists.txt index e026fe5126..1d44a99ce6 100644 --- a/Release/tests/functional/json/CMakeLists.txt +++ b/Release/tests/functional/json/CMakeLists.txt @@ -20,11 +20,11 @@ if(MSVC) get_target_property(_srcs json_test SOURCES) if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") - set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") - set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/json-tests-stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/json-tests-stdafx.pch") endif() - set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h /Fpjson-tests-stdafx.pch") target_sources(json_test PRIVATE stdafx.cpp) - target_compile_options(json_test PRIVATE /Yustdafx.h /Zm200) + target_compile_options(json_test PRIVATE /Yustdafx.h /Fpjson-tests-stdafx.pch) endif() diff --git a/Release/tests/functional/pplx/pplx_test/CMakeLists.txt b/Release/tests/functional/pplx/pplx_test/CMakeLists.txt index a896981fae..0e2672b73e 100644 --- a/Release/tests/functional/pplx/pplx_test/CMakeLists.txt +++ b/Release/tests/functional/pplx/pplx_test/CMakeLists.txt @@ -10,11 +10,11 @@ if(MSVC) get_target_property(_srcs pplx_test SOURCES) if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") - set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") - set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/pplx-tests-stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/pplx-tests-stdafx.pch") endif() - set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h /Fppplx-tests-stdafx.pch") target_sources(pplx_test PRIVATE stdafx.cpp) - target_compile_options(pplx_test PRIVATE /Yustdafx.h /Zm200) + target_compile_options(pplx_test PRIVATE /Yustdafx.h /Fppplx-tests-stdafx.pch) endif() diff --git a/Release/tests/functional/streams/CMakeLists.txt b/Release/tests/functional/streams/CMakeLists.txt index b007dee17f..29d09bbac8 100644 --- a/Release/tests/functional/streams/CMakeLists.txt +++ b/Release/tests/functional/streams/CMakeLists.txt @@ -28,11 +28,11 @@ if(MSVC) get_target_property(_srcs streams_test SOURCES) if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") - set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") - set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/streams-tests-stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/streams-tests-stdafx.pch") endif() - set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h /Fpstreams-tests-stdafx.pch") target_sources(streams_test PRIVATE stdafx.cpp) - target_compile_options(streams_test PRIVATE /Yustdafx.h /Zm200) + target_compile_options(streams_test PRIVATE /Yustdafx.h /Fpstreams-tests-stdafx.pch) endif() diff --git a/Release/tests/functional/uri/CMakeLists.txt b/Release/tests/functional/uri/CMakeLists.txt index 0f0316b93b..e3f7de1da2 100644 --- a/Release/tests/functional/uri/CMakeLists.txt +++ b/Release/tests/functional/uri/CMakeLists.txt @@ -17,11 +17,11 @@ if(MSVC) get_target_property(_srcs uri_test SOURCES) if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") - set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") - set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/uri-tests-stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/uri-tests-stdafx.pch") endif() - set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h /Fpuri-tests-stdafx.pch") target_sources(uri_test PRIVATE stdafx.cpp) - target_compile_options(uri_test PRIVATE /Yustdafx.h /Zm200) + target_compile_options(uri_test PRIVATE /Yustdafx.h /Fpuri-tests-stdafx.pch) endif() diff --git a/Release/tests/functional/utils/CMakeLists.txt b/Release/tests/functional/utils/CMakeLists.txt index ba0041b0a5..201af77039 100644 --- a/Release/tests/functional/utils/CMakeLists.txt +++ b/Release/tests/functional/utils/CMakeLists.txt @@ -17,11 +17,11 @@ if(MSVC) get_target_property(_srcs utils_test SOURCES) if(NOT CMAKE_GENERATOR MATCHES "Visual Studio .*") - set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") - set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/stdafx.pch") + set_property(SOURCE stdafx.cpp APPEND PROPERTY OBJECT_OUTPUTS "${CMAKE_CURRENT_BINARY_DIR}/utils-tests-stdafx.pch") + set_property(SOURCE ${_srcs} APPEND PROPERTY OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/utils-tests-stdafx.pch") endif() - set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h") + set_source_files_properties(stdafx.cpp PROPERTIES COMPILE_FLAGS "/Ycstdafx.h /Fputils-tests-stdafx.pch") target_sources(utils_test PRIVATE stdafx.cpp) - target_compile_options(utils_test PRIVATE /Yustdafx.h /Zm200) + target_compile_options(utils_test PRIVATE /Yustdafx.h /Fputils-tests-stdafx.pch) endif()